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
|
namespace System.Workflow.Activities
{
using System;
using System.Reflection;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing;
using System.Drawing.Design;
using System.Workflow.Runtime;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Workflow.Runtime.Hosting;
using System.Workflow.ComponentModel.Compiler;
using System.ComponentModel.Design.Serialization;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Runtime.Serialization;
using System.Workflow.Activities.Common;
[SRDescription(SR.HandleExternalEventActivityDescription)]
[DefaultEvent("Invoked")]
[Designer(typeof(HandleExternalEventActivityDesigner), typeof(IDesigner))]
[ActivityValidator(typeof(HandleExternalEventActivityValidator))]
[SRCategory(SR.Base)]
[Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public class HandleExternalEventActivity : Activity, IEventActivity, IPropertyValueProvider, IActivityEventListener<QueueEventArgs>, IDynamicPropertyTypeProvider
{
//instance properties
public static readonly DependencyProperty CorrelationTokenProperty = DependencyProperty.Register("CorrelationToken", typeof(CorrelationToken), typeof(HandleExternalEventActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata));
public static readonly DependencyProperty RolesProperty = DependencyProperty.Register("Roles", typeof(WorkflowRoleCollection), typeof(HandleExternalEventActivity));
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(HandleExternalEventActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
private static DependencyProperty ActivitySubscribedProperty = DependencyProperty.Register("ActivitySubscribed", typeof(bool), typeof(HandleExternalEventActivity), new PropertyMetadata(false));
private static DependencyProperty QueueNameProperty = DependencyProperty.Register("QueueName", typeof(IComparable), typeof(HandleExternalEventActivity));
//metadata properties
public static readonly DependencyProperty InterfaceTypeProperty = DependencyProperty.Register("InterfaceType", typeof(System.Type), typeof(HandleExternalEventActivity), new PropertyMetadata(null, DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) }));
public static readonly DependencyProperty EventNameProperty = DependencyProperty.Register("EventName", typeof(string), typeof(HandleExternalEventActivity), new PropertyMetadata("", DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) }));
//event
public static readonly DependencyProperty InvokedEvent = DependencyProperty.Register("Invoked", typeof(EventHandler<ExternalDataEventArgs>), typeof(HandleExternalEventActivity));
internal static readonly ArrayList ReservedParameterNames = new ArrayList(new string[] { "Name", "Enabled", "Description", "EventName", "InterfaceType", "Invoked", "Roles" });
#region Constructors
public HandleExternalEventActivity()
{
base.SetReadOnlyPropertyValue(ParameterBindingsProperty, new WorkflowParameterBindingCollection(this));
}
public HandleExternalEventActivity(string name)
: base(name)
{
base.SetReadOnlyPropertyValue(ParameterBindingsProperty, new WorkflowParameterBindingCollection(this));
}
#endregion
[RefreshProperties(RefreshProperties.All)]
[TypeConverter(typeof(PropertyValueProviderTypeConverter))]
[SRCategory(SR.Activity)]
[SRDescription(SR.ExternalEventNameDescr)]
[MergablePropertyAttribute(false)]
[DefaultValue("")]
public virtual string EventName
{
get
{
return base.GetValue(EventNameProperty) as string;
}
set
{
base.SetValue(EventNameProperty, value);
}
}
[SRCategory(SR.Activity)]
[SRDescription(SR.HelperExternalDataExchangeDesc)]
[RefreshProperties(RefreshProperties.All)]
[Editor(typeof(TypeBrowserEditor), typeof(UITypeEditor))]
[TypeFilterProviderAttribute(typeof(ExternalDataExchangeInterfaceTypeFilterProvider))]
[DefaultValue(null)]
public virtual Type InterfaceType
{
get
{
return base.GetValue(InterfaceTypeProperty) as Type;
}
set
{
base.SetValue(InterfaceTypeProperty, value);
}
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
[Browsable(false)]
public WorkflowParameterBindingCollection ParameterBindings
{
get
{
return base.GetValue(ParameterBindingsProperty) as WorkflowParameterBindingCollection;
}
}
[SRCategory(SR.Activity)]
[SRDescription(SR.RoleDescr)]
[Editor(typeof(BindUITypeEditor), typeof(UITypeEditor))]
[DefaultValue(null)]
public WorkflowRoleCollection Roles
{
get
{
return base.GetValue(RolesProperty) as WorkflowRoleCollection;
}
set
{
base.SetValue(RolesProperty, value);
}
}
[SRCategory(SR.Activity)]
[RefreshProperties(RefreshProperties.All)]
[SRDescription(SR.CorrelationSetDescr)]
[MergableProperty(false)]
[TypeConverter(typeof(CorrelationTokenTypeConverter))]
[DefaultValue(null)]
public virtual CorrelationToken CorrelationToken
{
get
{
return base.GetValue(CorrelationTokenProperty) as CorrelationToken;
}
set
{
base.SetValue(CorrelationTokenProperty, value);
}
}
[SRCategory(SR.Handlers)]
[SRDescription(SR.OnAfterMethodInvokeDescr)]
[MergableProperty(false)]
public event EventHandler<ExternalDataEventArgs> Invoked
{
add
{
base.AddHandler(InvokedEvent, value);
}
remove
{
base.RemoveHandler(InvokedEvent, value);
}
}
private bool ActivitySubscribed
{
get
{
return (bool)base.GetValue(ActivitySubscribedProperty);
}
set
{
base.SetValue(ActivitySubscribedProperty, value);
}
}
ICollection IPropertyValueProvider.GetPropertyValues(ITypeDescriptorContext context)
{
StringCollection names = new StringCollection();
if (this.InterfaceType == null)
return names;
if (context.PropertyDescriptor.Name == "EventName")
{
foreach (EventInfo eventInfo in this.InterfaceType.GetEvents(BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Public))
names.Add(eventInfo.Name);
}
return names;
}
protected override void InitializeProperties()
{
ActivityHelpers.InitializeCorrelationTokenCollection(this, this.CorrelationToken);
Type type = this.InterfaceType;
if (type == null)
throw new InvalidOperationException(SR.GetString(SR.InterfaceTypeMissing, this.Name));
string eventName = this.EventName;
if (eventName == null)
throw new InvalidOperationException(SR.GetString(SR.EventNameMissing, this.Name));
EventInfo eventInfo = type.GetEvent(eventName);
if (eventInfo != null)
{
MethodInfo methodInfo = eventInfo.EventHandlerType.GetMethod("Invoke");
InvokeHelper.InitializeParameters(methodInfo, this.ParameterBindings);
}
else
{
throw new InvalidOperationException(SR.GetString(SR.MethodInfoMissing, this.EventName, this.InterfaceType.Name));
}
base.InitializeProperties();
}
protected sealed override void Initialize(IServiceProvider provider)
{
if (provider == null)
throw new ArgumentNullException("provider");
//When activity is dropped inside multi instance container(replicator)
//We delay CorrelationService initialization to template initialization time.
if ((!this.IsDynamicActivity && !IsNestedUnderMultiInstanceContainer) || IsInitializingUnderMultiInstanceContainer)
{
Type type = this.InterfaceType;
string eventName = this.EventName;
IComparable queueName = null;
if (CorrelationResolver.IsInitializingMember(type, eventName, null))
queueName = new EventQueueName(type, eventName);
this.SetValue(QueueNameProperty, queueName);
CorrelationService.Initialize(provider, this, type, eventName, this.WorkflowInstanceId);
}
}
//Only MultiInstance container we have today is Replicator
bool IsInitializingUnderMultiInstanceContainer
{
get
{
CompositeActivity parent = this.Parent;
Activity templateChild = this;
while (parent != null)
{
//Need to look at attribute/interface
if (parent is ReplicatorActivity)
break;
//If we cross execution context then return false.
if (!parent.GetActivityByName(templateChild.QualifiedName).Equals(templateChild))
return false;
templateChild = parent;
parent = parent.Parent;
}
if (parent != null)
return !parent.GetActivityByName(templateChild.QualifiedName).Equals(templateChild);
return false;
}
}
bool IsNestedUnderMultiInstanceContainer
{
get
{
CompositeActivity parent = this.Parent;
while (parent != null)
{
//Need to look at attribute/interface
if (parent is ReplicatorActivity)
return true;
parent = parent.Parent;
}
return false;
}
}
protected virtual void OnInvoked(EventArgs e)
{
}
#region Execute/Cancel
protected sealed override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext)
{
if (executionContext == null)
throw new ArgumentNullException("executionContext");
object[] args = null;
ActivityExecutionStatus status = InboundActivityHelper.ExecuteForActivity(this, executionContext, this.InterfaceType, this.EventName, out args);
if (status == ActivityExecutionStatus.Closed)
{
RaiseEvent(args);
UnsubscribeForActivity(executionContext);
executionContext.CloseActivity();
return status;
}
// cannot resolve queue name or message not available
// hence subscribe for message arrival
if (!this.ActivitySubscribed)
{
this.ActivitySubscribed = CorrelationService.Subscribe(executionContext, this, this.InterfaceType, this.EventName, this, this.WorkflowInstanceId);
}
return ActivityExecutionStatus.Executing;
}
protected sealed override ActivityExecutionStatus HandleFault(ActivityExecutionContext executionContext, Exception exception)
{
if (executionContext == null)
throw new ArgumentNullException("executionContext");
if (exception == null)
throw new ArgumentNullException("exception");
ActivityExecutionStatus newStatus = this.Cancel(executionContext);
if (newStatus == ActivityExecutionStatus.Canceling)
return ActivityExecutionStatus.Faulting;
return newStatus;
}
protected sealed override ActivityExecutionStatus Cancel(ActivityExecutionContext executionContext)
{
if (executionContext == null)
throw new ArgumentNullException("executionContext");
UnsubscribeForActivity(executionContext);
return ActivityExecutionStatus.Closed;
}
protected override void OnClosed(IServiceProvider provider)
{
base.RemoveProperty(HandleExternalEventActivity.ActivitySubscribedProperty);
}
private void UnsubscribeForActivity(ActivityExecutionContext context)
{
if (this.ActivitySubscribed)
{
CorrelationService.Unsubscribe(context, this, this.InterfaceType, this.EventName, this);
this.ActivitySubscribed = false;
}
}
void IActivityEventListener<QueueEventArgs>.OnEvent(object sender, QueueEventArgs e)
{
ActivityExecutionContext context = (ActivityExecutionContext)sender;
HandleExternalEventActivity activity = context.Activity as HandleExternalEventActivity;
// if activity is not scheduled for execution do not dequeue the message
if (activity.ExecutionStatus != ActivityExecutionStatus.Executing) return;
object[] args = null;
ActivityExecutionStatus status = InboundActivityHelper.ExecuteForActivity(this, context, this.InterfaceType, this.EventName, out args);
if (status == ActivityExecutionStatus.Closed)
{
RaiseEvent(args);
UnsubscribeForActivity(context);
context.CloseActivity();
}
}
private void RaiseEvent(object[] args)
{
if (args != null)
{
ExternalDataEventArgs extArgs = args[1] as ExternalDataEventArgs;
OnInvoked(extArgs);
this.RaiseGenericEvent(InvokedEvent, args[0], extArgs);
}
else
{
OnInvoked(EventArgs.Empty);
this.RaiseGenericEvent(InvokedEvent, this, EventArgs.Empty);
}
}
#endregion
#region IEventActivity members
void IEventActivity.Subscribe(ActivityExecutionContext parentContext, IActivityEventListener<QueueEventArgs> parentEventHandler)
{
if (parentContext == null)
throw new ArgumentNullException("parentContext");
if (parentEventHandler == null)
throw new ArgumentNullException("parentEventHandler");
CorrelationService.Subscribe(parentContext, this, InterfaceType, EventName, parentEventHandler, this.WorkflowInstanceId);
}
void IEventActivity.Unsubscribe(ActivityExecutionContext parentContext, IActivityEventListener<QueueEventArgs> parentEventHandler)
{
if (parentContext == null)
throw new ArgumentNullException("parentContext");
if (parentEventHandler == null)
throw new ArgumentNullException("parentEventHandler");
CorrelationService.Unsubscribe(parentContext, this, InterfaceType, EventName, parentEventHandler);
}
IComparable IEventActivity.QueueName
{
get
{
IComparable queueName = (IComparable)this.GetValue(QueueNameProperty);
if (queueName != null)
return queueName;
else
return CorrelationService.ResolveQueueName(this, InterfaceType, EventName);
}
}
#endregion
#region IDynamicPropertyTypeProvider
Type IDynamicPropertyTypeProvider.GetPropertyType(IServiceProvider serviceProvider, string propertyName)
{
if (propertyName == null)
throw new ArgumentNullException("propertyName");
Dictionary<string, object> parameters = new Dictionary<string, object>();
this.GetParameterPropertyDescriptors(parameters);
if (parameters.ContainsKey(propertyName))
{
ParameterInfoBasedPropertyDescriptor descriptor = parameters[propertyName] as ParameterInfoBasedPropertyDescriptor;
if (descriptor != null)
return descriptor.ParameterType;
}
return null;
}
AccessTypes IDynamicPropertyTypeProvider.GetAccessType(IServiceProvider serviceProvider, string propertyName)
{
if (propertyName == null)
throw new ArgumentNullException("propertyName");
return AccessTypes.Read;
}
internal void GetParameterPropertyDescriptors(IDictionary properties)
{
if (((IComponent)this).Site == null)
return;
ITypeProvider typeProvider = (ITypeProvider)((IComponent)this).Site.GetService(typeof(ITypeProvider));
if (typeProvider == null)
throw new InvalidOperationException(SR.GetString(SR.General_MissingService, typeof(ITypeProvider).FullName));
Type type = this.InterfaceType;
if (type == null)
return;
if (this.GetType() != typeof(HandleExternalEventActivity))
return; // if custom activity do not add parameter binding
EventInfo eventInfo = type.GetEvent(this.EventName);
if (eventInfo != null)
{
Type delegateType = TypeProvider.GetEventHandlerType(eventInfo);
if (delegateType != null)
{
MethodInfo method = delegateType.GetMethod("Invoke");
ArrayList paramInfo = new ArrayList();
if (method != null)
{
paramInfo.AddRange(method.GetParameters());
if (!(method.ReturnType == typeof(void)))
paramInfo.Add(method.ReturnParameter);
}
foreach (ParameterInfo param in paramInfo)
{
PropertyDescriptor prop = new ParameterInfoBasedPropertyDescriptor(typeof(HandleExternalEventActivity), param, true, DesignOnlyAttribute.Yes);
properties[prop.Name] = prop;
}
}
}
}
#endregion
}
[Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public class HandleExternalEventActivityValidator : ActivityValidator
{
public override ValidationErrorCollection Validate(ValidationManager manager, object obj)
{
HandleExternalEventActivity eventSink = obj as HandleExternalEventActivity;
if (eventSink == null)
throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(HandleExternalEventActivity).FullName), "obj");
ValidationErrorCollection validationErrors = base.Validate(manager, obj);
validationErrors.AddRange(CorrelationSetsValidator.Validate(manager, obj));
validationErrors.AddRange(ParameterBindingValidator.Validate(manager, obj));
return validationErrors;
}
}
internal class ExternalDataExchangeInterfaceTypeFilterProvider : ITypeFilterProvider
{
private IServiceProvider serviceProvider;
public ExternalDataExchangeInterfaceTypeFilterProvider(IServiceProvider serviceProvider)
{
this.serviceProvider = serviceProvider;
}
public bool CanFilterType(Type type, bool throwOnError)
{
if (type.IsInterface)
{
object[] dsAttribs = type.GetCustomAttributes(typeof(ExternalDataExchangeAttribute), false);
if (dsAttribs.Length != 0)
return true;
else if (throwOnError)
throw new Exception(SR.GetString(SR.Error_InterfaceTypeNeedsExternalDataExchangeAttribute, "InterfaceType"));
}
/* else
{
Type[] types = type.GetNestedTypes();
foreach (Type nestedType in types)
{
object[] dsAttribs = nestedType.GetCustomAttributes(typeof(ExternalDataExchangeAttribute), false);
if (dsAttribs.Length != 0)
return true;
}
}*/
if (throwOnError)
throw new Exception(SR.GetString(SR.Error_InterfaceTypeNotInterface, "InterfaceType"));
return false;
}
public string FilterDescription
{
get
{
return SR.GetString(SR.ShowingExternalDataExchangeService);
}
}
}
}
|