In .:
[mono.git] / mcs / class / System / System.Net / ResponseStream.cs
1 //
2 // System.Net.ResponseStream
3 //
4 // Author:
5 //      Gonzalo Paniagua Javier (gonzalo@novell.com)
6 //
7 // Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 #if NET_2_0
29 using System.IO;
30 using System.Net.Sockets;
31 using System.Text;
32 using System.Runtime.InteropServices;
33 namespace System.Net {
34         // FIXME: Does this buffer the response until Close?
35         // What happens when we set content-length to X and write X-1 bytes then close?
36         // what if we don't set content-length at all?
37         class ResponseStream : NetworkStream
38         {
39                 HttpListenerResponse response;
40                 bool ignore_errors;
41                 bool disposed;
42                 bool trailer_sent;
43
44                 internal ResponseStream (Socket sock, HttpListenerResponse response, bool ignore_errors) :
45                                         base (sock, false)
46                 {
47                         this.response = response;
48                         this.ignore_errors = ignore_errors;
49                 }
50
51                 public override bool CanRead {
52                         get { return false; }
53                 }
54
55                 public override bool CanSeek {
56                         get { return false; }
57                 }
58
59                 public override bool CanWrite {
60                         get { return true; }
61                 }
62
63                 public override long Length {
64                         get { throw new NotSupportedException (); }
65                 }
66
67                 public override long Position {
68                         get { throw new NotSupportedException (); }
69                         set { throw new NotSupportedException (); }
70                 }
71
72
73                 public override void Close ()
74                 {
75                         if (disposed == false) {
76                                 disposed = true;
77                                 if (response.SendChunked && !trailer_sent) {
78                                         WriteChunkSize (0, true);
79                                         trailer_sent = true;
80                                 }
81                                 response.Close ();
82                         }
83                 }
84
85                 public override void Flush ()
86                 {
87                 }
88
89                 static byte [] crlf = new byte [] { 13, 10 };
90                 void WriteChunkSize (int size, bool final)
91                 {
92                         string str = String.Format ("{0:x}\r\n{1}", size, final ? "\r\n" : "");
93                         byte [] b = Encoding.ASCII.GetBytes (str);
94                         base.Write (b, 0, b.Length);
95                 }
96
97                 internal void InternalWrite (byte [] buffer, int offset, int count)
98                 {
99                         if (ignore_errors) {
100                                 try {
101                                         base.Write (buffer, offset, count);
102                                 } catch { }
103                         } else {
104                                 base.Write (buffer, offset, count);
105                         }
106                 }
107
108                 public override void Write (byte [] buffer, int offset, int count)
109                 {
110                         if (disposed)
111                                 throw new ObjectDisposedException (GetType ().ToString ());
112
113                         if (response.HeadersSent == false)
114                                 response.SendHeaders ();
115
116                         bool chunked = response.SendChunked;
117                         try {
118                                 if (chunked)
119                                         WriteChunkSize (count, false);
120                         } catch { }
121                         InternalWrite (buffer, offset, count);
122                         try {
123                                 if (chunked)
124                                         base.Write (crlf, 0, 2);
125                         } catch { }
126                 }
127
128                 public override IAsyncResult BeginWrite (byte [] buffer, int offset, int count,
129                                                         AsyncCallback cback, object state)
130                 {
131                         if (disposed)
132                                 throw new ObjectDisposedException (GetType ().ToString ());
133
134                         if (response.HeadersSent == false)
135                                 response.SendHeaders ();
136
137                         try {
138                                 if (response.SendChunked)
139                                         WriteChunkSize (count, false);
140                         } catch { }
141                         return base.BeginWrite (buffer, offset, count, cback, state);
142                 }
143
144                 public override void EndWrite (IAsyncResult ares)
145                 {
146                         if (disposed)
147                                 throw new ObjectDisposedException (GetType ().ToString ());
148
149                         if (ignore_errors) {
150                                 try {
151                                         base.EndWrite (ares);
152                                         if (response.SendChunked)
153                                                 base.Write (crlf, 0, 2);
154                                 } catch { }
155                         } else {
156                                 base.EndWrite (ares);
157                                 if (response.SendChunked)
158                                         base.Write (crlf, 0, 2);
159                         }
160                 }
161
162                 public override int Read ([In,Out] byte[] buffer, int offset, int count)
163                 {
164                         throw new NotSupportedException ();
165                 }
166
167                 public override IAsyncResult BeginRead (byte [] buffer, int offset, int count,
168                                                         AsyncCallback cback, object state)
169                 {
170                         throw new NotSupportedException ();
171                 }
172
173                 public override int EndRead (IAsyncResult ares)
174                 {
175                         throw new NotSupportedException ();
176                 }
177
178                 public override long Seek (long offset, SeekOrigin origin)
179                 {
180                         throw new NotSupportedException ();
181                 }
182
183                 public override void SetLength (long value)
184                 {
185                         throw new NotSupportedException ();
186                 }
187         }
188 }
189 #endif
190