2008-04-23 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web / HttpWorkerRequest.jvm.cs
1 //
2 // System.Web.HttpWorkerRequest partial
3 //
4 // Authors:
5 //      Vladimir Krasnov (vladimirk@mainsoft.com)
6 //
7 // (C) 2006 Mainsoft
8 //
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if TARGET_JVM
31
32 using System;
33 using System.Collections.Generic;
34 using System.Text;
35
36 namespace System.Web
37 {
38         public abstract partial class HttpWorkerRequest
39         {
40                 java.io.Writer _outputWriter;
41
42                 public virtual void SendResponseFromMemory (IntPtr data, int length)
43                 {
44                         throw new NotImplementedException ("SendResponseFromMemory: unsafe buffers (IntPtr) are not supported");
45                 }
46
47                 internal void SendResponseFromMemory (string data, int offset, int length, Encoding encoding) {
48                         java.io.Writer writer = GetOutputWriter (encoding);
49                         if (writer == null) //if was redirected - silently returns null
50                                 return;
51
52                         writer.write (data, offset, length);
53                 }
54
55                 internal void SendResponseFromMemory (char [] data, int offset, int length, Encoding encoding) {
56                         java.io.Writer writer = GetOutputWriter (encoding);
57                         if (writer == null) //if was redirected - silently returns null
58                                 return;
59
60                         writer.write (data, offset, length);
61                 }
62
63                 java.io.Writer GetOutputWriter (Encoding encoding) {
64                         if (_outputWriter == null) {
65                                 IServiceProvider prov = this as IServiceProvider;
66                                 if (prov == null)
67                                         ; //throw ;
68
69                                 javax.servlet.http.HttpServletResponse sr = (javax.servlet.http.HttpServletResponse) prov.GetService (typeof (javax.servlet.http.HttpServletResponse));
70                                 if (sr != null)
71                                         sr.setCharacterEncoding (encoding.HeaderName);
72
73                                 return (java.io.Writer) prov.GetService (typeof (java.io.Writer));
74                         }
75                         return _outputWriter;
76                 }
77
78         }
79 }
80
81
82 #endif