$stdin compatibility with std::istream using swig, C++, and Ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:00:15Z http://stackoverflow.com/feeds/question/935290 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/935290/stdin-compatibility-with-stdistream-using-swig-c-and-ruby 1 $stdin compatibility with std::istream using swig, C++, and Ruby Kenny Peng 2009-06-01T15:24:23Z 2009-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 &amp;); } </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#935343 0 Answer by Baget for $stdin compatibility with std::istream using swig, C++, and Ruby Baget 2009-06-01T15:36:19Z 2009-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#935845 0 Answer by Nathan Kitchen for $stdin compatibility with std::istream using swig, C++, and Ruby Nathan Kitchen 2009-06-01T17:34:53Z 2009-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>