$stdin compatibility with std::istream using swig, C++, and Ruby - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:00:15Zhttp://stackoverflow.com/feeds/question/935290http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/935290/stdin-compatibility-with-stdistream-using-swig-c-and-ruby1$stdin compatibility with std::istream using swig, C++, and RubyKenny Peng2009-06-01T15:24:23Z2009-06-01T17:34:53Z
<p>I have a function in C++ that takes in an std::istream as the input:</p>
<pre><code>class Foo {
Foo(std::istream &);
}
</code></pre>
<p>Using SWIG, I've bound it to Ruby, but Ruby's $stdin variable is fundamentally different from anything like the stream classes in C++, so I'm not sure how to either 1) expose the C++ class to Ruby in a way that I can use $stdin, or 2) convert $stdin into something the C++ class can understand.</p>
<p>Anyone have experience with binding iostreams in C++ to Ruby?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/935290/stdin-compatibility-with-stdistream-using-swig-c-and-ruby/935343#9353430Answer by Baget for $stdin compatibility with std::istream using swig, C++, and RubyBaget2009-06-01T15:36:19Z2009-06-01T15:46:46Z<p>maybe you can use C style <strong>File Descriptors</strong> instead of istream and then "convert" it to C++ stream,</p>
<p>I think you can use the answers in this <a href="http://stackoverflow.com/questions/109449/getting-a-file-from-a-stdfstream">question</a></p>
http://stackoverflow.com/questions/935290/stdin-compatibility-with-stdistream-using-swig-c-and-ruby/935845#9358450Answer by Nathan Kitchen for $stdin compatibility with std::istream using swig, C++, and RubyNathan Kitchen2009-06-01T17:34:53Z2009-06-01T17:34:53Z<p>You can use an instance of std::istream that implements its operations with Ruby methods on $stdin called through the C interface (e.g., using rb_funcall). You can't do it by deriving a class from std::istream itself, because its methods are not virtual; instead you'll need to derive from std::stream_buf and instantiate an istream that uses your stream buffer.</p>