示例#1
0
        protected internal Stream GetStream(Func <Stream> messageStreamFunc, bool isRequest)
        {
            if (!this.writing)
            {
                Microsoft.Data.OData.BufferingReadStream stream = this.TryGetBufferingReadStream();
                if (stream != null)
                {
                    return(stream);
                }
            }
            Stream bufferingReadStream = messageStreamFunc();

            ValidateMessageStream(bufferingReadStream, isRequest);
            bool flag = !this.writing && (this.maxMessageSize > 0L);

            if (this.disableMessageStreamDisposal && flag)
            {
                bufferingReadStream = MessageStreamWrapper.CreateNonDisposingStreamWithMaxSize(bufferingReadStream, this.maxMessageSize);
            }
            else if (this.disableMessageStreamDisposal)
            {
                bufferingReadStream = MessageStreamWrapper.CreateNonDisposingStream(bufferingReadStream);
            }
            else if (flag)
            {
                bufferingReadStream = MessageStreamWrapper.CreateStreamWithMaxSize(bufferingReadStream, this.maxMessageSize);
            }
            if (!this.writing && (this.useBufferingReadStream == true))
            {
                this.bufferingReadStream = new Microsoft.Data.OData.BufferingReadStream(bufferingReadStream);
                bufferingReadStream      = this.bufferingReadStream;
            }
            return(bufferingReadStream);
        }
示例#2
0
        protected internal Task <Stream> GetStreamAsync(Func <Task <Stream> > streamFuncAsync, bool isRequest)
        {
            Func <Task <Stream>, Stream> operation = null;

            if (!this.writing)
            {
                Stream stream = this.TryGetBufferingReadStream();
                if (stream != null)
                {
                    return(TaskUtils.GetCompletedTask <Stream>(stream));
                }
            }
            Task <Stream> task = streamFuncAsync();

            ValidateMessageStreamTask(task, isRequest);
            task = task.FollowOnSuccessWith <Stream, Stream>(delegate(Task <Stream> streamTask) {
                Stream result = streamTask.Result;
                ValidateMessageStream(result, isRequest);
                bool flag = !this.writing && (this.maxMessageSize > 0L);
                if (this.disableMessageStreamDisposal && flag)
                {
                    return(MessageStreamWrapper.CreateNonDisposingStreamWithMaxSize(result, this.maxMessageSize));
                }
                if (this.disableMessageStreamDisposal)
                {
                    return(MessageStreamWrapper.CreateNonDisposingStream(result));
                }
                if (flag)
                {
                    result = MessageStreamWrapper.CreateStreamWithMaxSize(result, this.maxMessageSize);
                }
                return(result);
            });
            if (this.writing)
            {
                return(task);
            }
            task = task.FollowOnSuccessWithTask <Stream, BufferedReadStream>(streamTask => BufferedReadStream.BufferStreamAsync(streamTask.Result)).FollowOnSuccessWith <BufferedReadStream, Stream>(streamTask => streamTask.Result);
            if (this.useBufferingReadStream != true)
            {
                return(task);
            }
            if (operation == null)
            {
                operation = delegate(Task <Stream> streamTask) {
                    Stream result = streamTask.Result;
                    this.bufferingReadStream = new Microsoft.Data.OData.BufferingReadStream(result);
                    return(this.bufferingReadStream);
                };
            }
            return(task.FollowOnSuccessWith <Stream, Stream>(operation));
        }
        internal void InitializeTextWriter()
        {
            Stream outputStream;

            if (MessageStreamWrapper.IsNonDisposingStream(this.outputStream) || (this.outputStream is AsyncBufferedStream))
            {
                outputStream = this.outputStream;
            }
            else
            {
                outputStream = MessageStreamWrapper.CreateNonDisposingStream(this.outputStream);
            }
            this.textWriter = new StreamWriter(outputStream, this.encoding);
        }
示例#4
0
        protected internal Stream GetStream(Func <Stream> messageStreamFunc, bool isRequest)
        {
            // Check whether we have an existing buffering read stream when reading
            if (!this.writing)
            {
                BufferingReadStream existingBufferingReadStream = this.TryGetBufferingReadStream();
                if (existingBufferingReadStream != null)
                {
                    Debug.Assert(this.useBufferingReadStream.HasValue, "UseBufferingReadStream must have been set.");
                    return(existingBufferingReadStream);
                }
            }

            // Get the message stream
            Stream messageStream = messageStreamFunc();

            ValidateMessageStream(messageStream, isRequest);

            // When reading, wrap the stream in a byte counting stream if a max message size was specified.
            // When requested, wrap the stream in a non-disposing stream.
            bool needByteCountingStream = !this.writing && this.maxMessageSize > 0;

            if (this.disableMessageStreamDisposal && needByteCountingStream)
            {
                messageStream = MessageStreamWrapper.CreateNonDisposingStreamWithMaxSize(messageStream, this.maxMessageSize);
            }
            else if (this.disableMessageStreamDisposal)
            {
                messageStream = MessageStreamWrapper.CreateNonDisposingStream(messageStream);
            }
            else if (needByteCountingStream)
            {
                messageStream = MessageStreamWrapper.CreateStreamWithMaxSize(messageStream, this.maxMessageSize);
            }

            // If a buffering read stream is required, create it now
            if (!this.writing && this.useBufferingReadStream == true)
            {
                Debug.Assert(!this.writing, "The buffering read stream should only be used when reading.");
                this.bufferingReadStream = new BufferingReadStream(messageStream);
                messageStream            = this.bufferingReadStream;
            }

            return(messageStream);
        }
