I want to wrap a vector<char> with std::istream (so reading the vector would be done through the istream interface)
What's the way to do it?
|
I want to wrap a What's the way to do it? |
||||
| show 1 more comment |
|
You'd define a If the data does not change after construction, it is sufficient to set up the data pointers using
If you need anything more advanced than that, override the |
|||||||||||
|
|
Adapting the answer from Get an istream from a char* and assuming this is what you're trying to do:
You can then create the
One thing to be aware of though. The object you've created contains pointers into the vectors memory. So if you add or remove values to the vector while having this wrapper floating around, then you're heading for a crash. (Oh and if you up vote me, please up vote the post I've adapted this from.) |
|||
|
|
|
You'd could get away with simply building a class that implements the >> operator like a stream, something like this:
This is a 'quick and dirty' solution, a 'stream lite', it isn't really a stream in the proper sense but it works when all you require is a superficial stream-like device. To properly create a custom stream is a little more complicated, and would require you to inherit from std::streambuf and implement the necessary features. Here are a few links worth a look: |
||||
|
|
|
using Boost:
or even simpler:
|
||||
|
|
|
You will have to write a custom stream-implementation that inherits from |
|||
|
|
&v[0]and&v[0]+v.size()as the arguments tomembuf. – Michael Anderson Jan 11 '12 at 6:55