1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
//
// ServiceHostParser.cs
//
// Author:
// Ankit Jain (jankit@novell.com)
// Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// Copyright (C) 2006 Novell, Inc. http://www.novell.com
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using System.Text;
using System.Web;
using System.Web.Caching;
using System.Web.Configuration;
namespace System.ServiceModel.Channels {
class ServiceHostParser
{
string file;
string url;
string type_name;
string language;
string factory;
bool debug;
bool got_default_directive;
string program; // If program == null, we have to get the requested 'type_name' from the assemblies in bin
ArrayList assemblies;
HttpContext context;
public ServiceHostParser (string file, string url, HttpContext context)
{
this.file = file;
this.url = url;
assemblies = new ArrayList ();
assemblies.Add ("System.ServiceModel");
this.context = context;
CompilationSection section = (CompilationSection) context.GetSection ("system.web/compilation");
language = section.DefaultLanguage;
}
public HttpContext Context {
get { return context; }
}
public string Filename {
get { return file; }
}
public string TypeName {
get { return type_name; }
}
public bool Debug {
get { return debug; }
}
public string Program {
get { return program; }
}
public ArrayList Assemblies {
get { return assemblies; }
}
public string Factory {
get { return factory; }
}
public string Language {
get { return language; }
}
public void Parse ()
{
using (StreamReader reader = new StreamReader (file)) {
string line;
bool directive_found = false;
StringBuilder content = new StringBuilder ();
StringBuilder directiveBuffer = null;
while ((line = reader.ReadLine ()) != null) {
string trimmed = line.Trim ();
if (!directive_found && trimmed.Length == 0)
continue;
if (trimmed.StartsWith ("<%@")) {
int directiveEnd = trimmed.IndexOf ("%>");
if (directiveEnd == -1) {
if (directiveBuffer == null)
directiveBuffer = new StringBuilder ();
directiveBuffer.Append (line);
continue;
}
ParseDirective (trimmed);
directive_found = true;
continue;
} else if (!directive_found && directiveBuffer != null) {
int directiveEnd = trimmed.IndexOf ("%>");
if (directiveEnd == -1) {
directiveBuffer.Append (trimmed);
continue;
}
directiveEnd += 2;
int tlen = trimmed.Length;
if (tlen > directiveEnd)
content.Append (trimmed.Substring (directiveEnd) + "\n");
directiveBuffer.Append (trimmed.Substring (0, directiveEnd));
ParseDirective (directiveBuffer.ToString ());
directive_found = true;
directiveBuffer = null;
continue;
}
content.Append (line + "\n");
content.Append (reader.ReadToEnd ());
}
if (!got_default_directive)
throw new Exception ("No @ServiceHost directive found");
this.program = content.ToString ().Trim ();
if (this.program.Trim ().Length == 0)
this.program = null;
}
if (String.IsNullOrEmpty (Language))
throw new Exception ("Language not specified.");
}
void ParseDirective (string line)
{
StringDictionary attributes = Split (line);
//Directive
if (String.Compare (attributes ["directive"], "ServiceHost", true) == 0) {
got_default_directive = true;
if (!attributes.ContainsKey ("SERVICE"))
throw new Exception ("Service attribute not present in @ServiceHost directive.");
else
type_name = attributes ["SERVICE"];
if (attributes.ContainsKey ("LANGUAGE"))
language = attributes ["LANGUAGE"];
if (attributes.ContainsKey ("FACTORY"))
factory = attributes ["FACTORY"];
if (attributes.ContainsKey ("DEBUG")) {
if (String.Compare (attributes ["DEBUG"], "TRUE", true) == 0)
debug = true;
else if (String.Compare (attributes ["DEBUG"], "FALSE", true) == 0)
debug = false;
else
throw new Exception (String.Format (
"Invalid value for debug attribute : '{0}'", attributes ["DEBUG"]));
}
//FIXME: Other attributes,
return;
}
//FIXME: Other directives? Documentation doesn't mention any other
throw new Exception (String.Format ("Cannot handle directive : '{0}'", attributes ["directive"]));
}
StringDictionary Split (string line)
{
line.Trim ();
int end_pos = line.LastIndexOf ("%>");
if (end_pos < 0)
throw new Exception ("Directive must end with '%>'");
StringDictionary table = new StringDictionary ();
string content = line.Substring (3, end_pos - 3).Trim ();
if (content.Length == 0)
throw new Exception ("No directive found");
int len = content.Length;
int pos = 0;
while (pos < len && content [pos] != ' ')
pos ++;
if (pos >= len) {
table ["directive"] = content;
return table;
}
table ["directive"] = content.Substring (0, pos);
content = content.Substring (pos);
len = content.Length;
pos = 0;
while (pos < len) {
//skip spaces
while (content [pos] == ' ' && pos < len)
pos ++;
int eq_pos = content.IndexOf ('=', pos);
string key = content.Substring (pos, eq_pos - pos).Trim ();
pos = eq_pos + 1;
int start_quote = content.IndexOf ('"', pos);
int end_quote = content.IndexOf ('"', start_quote + 1);
string val = content.Substring (start_quote + 1, end_quote - start_quote - 1).Trim ();
pos = end_quote + 1;
table [key.ToUpper ()] = val;
}
return table;
}
}
}
|