示例#5
0
        private void InitializeTextWriter()
        {
            // We must create the text writer over a stream which will ignore Dispose, since we need to be able to Dispose
            // the writer without disposing the underlying message stream.
            Stream nonDisposingStream;

            if (MessageStreamWrapper.IsNonDisposingStream(this.stream) || this.stream is AsyncBufferedStream)
            {
                // AsynBufferedStream ignores Dispose
                nonDisposingStream = this.stream;
            }
            else
            {
                nonDisposingStream = MessageStreamWrapper.CreateNonDisposingStream(this.stream);
            }

            this.textWriter = new StreamWriter(nonDisposingStream, this.encoding);
        }
        internal void InitializeTextWriter()
        {
            DebugUtils.CheckNoExternalCallers();
            Debug.Assert(this.textWriter == null, "The text writer has already been initialized.");

            // We must create the text writer over a stream which will ignore Dispose, since we need to be able to Dispose
            // the writer without disposing the underlying message stream.
            Stream nonDisposingStream;

            if (MessageStreamWrapper.IsNonDisposingStream(this.outputStream) || this.outputStream is AsyncBufferedStream)
            {
                // AsynBufferedStream ignores Dispose
                nonDisposingStream = this.outputStream;
            }
            else
            {
                nonDisposingStream = MessageStreamWrapper.CreateNonDisposingStream(this.outputStream);
            }

            this.textWriter = new StreamWriter(nonDisposingStream, this.encoding);
        }
示例#7
0
        /// <summary>
        /// Asynchronously get the stream backing this message.
        /// </summary>
        /// <param name="streamFuncAsync">A function that returns a task for the stream backing the message.</param>
        /// <param name="isRequest">true if the message is a request message; false for a response message.</param>
        /// <returns>A task that when completed returns the stream backing the message.</returns>
        protected internal Task <Stream> GetStreamAsync(Func <Task <Stream> > streamFuncAsync, bool isRequest)
        {
            // Check whether we have an existing buffering read stream when reading
            if (!this.writing)
            {
                Stream existingBufferingReadStream = this.TryGetBufferingReadStream();
                Debug.Assert(!this.writing || existingBufferingReadStream == null, "The buffering read stream should only be used when reading.");
                if (existingBufferingReadStream != null)
                {
                    Debug.Assert(this.useBufferingReadStream.HasValue, "UseBufferingReadStream must have been set.");
                    return(TaskUtils.GetCompletedTask(existingBufferingReadStream));
                }
            }

            Task <Stream> task = streamFuncAsync();

            ValidateMessageStreamTask(task, isRequest);

            // Wrap it in a non-disposing stream if requested
            task = task.FollowOnSuccessWith(
                streamTask =>
            {
                Stream messageStream = streamTask.Result;
                ValidateMessageStream(messageStream, isRequest);

                // When reading, wrap the stream in a byte counting stream if a max message size was specified.
                // When requested, wrap the stream in a non-disposing stream.
                bool needByteCountingStream = !this.writing && this.maxMessageSize > 0;
                if (this.disableMessageStreamDisposal && needByteCountingStream)
                {
                    messageStream = MessageStreamWrapper.CreateNonDisposingStreamWithMaxSize(messageStream, this.maxMessageSize);
                }
                else if (this.disableMessageStreamDisposal)
                {
                    messageStream = MessageStreamWrapper.CreateNonDisposingStream(messageStream);
                }
                else if (needByteCountingStream)
                {
                    messageStream = MessageStreamWrapper.CreateStreamWithMaxSize(messageStream, this.maxMessageSize);
                }

                return(messageStream);
            });

            // When we are reading, also buffer the input stream
            if (!this.writing)
            {
                task = task
                       .FollowOnSuccessWithTask(
                    streamTask =>
                {
                    return(BufferedReadStream.BufferStreamAsync(streamTask.Result));
                })
                       .FollowOnSuccessWith(
                    streamTask =>
                {
                    BufferedReadStream bufferedReadStream = streamTask.Result;
                    return((Stream)bufferedReadStream);
                });

                // If requested also create a buffering stream for payload kind detection
                if (this.useBufferingReadStream == true)
                {
                    task = task.FollowOnSuccessWith(
                        streamTask =>
                    {
                        Stream messageStream     = streamTask.Result;
                        this.bufferingReadStream = new BufferingReadStream(messageStream);
                        messageStream            = this.bufferingReadStream;
                        return(messageStream);
                    });
                }
            }

            return(task);
        }