1ffe3c632Sopenharmony_ci#region Copyright notice and license
2ffe3c632Sopenharmony_ci// Protocol Buffers - Google's data interchange format
3ffe3c632Sopenharmony_ci// Copyright 2015 Google Inc.  All rights reserved.
4ffe3c632Sopenharmony_ci// https://developers.google.com/protocol-buffers/
5ffe3c632Sopenharmony_ci//
6ffe3c632Sopenharmony_ci// Redistribution and use in source and binary forms, with or without
7ffe3c632Sopenharmony_ci// modification, are permitted provided that the following conditions are
8ffe3c632Sopenharmony_ci// met:
9ffe3c632Sopenharmony_ci//
10ffe3c632Sopenharmony_ci//     * Redistributions of source code must retain the above copyright
11ffe3c632Sopenharmony_ci// notice, this list of conditions and the following disclaimer.
12ffe3c632Sopenharmony_ci//     * Redistributions in binary form must reproduce the above
13ffe3c632Sopenharmony_ci// copyright notice, this list of conditions and the following disclaimer
14ffe3c632Sopenharmony_ci// in the documentation and/or other materials provided with the
15ffe3c632Sopenharmony_ci// distribution.
16ffe3c632Sopenharmony_ci//     * Neither the name of Google Inc. nor the names of its
17ffe3c632Sopenharmony_ci// contributors may be used to endorse or promote products derived from
18ffe3c632Sopenharmony_ci// this software without specific prior written permission.
19ffe3c632Sopenharmony_ci//
20ffe3c632Sopenharmony_ci// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21ffe3c632Sopenharmony_ci// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22ffe3c632Sopenharmony_ci// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23ffe3c632Sopenharmony_ci// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24ffe3c632Sopenharmony_ci// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25ffe3c632Sopenharmony_ci// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26ffe3c632Sopenharmony_ci// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27ffe3c632Sopenharmony_ci// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28ffe3c632Sopenharmony_ci// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29ffe3c632Sopenharmony_ci// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30ffe3c632Sopenharmony_ci// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31ffe3c632Sopenharmony_ci#endregion
32ffe3c632Sopenharmony_ci
33ffe3c632Sopenharmony_ciusing System;
34ffe3c632Sopenharmony_ciusing System.IO;
35ffe3c632Sopenharmony_ci
36ffe3c632Sopenharmony_cinamespace Google.Protobuf
37ffe3c632Sopenharmony_ci{
38ffe3c632Sopenharmony_ci    /// <summary>
39ffe3c632Sopenharmony_ci    /// Stream implementation which proxies another stream, only allowing a certain amount
40ffe3c632Sopenharmony_ci    /// of data to be read. Note that this is only used to read delimited streams, so it
41ffe3c632Sopenharmony_ci    /// doesn't attempt to implement everything.
42ffe3c632Sopenharmony_ci    /// </summary>
43ffe3c632Sopenharmony_ci    internal sealed class LimitedInputStream : Stream
44ffe3c632Sopenharmony_ci    {
45ffe3c632Sopenharmony_ci        private readonly Stream proxied;
46ffe3c632Sopenharmony_ci        private int bytesLeft;
47ffe3c632Sopenharmony_ci
48ffe3c632Sopenharmony_ci        internal LimitedInputStream(Stream proxied, int size)
49ffe3c632Sopenharmony_ci        {
50ffe3c632Sopenharmony_ci            this.proxied = proxied;
51ffe3c632Sopenharmony_ci            bytesLeft = size;
52ffe3c632Sopenharmony_ci        }
53ffe3c632Sopenharmony_ci
54ffe3c632Sopenharmony_ci        public override bool CanRead
55ffe3c632Sopenharmony_ci        {
56ffe3c632Sopenharmony_ci            get { return true; }
57ffe3c632Sopenharmony_ci        }
58ffe3c632Sopenharmony_ci
59ffe3c632Sopenharmony_ci        public override bool CanSeek
60ffe3c632Sopenharmony_ci        {
61ffe3c632Sopenharmony_ci            get { return false; }
62ffe3c632Sopenharmony_ci        }
63ffe3c632Sopenharmony_ci
64ffe3c632Sopenharmony_ci        public override bool CanWrite
65ffe3c632Sopenharmony_ci        {
66ffe3c632Sopenharmony_ci            get { return false; }
67ffe3c632Sopenharmony_ci        }
68ffe3c632Sopenharmony_ci
69ffe3c632Sopenharmony_ci        public override void Flush()
70ffe3c632Sopenharmony_ci        {
71ffe3c632Sopenharmony_ci        }
72ffe3c632Sopenharmony_ci
73ffe3c632Sopenharmony_ci        public override long Length
74ffe3c632Sopenharmony_ci        {
75ffe3c632Sopenharmony_ci            get { throw new NotSupportedException(); }
76ffe3c632Sopenharmony_ci        }
77ffe3c632Sopenharmony_ci
78ffe3c632Sopenharmony_ci        public override long Position
79ffe3c632Sopenharmony_ci        {
80ffe3c632Sopenharmony_ci            get { throw new NotSupportedException(); }
81ffe3c632Sopenharmony_ci            set { throw new NotSupportedException(); }
82ffe3c632Sopenharmony_ci        }
83ffe3c632Sopenharmony_ci
84ffe3c632Sopenharmony_ci        public override int Read(byte[] buffer, int offset, int count)
85ffe3c632Sopenharmony_ci        {
86ffe3c632Sopenharmony_ci            if (bytesLeft > 0)
87ffe3c632Sopenharmony_ci            {
88ffe3c632Sopenharmony_ci                int bytesRead = proxied.Read(buffer, offset, Math.Min(bytesLeft, count));
89ffe3c632Sopenharmony_ci                bytesLeft -= bytesRead;
90ffe3c632Sopenharmony_ci                return bytesRead;
91ffe3c632Sopenharmony_ci            }
92ffe3c632Sopenharmony_ci            return 0;
93ffe3c632Sopenharmony_ci        }
94ffe3c632Sopenharmony_ci
95ffe3c632Sopenharmony_ci        public override long Seek(long offset, SeekOrigin origin)
96ffe3c632Sopenharmony_ci        {
97ffe3c632Sopenharmony_ci            throw new NotSupportedException();
98ffe3c632Sopenharmony_ci        }
99ffe3c632Sopenharmony_ci
100ffe3c632Sopenharmony_ci        public override void SetLength(long value)
101ffe3c632Sopenharmony_ci        {
102ffe3c632Sopenharmony_ci            throw new NotSupportedException();
103ffe3c632Sopenharmony_ci        }
104ffe3c632Sopenharmony_ci
105ffe3c632Sopenharmony_ci        public override void Write(byte[] buffer, int offset, int count)
106ffe3c632Sopenharmony_ci        {
107ffe3c632Sopenharmony_ci            throw new NotSupportedException();
108ffe3c632Sopenharmony_ci        }
109ffe3c632Sopenharmony_ci    }
110ffe3c632Sopenharmony_ci}
111