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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
//
// System.Runtime.Remoting.SoapServices.cs
//
// Author: Jaime Anguiano Olarra (jaime@gnome.org)
// Lluis Sanchez Gual (lluis@ximian.com)
//
// (c) 2002, Jaime Anguiano Olarra
//
//
// Copyright (C) 2004 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;
using System.Collections;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Metadata;
using System.Reflection;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting {
[System.Runtime.InteropServices.ComVisible (true)]
public class SoapServices
{
static Hashtable _xmlTypes = new Hashtable ();
static Hashtable _xmlElements = new Hashtable ();
static Hashtable _soapActions = new Hashtable ();
static Hashtable _soapActionsMethods = new Hashtable ();
static Hashtable _typeInfos = new Hashtable ();
class TypeInfo
{
public Hashtable Attributes;
public Hashtable Elements;
}
// Private constructor: nobody instantiates this class
private SoapServices () {}
// properties
public static string XmlNsForClrType
{
get { return "http://schemas.microsoft.com/clr/"; }
}
public static string XmlNsForClrTypeWithAssembly
{
get { return "http://schemas.microsoft.com/clr/assem/"; }
}
public static string XmlNsForClrTypeWithNs
{
get { return "http://schemas.microsoft.com/clr/ns/"; }
}
public static string XmlNsForClrTypeWithNsAndAssembly
{
get { return "http://schemas.microsoft.com/clr/nsassem/"; }
}
// public methods
public static string CodeXmlNamespaceForClrTypeNamespace (string typeNamespace,
string assemblyName)
{
// If assemblyName is empty, then use the corlib namespace
if (assemblyName == string.Empty)
return XmlNsForClrTypeWithNs + typeNamespace;
else if (typeNamespace == string.Empty)
return EncodeNs (XmlNsForClrTypeWithAssembly + assemblyName);
else
return EncodeNs (XmlNsForClrTypeWithNsAndAssembly + typeNamespace + "/" + assemblyName);
}
public static bool DecodeXmlNamespaceForClrTypeNamespace (string inNamespace,
out string typeNamespace,
out string assemblyName) {
if (inNamespace == null) throw new ArgumentNullException ("inNamespace");
inNamespace = DecodeNs (inNamespace);
typeNamespace = null;
assemblyName = null;
if (inNamespace.StartsWith(XmlNsForClrTypeWithNsAndAssembly))
{
int typePos = XmlNsForClrTypeWithNsAndAssembly.Length;
if (typePos >= inNamespace.Length) return false;
int assemPos = inNamespace.IndexOf ('/', typePos+1);
if (assemPos == -1) return false;
typeNamespace = inNamespace.Substring (typePos, assemPos - typePos);
assemblyName = inNamespace.Substring (assemPos+1);
return true;
}
else if (inNamespace.StartsWith(XmlNsForClrTypeWithNs))
{
int typePos = XmlNsForClrTypeWithNs.Length;
typeNamespace = inNamespace.Substring (typePos);
return true;
}
else if (inNamespace.StartsWith(XmlNsForClrTypeWithAssembly))
{
int typePos = XmlNsForClrTypeWithAssembly.Length;
assemblyName = inNamespace.Substring (typePos);
return true;
}
else
return false;
}
public static void GetInteropFieldTypeAndNameFromXmlAttribute (Type containingType,
string xmlAttribute, string xmlNamespace,
out Type type, out string name)
{
TypeInfo tf = (TypeInfo) _typeInfos [containingType];
Hashtable ht = tf != null ? tf.Attributes : null;
GetInteropFieldInfo (ht, xmlAttribute, xmlNamespace, out type, out name);
}
public static void GetInteropFieldTypeAndNameFromXmlElement (Type containingType,
string xmlElement, string xmlNamespace,
out Type type, out string name)
{
TypeInfo tf = (TypeInfo) _typeInfos [containingType];
Hashtable ht = tf != null ? tf.Elements : null;
GetInteropFieldInfo (ht, xmlElement, xmlNamespace, out type, out name);
}
static void GetInteropFieldInfo (Hashtable fields,
string xmlName, string xmlNamespace,
out Type type, out string name)
{
if (fields != null)
{
FieldInfo field = (FieldInfo) fields [GetNameKey (xmlName, xmlNamespace)];
if (field != null)
{
type = field.FieldType;
name = field.Name;
return;
}
}
type = null;
name = null;
}
static string GetNameKey (string name, string namspace)
{
if (namspace == null) return name;
else return name + " " + namspace;
}
public static Type GetInteropTypeFromXmlElement (string xmlElement, string xmlNamespace)
{
lock (_xmlElements.SyncRoot)
{
return (Type) _xmlElements [xmlElement + " " + xmlNamespace];
}
}
public static Type GetInteropTypeFromXmlType (string xmlType, string xmlTypeNamespace)
{
lock (_xmlTypes.SyncRoot)
{
return (Type) _xmlTypes [xmlType + " " + xmlTypeNamespace];
}
}
private static string GetAssemblyName(MethodBase mb)
{
if (mb.DeclaringType.Assembly == typeof (object).Assembly)
return string.Empty;
else
return mb.DeclaringType.Assembly.GetName().Name;
}
public static string GetSoapActionFromMethodBase (MethodBase mb)
{
return InternalGetSoapAction (mb);
}
public static bool GetTypeAndMethodNameFromSoapAction (string soapAction,
out string typeName,
out string methodName)
{
lock (_soapActions.SyncRoot)
{
MethodBase mb = (MethodBase) _soapActionsMethods [soapAction];
if (mb != null)
{
typeName = mb.DeclaringType.AssemblyQualifiedName;
methodName = mb.Name;
return true;
}
}
string type;
string assembly;
typeName = null;
methodName = null;
int i = soapAction.LastIndexOf ('#');
if (i == -1) return false;
methodName = soapAction.Substring (i+1);
if (!DecodeXmlNamespaceForClrTypeNamespace (soapAction.Substring (0,i), out type, out assembly) )
return false;
if (assembly == null)
typeName = type + ", " + typeof (object).Assembly.GetName().Name;
else
typeName = type + ", " + assembly;
return true;
}
public static bool GetXmlElementForInteropType (Type type, out string xmlElement, out string xmlNamespace)
{
SoapTypeAttribute att = (SoapTypeAttribute) InternalRemotingServices.GetCachedSoapAttribute (type);
if (!att.IsInteropXmlElement)
{
xmlElement = null;
xmlNamespace = null;
return false;
}
xmlElement = att.XmlElementName;
xmlNamespace = att.XmlNamespace;
return true;
}
public static string GetXmlNamespaceForMethodCall (MethodBase mb)
{
return CodeXmlNamespaceForClrTypeNamespace (mb.DeclaringType.FullName, GetAssemblyName(mb));
}
public static string GetXmlNamespaceForMethodResponse (MethodBase mb)
{
return CodeXmlNamespaceForClrTypeNamespace (mb.DeclaringType.FullName, GetAssemblyName(mb));
}
public static bool GetXmlTypeForInteropType (Type type, out string xmlType, out string xmlTypeNamespace)
{
SoapTypeAttribute att = (SoapTypeAttribute) InternalRemotingServices.GetCachedSoapAttribute (type);
if (!att.IsInteropXmlType)
{
xmlType = null;
xmlTypeNamespace = null;
return false;
}
xmlType = att.XmlTypeName;
xmlTypeNamespace = att.XmlTypeNamespace;
return true;
}
public static bool IsClrTypeNamespace (string namespaceString)
{
return namespaceString.StartsWith (XmlNsForClrType);
}
public static bool IsSoapActionValidForMethodBase (string soapAction, MethodBase mb)
{
string typeName;
string methodName;
GetTypeAndMethodNameFromSoapAction (soapAction, out typeName, out methodName);
if (methodName != mb.Name) return false;
string methodClassType = mb.DeclaringType.AssemblyQualifiedName;
return typeName == methodClassType;
}
public static void PreLoad (Assembly assembly)
{
foreach (Type t in assembly.GetTypes ())
PreLoad (t);
}
public static void PreLoad (Type type)
{
string name, namspace;
TypeInfo tf = _typeInfos [type] as TypeInfo;
if (tf != null) return;
if (GetXmlTypeForInteropType (type, out name, out namspace))
RegisterInteropXmlType (name, namspace, type);
if (GetXmlElementForInteropType (type, out name, out namspace))
RegisterInteropXmlElement (name, namspace, type);
lock (_typeInfos.SyncRoot)
{
tf = new TypeInfo ();
FieldInfo[] fields = type.GetFields (BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
foreach (FieldInfo field in fields)
{
SoapFieldAttribute att = (SoapFieldAttribute) InternalRemotingServices.GetCachedSoapAttribute (field);
if (!att.IsInteropXmlElement ()) continue;
string key = GetNameKey (att.XmlElementName, att.XmlNamespace);
if (att.UseAttribute)
{
if (tf.Attributes == null) tf.Attributes = new Hashtable ();
tf.Attributes [key] = field;
}
else
{
if (tf.Elements == null) tf.Elements = new Hashtable ();
tf.Elements [key] = field;
}
}
_typeInfos [type] = tf;
}
}
public static void RegisterInteropXmlElement (string xmlElement, string xmlNamespace, Type type)
{
lock (_xmlElements.SyncRoot)
{
_xmlElements [xmlElement + " " + xmlNamespace] = type;
}
}
public static void RegisterInteropXmlType (string xmlType, string xmlTypeNamespace, Type type)
{
lock (_xmlTypes.SyncRoot)
{
_xmlTypes [xmlType + " " + xmlTypeNamespace] = type;
}
}
public static void RegisterSoapActionForMethodBase (MethodBase mb)
{
InternalGetSoapAction (mb);
}
static string InternalGetSoapAction (MethodBase mb)
{
lock (_soapActions.SyncRoot)
{
string action = (string) _soapActions [mb];
if (action == null)
{
SoapMethodAttribute att = (SoapMethodAttribute) InternalRemotingServices.GetCachedSoapAttribute (mb);
action = att.SoapAction;
_soapActions [mb] = action;
_soapActionsMethods [action] = mb;
}
return action;
}
}
public static void RegisterSoapActionForMethodBase (MethodBase mb, string soapAction)
{
lock (_soapActions.SyncRoot)
{
_soapActions [mb] = soapAction;
_soapActionsMethods [soapAction] = mb;
}
}
static string EncodeNs (string ns)
{
// Simple url encoding for namespaces
ns = ns.Replace (",","%2C");
ns = ns.Replace (" ","%20");
return ns.Replace ("=","%3D");
}
static string DecodeNs (string ns)
{
ns = ns.Replace ("%2C",",");
ns = ns.Replace ("%20"," ");
return ns.Replace ("%3D","=");
}
}
}
|