English 中文(简体)
正确地过载stringbuf来替换MATLAB mex文件中的cout
原标题:
  • 时间:2008-10-28 15:17:18
  •  标签:

MathWorks目前不允许您在MATLAB桌面打开时从mex文件中使用cout,因为他们已重定向stdout。他们目前的解决方法是提供一个函数mexPrintf,他们要求您使用。经过一些谷歌搜索,我认为可以扩展std::stringbuf类来做我需要的事情。下面是我目前的代码。这是否足够健壮,或者我需要重载其他方法或更好的方法来完成这个任务?(寻找在通用UNIX环境中的可移植性,并且如果此代码未链接到mex执行文件,则能够像平常一样使用std::cout

class mstream : public stringbuf {
public:
  virtual streamsize xsputn(const char *s, std::streamsize n) 
  {
mexPrintf("*s",s,n);
return basic_streambuf<char, std::char_traits<char>>::xsputn(s,n);
  }
}; 

mstream mout;
outbuf = cout.rdbuf(mout.rdbuf());    
最佳回答

你不想过载 std::stringbuf,你想过载 std::streambuf 或 std::basic_streambuf(如果你想支持多个字符类型),还需要覆盖溢出方法。

但我也认为你需要重新思考你解决问题的方法。

cout只是一个ostream,因此如果所有的类/函数都使用ostream,那么你可以传入任何你喜欢的东西。例如:coutofstream等。

如果这太难了,那我可以创建自己的版本 cout,也许叫 mycout,可以在编译期或运行期定义(取决于您想做什么)。

一个简单的解决方案可能是:

#include <streambuf>
#include <ostream>

class mystream : public std::streambuf
{
public:
    mystream() {}

protected:
    virtual int_type overflow(int_type c)
    {
        if(c != EOF)
        {
            char z = c;
            mexPrintf("%c",c);
            return EOF;
        }
        return c;
    }

    virtual std::streamsize xsputn(const char* s, std::streamsize num)
    {
        mexPrintf("*s",s,n);
        return num;
    }
};

class myostream : public std::ostream
{
protected:
    mystream buf;

public:
    myostream() : std::ostream(&buf) {}
};

myostream mycout;

而cout版本可以简单地写成:

typedef std::cout mycout;

运行时版本需要更多的工作,但很容易完成。

问题回答

谢恩,非常感谢您的帮助。这是我的最终工作实现。

class mstream : public std::streambuf {
public:
protected:
  virtual std::streamsize xsputn(const char *s, std::streamsize n); 
  virtual int overflow(int c = EOF);
}; 

I'm sorry, you didn't provide any text for me to translate into Chinese. Please provide the text you'd like me to translate.

std::streamsize 
mstream::xsputn(const char *s, std::streamsize n) 
{
  mexPrintf("%.*s",n,s);
  return n;
}

int 
mstream::overflow(int c) 
{
    if (c != EOF) {
      mexPrintf("%.1s",&c);
    }
    return 1;
}

I'm sorry, you didn't provide any text for me to translate into Chinese. Please provide the text you'd like me to translate.

// Replace the std stream with the  matlab  stream
// Put this in the beginning of the mex function
mstream mout;
std::streambuf *outbuf = std::cout.rdbuf(&mout); 

I'm sorry, you didn't provide any text for me to translate into Chinese. Please provide the text you'd like me to translate.

// Restore the std stream buffer 
std::cout.rdbuf(outbuf); 

我稍微修改了 OP 的最终实现,添加了一个构造函数和析构函数。创建这个类的对象会自动替换 std::cout 中的流缓冲区,当对象超出范围时,会恢复原始的流缓冲区。RAII!

class mxstreambuf : public std::streambuf {
   public:
      mxstreambuf() {
         stdoutbuf = std::cout.rdbuf( this );
      }
      ~mxstreambuf() {
         std::cout.rdbuf( stdoutbuf );
      }
   protected:
      virtual std::streamsize xsputn( const char* s, std::streamsize n ) override {
         mexPrintf( "%.*s", n, s );
         return n;
      }
      virtual int overflow( int c = EOF ) override {
         if( c != EOF ) {
            mexPrintf( "%.1s", & c );
         }
         return 1;
      }
   private:
      std::streambuf *stdoutbuf;
};

要在MEX文件中使用流缓冲区,请按照以下步骤:

mxstreambuf mout;
std::cout << "Hello World!
";

不用担心会忘记任何事情。

cout是一个特定的字符输出流。如果您想要一个写入文件的cout,请使用fstream ,特别是ofstream。它们具有与cout提供的相同接口。此外,如果您想要获取它们的缓冲区(使用rdbuf)也可以。





相关问题
热门标签