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 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
|
//
// ContractDescriptionGenerator.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
// Atsushi Enomoto <atsushi@xamarin.com>
//
// Copyright (C) 2005-2007 Novell, Inc. http://www.novell.com
// Copyright (C) 2011 Xamarin, Inc. http://xamarin.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.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Net.Security;
using System.Reflection;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Channels;
namespace System.ServiceModel.Description
{
internal static class ContractDescriptionGenerator
{
public delegate bool GetOperationContractAttributeExtender (MethodBase method, object[] customAttributes, ref OperationContractAttribute oca);
static List <GetOperationContractAttributeExtender> getOperationContractAttributeExtenders;
public static void RegisterGetOperationContractAttributeExtender (GetOperationContractAttributeExtender extender)
{
if (extender == null)
return;
if (getOperationContractAttributeExtenders == null)
getOperationContractAttributeExtenders = new List <GetOperationContractAttributeExtender> ();
if (getOperationContractAttributeExtenders.Contains (extender))
return;
getOperationContractAttributeExtenders.Add (extender);
}
public static OperationContractAttribute GetOperationContractAttribute (MethodBase method)
{
object [] matts = method.GetCustomAttributes (typeof (OperationContractAttribute), false);
OperationContractAttribute oca;
if (matts.Length == 0)
oca = null;
else
oca = matts [0] as OperationContractAttribute;
if (getOperationContractAttributeExtenders != null && getOperationContractAttributeExtenders.Count > 0) {
foreach (var extender in getOperationContractAttributeExtenders)
if (extender (method, matts, ref oca))
break;
}
return oca;
}
static void GetServiceContractAttribute (Type type, Dictionary<Type,ServiceContractAttribute> table)
{
for (; type != null; type = type.BaseType) {
foreach (ServiceContractAttribute i in
type.GetCustomAttributes (
typeof (ServiceContractAttribute), true))
table [type] = i;
foreach (Type t in type.GetInterfaces ())
GetServiceContractAttribute (t, table);
}
}
public static Dictionary<Type, ServiceContractAttribute> GetServiceContractAttributes (Type type)
{
Dictionary<Type, ServiceContractAttribute> table = new Dictionary<Type, ServiceContractAttribute> ();
GetServiceContractAttribute (type, table);
return table;
}
public static ContractDescription GetContract (Type contractType) {
return GetContract (contractType, (Type) null);
}
public static ContractDescription GetContract (
Type contractType, object serviceImplementation) {
if (serviceImplementation == null)
throw new ArgumentNullException ("serviceImplementation");
return GetContract (contractType,
serviceImplementation.GetType ());
}
public static MessageContractAttribute GetMessageContractAttribute (Type type)
{
for (Type t = type; t != null; t = t.BaseType) {
object [] matts = t.GetCustomAttributes (
typeof (MessageContractAttribute), true);
if (matts.Length > 0)
return (MessageContractAttribute) matts [0];
}
return null;
}
public static ContractDescription GetCallbackContract (Type serviceType, Type callbackType)
{
return GetContract (callbackType, null, serviceType);
}
public static ContractDescription GetContract (
Type givenContractType, Type givenServiceType)
{
return GetContract (givenContractType, givenServiceType, null);
}
static ContractDescription GetContract (Type givenContractType, Type givenServiceType, Type serviceTypeForCallback)
{
var ret = GetContractInternal (givenContractType, givenServiceType, serviceTypeForCallback);
if (ret == null)
throw new InvalidOperationException (String.Format ("Attempted to get contract type from '{0}' which neither is a service contract nor does it inherit service contract.", serviceTypeForCallback ?? givenContractType));
return ret;
}
internal static Type GetContractAssignableToInterfaces(Type given, Type [] givenInterfaces)
{
if ((given != null) && (givenInterfaces.Count() < 1))
return null;
Dictionary<Type,int> interfaceGraph = new Dictionary<Type,int> ();
foreach (var smaller in givenInterfaces) {
interfaceGraph [smaller] = 0;
foreach (var bigger in givenInterfaces) {
if (smaller.IsAssignableFrom (bigger)) {
interfaceGraph [smaller]++;
}
}
}
List<Type> possibleInterfaces = new List<Type> ();
foreach (var node in interfaceGraph) {
if (node.Value == 1) {
possibleInterfaces.Add(node.Key);
}
}
// For this purpose a contract is a set of interfaces. it is necessary to find the interface representative of rest of the set. It will be assignable to all of
// the others but can only be assigned to by itself. This will give it count of ! in its slot in the interfaceGraph. To be a valid set there can be only one with a count of one
// in its slot. More results in InvalidOperation exceptioni with ambigours error message, less means that the interface we want is the one passed in by the parameter given
// and by returning null we give the callign method permission to use it..
switch (possibleInterfaces.Count())
{
case 0:
break;
case 1:
return possibleInterfaces [0];
break;
default:
if (!given.IsInterface)
throw new InvalidOperationException ("The contract type of " + given + " is ambiguous: can be either " + possibleInterfaces[0] + " or " + possibleInterfaces[1]);
break;
}
return null;
}
internal static ContractDescription GetContractInternal (Type givenContractType, Type givenServiceType, Type serviceTypeForCallback)
{
if (givenContractType == null)
throw new ArgumentNullException ("givenContractType");
// FIXME: serviceType should be used for specifying attributes like OperationBehavior.
Type exactContractType = null;
ServiceContractAttribute sca = null;
Dictionary<Type, ServiceContractAttribute> contracts =
GetServiceContractAttributes (serviceTypeForCallback ?? givenServiceType ?? givenContractType);
if (contracts.ContainsKey (givenContractType)) {
exactContractType = givenContractType;
sca = contracts [givenContractType];
} else {
Type[] contractTypes = contracts.Keys.ToArray() as Type [];
exactContractType = GetContractAssignableToInterfaces(givenContractType, contractTypes);
if (exactContractType != null)
sca = contracts[exactContractType];
}
if (exactContractType == null)
exactContractType = givenContractType;
if (sca == null) {
if (serviceTypeForCallback != null)
sca = contracts.Values.First ();
else
return null; // no contract
}
string name = sca.Name ?? exactContractType.Name;
string ns = sca.Namespace ?? "http://tempuri.org/";
ContractDescription cd =
new ContractDescription (name, ns);
cd.ContractType = exactContractType;
cd.CallbackContractType = sca.CallbackContract;
cd.SessionMode = sca.SessionMode;
if (sca.ConfigurationName != null)
cd.ConfigurationName = sca.ConfigurationName;
else
cd.ConfigurationName = exactContractType.FullName;
if (sca.HasProtectionLevel)
cd.ProtectionLevel = sca.ProtectionLevel;
/*
* Calling `FillOperationsForInterface(cd, X, null, false)' followed by
* `FillOperationsForInterface(cd, X, Y, false)' would attempt to populate
* the behavior list for 'X' twice (bug #6187).
*
* Therefor, we manually iterate over the list of interfaces here instead of
* using ContractDescription.GetInheritedContracts().
*
*/
var inherited = new Collection<ContractDescription> ();
var interfaces = cd.ContractType.GetInterfaces ()
.Where (t => t != givenContractType);
foreach (var it in interfaces ) {
var icd = GetContractInternal (it, givenServiceType, null);
if (icd != null)
inherited.Add (icd);
}
foreach (var icd in inherited) {
foreach (var od in icd.Operations) {
if (!cd.Operations.Any (o => o.Name == od.Name && o.SyncMethod == od.SyncMethod && o.BeginMethod == od.BeginMethod && o.InCallbackContract == od.InCallbackContract))
cd.Operations.Add (od);
}
}
FillOperationsForInterface (cd, cd.ContractType, givenServiceType, false);
if (cd.CallbackContractType != null)
FillOperationsForInterface (cd, cd.CallbackContractType, null, true);
// FIXME: enable this when I found where this check is needed.
/*
if (cd.Operations.Count == 0)
throw new InvalidOperationException (String.Format ("The service contract type {0} has no operation. At least one operation must exist.", contractType));
*/
return cd;
}
static void FillOperationsForInterface (ContractDescription cd, Type exactContractType, Type givenServiceType, bool isCallback)
{
// FIXME: load Behaviors
MethodInfo [] contractMethods = /*exactContractType.IsInterface ? GetAllMethods (exactContractType) :*/ exactContractType.GetMethods (BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly);
MethodInfo [] serviceMethods = contractMethods;
if (givenServiceType != null && exactContractType.IsInterface) {
var l = new List<MethodInfo> ();
foreach (Type t in GetAllInterfaceTypes (exactContractType))
l.AddRange (givenServiceType.GetInterfaceMap (t).TargetMethods);
serviceMethods = l.ToArray ();
}
for (int i = 0; i < contractMethods.Length; ++i)
{
MethodInfo mi = contractMethods [i];
OperationContractAttribute oca = GetOperationContractAttribute (mi);
if (oca == null)
continue;
MethodInfo end = null;
if (oca.AsyncPattern) {
if (String.Compare ("Begin", 0, mi.Name,0, 5) != 0)
throw new InvalidOperationException ("For async operation contract patterns, the initiator method name must start with 'Begin'.");
string endName = "End" + mi.Name.Substring (5);
end = mi.DeclaringType.GetMethod (endName);
if (end == null)
throw new InvalidOperationException (String.Format ("'{0}' method is missing. For async operation contract patterns, corresponding End method is required for each Begin method.", endName));
if (GetOperationContractAttribute (end) != null)
throw new InvalidOperationException ("Async 'End' method must not have OperationContractAttribute. It is automatically treated as the EndMethod of the corresponding 'Begin' method.");
}
OperationDescription od = GetOrCreateOperation (cd, mi, serviceMethods [i], oca, end, isCallback, givenServiceType);
if (end != null)
od.EndMethod = end;
}
}
static MethodInfo [] GetAllMethods (Type type)
{
var l = new List<MethodInfo> ();
foreach (var t in GetAllInterfaceTypes (type)) {
#if FULL_AOT_RUNTIME
// The MethodBase[] from t.GetMethods () is cast to a IEnumerable <MethodInfo>
// when passed to List<MethodInfo>.AddRange, which in turn casts it to
// ICollection <MethodInfo>. The full-aot compiler has no idea of this, so
// we're going to make it aware.
int c = ((ICollection <MethodInfo>) t.GetMethods ()).Count;
#endif
l.AddRange (t.GetMethods ());
}
return l.ToArray ();
}
static IEnumerable<Type> GetAllInterfaceTypes (Type type)
{
yield return type;
foreach (var t in type.GetInterfaces ())
foreach (var tt in GetAllInterfaceTypes (t))
yield return tt;
}
static OperationDescription GetOrCreateOperation (
ContractDescription cd, MethodInfo mi, MethodInfo serviceMethod,
OperationContractAttribute oca,
MethodInfo endMethod,
bool isCallback,
Type givenServiceType)
{
string name = oca.Name ?? (oca.AsyncPattern ? mi.Name.Substring (5) : mi.Name);
OperationDescription od = cd.Operations.FirstOrDefault (o => o.Name == name && o.InCallbackContract == isCallback);
if (od == null) {
od = new OperationDescription (name, cd);
od.IsOneWay = oca.IsOneWay;
if (oca.HasProtectionLevel)
od.ProtectionLevel = oca.ProtectionLevel;
if (HasInvalidMessageContract (mi, oca.AsyncPattern))
throw new InvalidOperationException (String.Format ("The operation {0} contains more than one parameters and one or more of them are marked with MessageContractAttribute, but the attribute must be used within an operation that has only one parameter.", od.Name));
var xfa = serviceMethod.GetCustomAttribute<XmlSerializerFormatAttribute> (false);
if (xfa != null)
od.Behaviors.Add (new XmlSerializerOperationBehavior (od, xfa));
var dfa = serviceMethod.GetCustomAttribute<DataContractFormatAttribute> (false);
if (dfa != null)
od.Behaviors.Add (new DataContractSerializerOperationBehavior (od, dfa));
od.Messages.Add (GetMessage (od, mi, oca, true, isCallback, null));
if (!od.IsOneWay) {
var asyncReturnType = endMethod != null ? endMethod.ReturnType : null;
var md = GetMessage (od, endMethod ?? mi, oca, false, isCallback, asyncReturnType);
od.Messages.Add (md);
var mpa = mi.ReturnParameter.GetCustomAttribute<MessageParameterAttribute> (true);
if (mpa != null) {
var mpd = md.Body.Parts.FirstOrDefault (pd => pd.Name == mpa.Name);
if (mpd != null) {
md.Body.Parts.Remove (mpd);
md.Body.ReturnValue = mpd;
mpd.Name = mpa.Name;
}
else if (md.Body.ReturnValue == null)
throw new InvalidOperationException (String.Format ("Specified message part '{0}' in MessageParameterAttribute on the return value, was not found", mpa.Name));
}
}
var knownTypeAtts =
cd.ContractType.GetCustomAttributes (typeof (ServiceKnownTypeAttribute), false).Union (
mi.GetCustomAttributes (typeof (ServiceKnownTypeAttribute), false)).Union (
serviceMethod.GetCustomAttributes (typeof (ServiceKnownTypeAttribute), false));
foreach (ServiceKnownTypeAttribute a in knownTypeAtts)
foreach (Type t in a.GetTypes (givenServiceType))
od.KnownTypes.Add (t);
foreach (FaultContractAttribute a in mi.GetCustomAttributes (typeof (FaultContractAttribute), false)) {
var fname = a.Name ?? a.DetailType.Name + "Fault";
var fns = a.Namespace ?? cd.Namespace;
var fd = new FaultDescription (a.Action ?? cd.Namespace + cd.Name + "/" + od.Name + fname) { DetailType = a.DetailType, Name = fname, Namespace = fns };
#if !MOBILE
if (a.HasProtectionLevel)
fd.ProtectionLevel = a.ProtectionLevel;
#endif
od.Faults.Add (fd);
}
cd.Operations.Add (od);
}
else if ((oca.AsyncPattern && od.BeginMethod != null && od.BeginMethod != mi ||
!oca.AsyncPattern && od.SyncMethod != null && od.SyncMethod != mi) && od.InCallbackContract == isCallback)
throw new InvalidOperationException (String.Format ("contract '{1}' cannot have two operations for '{0}' that have the identical names and different set of parameters.", name, cd.Name));
if (oca.AsyncPattern)
od.BeginMethod = mi;
else
od.SyncMethod = mi;
od.IsInitiating = oca.IsInitiating;
od.IsTerminating = oca.IsTerminating;
if (mi != serviceMethod)
foreach (object obj in mi.GetCustomAttributes (typeof (IOperationBehavior), true))
od.Behaviors.Add ((IOperationBehavior) obj);
if (serviceMethod != null) {
foreach (object obj in serviceMethod.GetCustomAttributes (typeof(IOperationBehavior),true))
od.Behaviors.Add ((IOperationBehavior) obj);
}
#if !MOBILE
if (od.Behaviors.Find<OperationBehaviorAttribute>() == null)
od.Behaviors.Add (new OperationBehaviorAttribute ());
#endif
// FIXME: fill KnownTypes, Behaviors and Faults.
if (isCallback)
od.InCallbackContract = true;
else
od.InOrdinalContract = true;
return od;
}
static bool HasInvalidMessageContract (MethodInfo mi, bool async)
{
var pars = mi.GetParameters ();
if (async) {
if (pars.Length > 3) {
if (pars.Take (pars.Length - 2).Any (par => par.ParameterType.GetCustomAttribute<MessageContractAttribute> (true) != null))
return true;
}
} else {
if (pars.Length > 1) {
if (pars.Any (par => par.ParameterType.GetCustomAttribute<MessageContractAttribute> (true) != null))
return true;
}
}
return false;
}
static MessageDescription GetMessage (
OperationDescription od, MethodInfo mi,
OperationContractAttribute oca, bool isRequest,
bool isCallback, Type asyncReturnType)
{
ContractDescription cd = od.DeclaringContract;
ParameterInfo [] plist = mi.GetParameters ();
Type messageType = null;
string action = isRequest ? oca.Action : oca.ReplyAction;
MessageContractAttribute mca;
Type retType = asyncReturnType;
if (!isRequest && retType == null)
retType = mi.ReturnType;
// If the argument is only one and has [MessageContract]
// then infer it as a typed messsage
if (isRequest) {
int len = mi.Name.StartsWith ("Begin", StringComparison.Ordinal) ? 3 : 1;
mca = plist.Length != len ? null :
GetMessageContractAttribute (plist [0].ParameterType);
if (mca != null)
messageType = plist [0].ParameterType;
}
else {
mca = GetMessageContractAttribute (retType);
if (mca != null)
messageType = retType;
}
if (action == null)
action = String.Concat (cd.Namespace,
cd.Namespace.Length == 0 ? "urn:" : cd.Namespace.EndsWith ("/") ? "" : "/", cd.Name, "/",
od.Name, isRequest ? String.Empty : "Response");
MessageDescription md;
if (mca != null)
md = CreateMessageDescription (messageType, cd.Namespace, action, isRequest, isCallback, mca);
else
md = CreateMessageDescription (oca, plist, od.Name, cd.Namespace, action, isRequest, isCallback, retType);
// ReturnValue
if (!isRequest) {
MessagePartDescription mp = CreatePartCore (GetMessageParameterAttribute (mi.ReturnTypeCustomAttributes), od.Name + "Result", md.Body.WrapperNamespace);
mp.Index = 0;
mp.Type = mca != null ? typeof (void) : retType;
md.Body.ReturnValue = mp;
}
return md;
}
public static MessageDescription CreateMessageDescription (
Type messageType, string defaultNamespace, string action, bool isRequest, bool isCallback, MessageContractAttribute mca)
{
MessageDescription md = new MessageDescription (action, isRequest ^ isCallback ? MessageDirection.Input : MessageDirection.Output) { IsRequest = isRequest };
md.MessageType = MessageFilterOutByRef (messageType);
if (mca.HasProtectionLevel)
md.ProtectionLevel = mca.ProtectionLevel;
MessageBodyDescription mb = md.Body;
if (mca.IsWrapped) {
mb.WrapperName = mca.WrapperName ?? messageType.Name;
mb.WrapperNamespace = mca.WrapperNamespace ?? defaultNamespace;
}
foreach (MemberInfo bmi in messageType.GetMembers (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)) {
Type mtype = null;
string mname = null;
if (bmi is FieldInfo) {
FieldInfo fi = (FieldInfo) bmi;
mtype = fi.FieldType;
mname = fi.Name;
}
else if (bmi is PropertyInfo) {
PropertyInfo pi = (PropertyInfo) bmi;
mtype = pi.PropertyType;
mname = pi.Name;
}
else
continue;
var mha = bmi.GetCustomAttribute<MessageHeaderAttribute> (false);
if (mha != null) {
var pd = CreateHeaderDescription (mha, mname, defaultNamespace);
pd.Type = MessageFilterOutByRef (mtype);
pd.MemberInfo = bmi;
md.Headers.Add (pd);
}
var mpa = bmi.GetCustomAttribute<MessagePropertyAttribute> (false);
if (mpa != null) {
var pd = new MessagePropertyDescription (mpa.Name ?? mname);
pd.Type = MessageFilterOutByRef (mtype);
pd.MemberInfo = bmi;
md.Properties.Add (pd);
}
var mba = GetMessageBodyMemberAttribute (bmi);
if (mba != null) {
var pd = CreatePartCore (mba, mname, defaultNamespace);
pd.Type = MessageFilterOutByRef (mtype);
pd.MemberInfo = bmi;
mb.Parts.Add (pd);
}
}
int index = 0;
foreach (var part in mb.Parts)
part.Index = index++;
return md;
}
public static MessageDescription CreateMessageDescription (
OperationContractAttribute oca, ParameterInfo[] plist, string name, string defaultNamespace, string action, bool isRequest, bool isCallback, Type retType)
{
var dir = isRequest ^ isCallback ? MessageDirection.Input : MessageDirection.Output;
MessageDescription md = new MessageDescription (action, dir) { IsRequest = isRequest };
MessageBodyDescription mb = md.Body;
mb.WrapperName = name + (isRequest ? String.Empty : "Response");
mb.WrapperNamespace = defaultNamespace;
if (oca.HasProtectionLevel)
md.ProtectionLevel = oca.ProtectionLevel;
// Parts
int index = 0;
foreach (ParameterInfo pi in plist) {
// AsyncCallback and state are extraneous.
if (oca.AsyncPattern) {
if (isRequest && pi.Position == plist.Length - 2)
break;
if (!isRequest && pi.Position == plist.Length - 1)
break;
}
// They are ignored:
// - out parameter in request
// - neither out nor ref parameter in reply
if (isRequest && pi.IsOut)
continue;
if (!isRequest && !pi.IsOut && !pi.ParameterType.IsByRef)
continue;
MessagePartDescription pd = CreatePartCore (GetMessageParameterAttribute (pi), pi.Name, defaultNamespace);
pd.Index = index++;
pd.Type = MessageFilterOutByRef (pi.ParameterType);
mb.Parts.Add (pd);
}
return md;
}
// public static void FillMessageBodyDescriptionByContract (
// Type messageType, MessageBodyDescription mb)
// {
// }
static MessageHeaderDescription CreateHeaderDescription (MessageHeaderAttribute mha, string defaultName, string defaultNamespace)
{
var ret = CreatePartCore<MessageHeaderDescription> (mha, defaultName, defaultNamespace, delegate (string n, string ns) { return new MessageHeaderDescription (n, ns); });
ret.Actor = mha.Actor;
ret.MustUnderstand = mha.MustUnderstand;
ret.Relay = mha.Relay;
return ret;
}
static MessagePartDescription CreatePartCore (
MessageParameterAttribute mpa, string defaultName,
string defaultNamespace)
{
string pname = null;
if (mpa != null && mpa.Name != null)
pname = mpa.Name;
if (pname == null)
pname = defaultName;
return new MessagePartDescription (pname, defaultNamespace);
}
static MessagePartDescription CreatePartCore (MessageBodyMemberAttribute mba, string defaultName, string defaultNamespace)
{
var ret = CreatePartCore<MessagePartDescription> (mba, defaultName, defaultNamespace, delegate (string n, string ns) { return new MessagePartDescription (n, ns); });
ret.Index = mba.Order;
return ret;
}
static T CreatePartCore<T> (MessageContractMemberAttribute mba, string defaultName, string defaultNamespace, Func<string,string,T> creator)
{
string pname = null, pns = null;
if (mba != null) {
if (mba.Name != null)
pname = mba.Name;
if (mba.Namespace != null)
pns = mba.Namespace;
}
if (pname == null)
pname = defaultName;
if (pns == null)
pns = defaultNamespace;
return creator (pname, pns);
}
static Type MessageFilterOutByRef (Type type)
{
return type == null ? null :
type.IsByRef ? type.GetElementType () : type;
}
static MessageParameterAttribute GetMessageParameterAttribute (ICustomAttributeProvider provider)
{
object [] attrs = provider.GetCustomAttributes (
typeof (MessageParameterAttribute), true);
return attrs.Length > 0 ? (MessageParameterAttribute) attrs [0] : null;
}
static MessageBodyMemberAttribute GetMessageBodyMemberAttribute (MemberInfo mi)
{
object [] matts = mi.GetCustomAttributes (
typeof (MessageBodyMemberAttribute), true);
return matts.Length > 0 ? (MessageBodyMemberAttribute) matts [0] : null;
}
}
}
|