2010-06-30 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web / BaseParamsCollection.cs
1 //
2 // System.Web.BaseParamsCollection
3 //
4 // Authors:
5 //   Vladimir Krasnov (vladimirk@mainsoft.com)
6 //
7 // (C) 2006 Mainsoft Co. (http://www.mainsoft.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
29 using System;
30 using System.Collections.Specialized;
31 using System.Runtime.Serialization;
32
33 namespace System.Web
34 {
35         abstract class BaseParamsCollection : WebROCollection
36         {
37                 protected HttpRequest _request;
38                 protected bool _loaded = false;
39
40                 public BaseParamsCollection (HttpRequest request)
41                 {               
42                         _request = request;
43                         IsReadOnly = true;
44                 }
45
46                 void LoadInfo ()
47                 {
48                         if (_loaded)
49                                 return;
50                         IsReadOnly = false;
51
52                         InsertInfo ();
53         
54                         IsReadOnly = true;
55                         _loaded = true;
56
57                 }
58
59                 protected abstract void InsertInfo ();
60
61                 public override string Get (int index)
62                 {
63                         LoadInfo ();
64                         return base.Get (index); 
65                 }
66
67                 protected abstract string InternalGet (string name);
68
69                 public override string Get (string name)
70                 {
71                         if (!_loaded) {
72 #if TARGET_JVM
73                                 return InternalGet (name);
74 #else
75                                 string s = InternalGet (name);
76                                 if (s != null && s.Length > 0)
77                                         return s;
78
79                                 LoadInfo ();
80 #endif
81                         }
82                                 
83                         return base.Get (name);         
84                 }
85
86                 public override string GetKey (int index)
87                 {
88                         LoadInfo ();
89                         return base.GetKey (index); 
90                 }
91  
92                 public override string[] GetValues (int index)
93                 {
94                         string text1;
95                         string[] array1;
96                         text1 = Get (index);
97                         if (text1 == null) 
98                                 return null; 
99
100                         array1 = new string[1];
101                         array1[0] = text1;
102                         return array1; 
103                 }
104  
105                 public override string[] GetValues (string name)
106                 {
107                         string text1;
108                         string[] array1;
109                         text1 = Get (name);
110                         if (text1 == null) 
111                                 return null; 
112
113                         array1 = new string[1];
114                         array1[0] = text1;
115                         return array1; 
116                 }
117  
118                 public override void GetObjectData (SerializationInfo info, StreamingContext context)
119                 {
120                         throw new SerializationException (); 
121                 }
122
123                 public override string[] AllKeys 
124                 {
125                         get {
126                                 LoadInfo ();
127                                 return base.AllKeys;
128                         }
129                 }
130
131                 public override int Count 
132                 {
133                         get {
134                                 LoadInfo ();
135                                 return base.Count;
136                         }
137                 }
138
139                 public override NameObjectCollectionBase.KeysCollection Keys {
140                         get {
141                                 LoadInfo ();
142                                 return base.Keys;
143                         }
144                 }
145
146                 public override System.Collections.IEnumerator GetEnumerator () {
147                         LoadInfo ();
148                         return base.GetEnumerator ();
149                 }
150         }
151 }