Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to implement a boost iostream MemoryInputStream like this:

class MemoryInputDevice : public boost::iostreams::source
{
    public:
        MemoryInputDevice(char* buffer, size_t size): buffer(buffer), size(size), pos(0)
        {
        }

        std::streamsize read(char* s, std::streamsize n);

    private:
        char* buffer;
        std::streamsize size;
        std::streamsize pos;
};

typedef boost::iostreams::stream<MemoryInputDevice> MemoryInputStream;

I want at the same time to expose to clients beside the istream interface a way for the client to get the pointer to the internal buffer and it's length (getting the pointer to the internal buffer could be questionable but in order not to copy buffer around there are cases where a parser of mine needs all the content of the internal buffer and I don't want to copy that around before passing it to the parser)

Is there a way for MemoryInputStream user to get that info ? I was thinking at the stream->rdbuffer() method but it seems it does not give me what I want

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.