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 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
|
#region Imports
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Collections.ObjectModel;
using System.Configuration;
using System.Reflection;
using System.Threading;
using System.Globalization;
using System.IO;
using System.Workflow.Runtime.Hosting;
using System.Workflow.Runtime.Configuration;
using System.Workflow.ComponentModel;
using System.Workflow.Runtime.Tracking;
using System.Workflow.ComponentModel.Compiler;
using System.Xml;
using System.Workflow.Runtime.DebugEngine;
using System.Workflow.ComponentModel.Serialization;
using System.ComponentModel.Design;
using System.ComponentModel.Design.Serialization;
#endregion
namespace System.Workflow.Runtime
{
#region Class WorkflowRuntimeEventArgs
[Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public sealed class WorkflowRuntimeEventArgs : EventArgs
{
private bool _isStarted;
internal WorkflowRuntimeEventArgs(bool isStarted)
{
_isStarted = isStarted;
}
public bool IsStarted { get { return _isStarted; } }
}
#endregion
internal class FanOutOnKeyDictionary<K, V> : IEnumerable<Dictionary<K, V>>
{
Dictionary<int, Dictionary<K, V>> dictionaryDictionary;
public FanOutOnKeyDictionary(int fanDegree)
{
dictionaryDictionary = new Dictionary<int, Dictionary<K, V>>(fanDegree);
for (int i = 0; i < fanDegree; ++i)
{
dictionaryDictionary.Add(i, new Dictionary<K, V>());
}
}
public Dictionary<K, V> this[K key]
{
get
{
return dictionaryDictionary[Math.Abs(key.GetHashCode() % dictionaryDictionary.Count)];
}
}
public bool SafeTryGetValue(K key, out V value)
{
Dictionary<K, V> dict = this[key];
lock (dict)
{
return dict.TryGetValue(key, out value);
}
}
#region IEnumerable<Dictionary<K,V>> Members
public IEnumerator<Dictionary<K, V>> GetEnumerator()
{
return dictionaryDictionary.Values.GetEnumerator();
}
#endregion
#region IEnumerable Members
IEnumerator IEnumerable.GetEnumerator()
{
return dictionaryDictionary.Values.GetEnumerator();
}
#endregion
}
[Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public class WorkflowRuntime : IServiceProvider, IDisposable
{
#region Private members
internal const string DefaultName = "WorkflowRuntime";
// Instances aggregation
private FanOutOnKeyDictionary<Guid, WorkflowExecutor> workflowExecutors;
private WorkflowDefinitionDispenser _workflowDefinitionDispenser;
private PerformanceCounterManager _performanceCounterManager;
private bool _disposed = false;
//This is Instance Specific Flag to mark the given instance of
//Instance Service is started or not.
private bool isInstanceStarted;
private DebugController debugController;
private object _servicesLock = new object(); // protects integrity or the services collection
private object _startStopLock = new object(); // serializes calls to start and stop
private Guid _uid = Guid.NewGuid();
private BooleanSwitch disableWorkflowDebugging = new BooleanSwitch("DisableWorkflowDebugging", "Disables workflow debugging in host");
private TrackingListenerFactory _trackingFactory = new TrackingListenerFactory();
private static Dictionary<Guid, WeakReference> _runtimes = new Dictionary<Guid, WeakReference>();
private static object _runtimesLock = new object(); // protects the collection of runtime objects
#endregion
#region Constructors and Configure methods
static WorkflowRuntime()
{
// listen to activity definition resolve events
Activity.ActivityResolve += OnActivityDefinitionResolve;
Activity.WorkflowChangeActionsResolve += OnWorkflowChangeActionsResolve;
try
{
using (TelemetryEventSource eventSource = new TelemetryEventSource())
{
eventSource.V1Runtime();
}
}
catch
{
}
}
public WorkflowRuntime()
{
this.PrivateInitialize(null);
}
public WorkflowRuntime(string configSectionName)
{
if (configSectionName == null)
throw new ArgumentNullException("configSectionName");
WorkflowRuntimeSection settings = ConfigurationManager.GetSection(configSectionName) as WorkflowRuntimeSection;
if (settings == null)
throw new ArgumentException(String.Format(CultureInfo.CurrentCulture,
ExecutionStringManager.ConfigurationSectionNotFound, configSectionName), "configSectionName");
this.PrivateInitialize(settings);
}
/// <summary> Creates a WorkflowRuntime from settings. </summary>
/// <param name="configuration"> The settings for this container </param>
public WorkflowRuntime(WorkflowRuntimeSection settings)
{
if (settings == null)
throw new ArgumentNullException("settings");
this.PrivateInitialize(settings);
}
private void VerifyInternalState()
{
if (_disposed)
throw new ObjectDisposedException("WorkflowRuntime");
}
/// <summary>Initializes this container with the provided settings.</summary>
/// <param name="settings"></param>
private void PrivateInitialize(WorkflowRuntimeSection settings)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime: Created WorkflowRuntime {0}", _uid);
_workflowDefinitionDispenser = new WorkflowDefinitionDispenser(this, (settings != null) ? settings.ValidateOnCreate : true, (settings != null) ? settings.WorkflowDefinitionCacheCapacity : 0);
workflowExecutors = new FanOutOnKeyDictionary<Guid, WorkflowExecutor>((Environment.ProcessorCount * 4) - 1);
_name = DefaultName;
if (settings == null || settings.EnablePerformanceCounters) // on by default
this.PerformanceCounterManager = new PerformanceCounterManager();
if (settings != null)
{
_name = settings.Name;
_configurationParameters = settings.CommonParameters;
foreach (WorkflowRuntimeServiceElement service in settings.Services)
{
AddServiceFromSettings(service);
}
}
// create controller
if (!disableWorkflowDebugging.Enabled)
{
DebugController.InitializeProcessSecurity();
this.debugController = new DebugController(this, _name);
}
lock (_runtimesLock)
{
if (!_runtimes.ContainsKey(_uid))
_runtimes.Add(_uid, new WeakReference(this));
}
}
public void Dispose()
{
lock (_startStopLock)
{
if (!_disposed)
{
if (this.debugController != null)
{
this.debugController.Close();
}
_workflowDefinitionDispenser.Dispose();
_startedServices = false;
_disposed = true;
}
}
lock (_runtimesLock)
{
//
// Clean up our weakref entries
if (_runtimes.ContainsKey(_uid))
_runtimes.Remove(_uid);
}
}
internal bool IsZombie
{
get
{
return this._disposed;
}
}
#endregion
#region Workflow accessor methods
public WorkflowInstance GetWorkflow(Guid instanceId)
{
if (instanceId == Guid.Empty)
throw new ArgumentException(String.Format(CultureInfo.CurrentCulture, ExecutionStringManager.CantBeEmptyGuid, "instanceId"));
VerifyInternalState();
if (!IsStarted)
throw new InvalidOperationException(ExecutionStringManager.WorkflowRuntimeNotStarted);
WorkflowExecutor executor = Load(instanceId, null, null);
return executor.WorkflowInstance;
}
public ReadOnlyCollection<WorkflowInstance> GetLoadedWorkflows()
{
VerifyInternalState();
List<WorkflowInstance> lSchedules = new List<WorkflowInstance>();
foreach (WorkflowExecutor executor in GetWorkflowExecutors())
{
lSchedules.Add(executor.WorkflowInstance);
}
return lSchedules.AsReadOnly();
}
internal WorkflowDefinitionDispenser DefinitionDispenser
{
get
{
return _workflowDefinitionDispenser;
}
}
#endregion
#region Service accessors
internal List<TrackingService> TrackingServices
{
get
{
List<TrackingService> retval = new List<TrackingService>();
foreach (TrackingService trackingService in GetAllServices(typeof(TrackingService)))
{
retval.Add(trackingService);
}
return retval;
}
}
internal WorkflowSchedulerService SchedulerService
{
get
{
return GetService<WorkflowSchedulerService>();
}
}
internal WorkflowCommitWorkBatchService TransactionService
{
get
{
return (WorkflowCommitWorkBatchService)GetService(typeof(WorkflowCommitWorkBatchService));
}
}
internal WorkflowPersistenceService WorkflowPersistenceService
{
get
{
return (WorkflowPersistenceService)GetService(typeof(WorkflowPersistenceService));
}
}
internal System.Workflow.Runtime.PerformanceCounterManager PerformanceCounterManager
{
get
{
return _performanceCounterManager;
}
private set
{
_performanceCounterManager = value;
}
}
internal TrackingListenerFactory TrackingListenerFactory
{
get
{
return _trackingFactory;
}
}
#endregion
#region Workflow creation methods
internal Activity GetWorkflowDefinition(Type workflowType)
{
if (workflowType == null)
throw new ArgumentNullException("workflowType");
VerifyInternalState();
return _workflowDefinitionDispenser.GetRootActivity(workflowType, false, true);
}
public WorkflowInstance CreateWorkflow(Type workflowType)
{
if (workflowType == null)
throw new ArgumentNullException("workflowType");
if (!typeof(Activity).IsAssignableFrom(workflowType))
throw new ArgumentException(ExecutionStringManager.TypeMustImplementRootActivity, "workflowType");
VerifyInternalState();
return InternalCreateWorkflow(new CreationContext(workflowType, null, null, null), Guid.NewGuid());
}
public WorkflowInstance CreateWorkflow(Type workflowType, Dictionary<string, object> namedArgumentValues)
{
return CreateWorkflow(workflowType, namedArgumentValues, Guid.NewGuid());
}
public WorkflowInstance CreateWorkflow(XmlReader workflowDefinitionReader)
{
if (workflowDefinitionReader == null)
throw new ArgumentNullException("workflowDefinitionReader");
VerifyInternalState();
return CreateWorkflow(workflowDefinitionReader, null, null);
}
public WorkflowInstance CreateWorkflow(XmlReader workflowDefinitionReader, XmlReader rulesReader, Dictionary<string, object> namedArgumentValues)
{
return CreateWorkflow(workflowDefinitionReader, rulesReader, namedArgumentValues, Guid.NewGuid());
}
public WorkflowInstance CreateWorkflow(Type workflowType, Dictionary<string, object> namedArgumentValues, Guid instanceId)
{
if (workflowType == null)
throw new ArgumentNullException("workflowType");
if (!typeof(Activity).IsAssignableFrom(workflowType))
throw new ArgumentException(ExecutionStringManager.TypeMustImplementRootActivity, "workflowType");
VerifyInternalState();
return InternalCreateWorkflow(new CreationContext(workflowType, null, null, namedArgumentValues), instanceId);
}
public WorkflowInstance CreateWorkflow(XmlReader workflowDefinitionReader, XmlReader rulesReader, Dictionary<string, object> namedArgumentValues, Guid instanceId)
{
if (workflowDefinitionReader == null)
throw new ArgumentNullException("workflowDefinitionReader");
VerifyInternalState();
CreationContext context = new CreationContext(workflowDefinitionReader, rulesReader, namedArgumentValues);
return InternalCreateWorkflow(context, instanceId);
}
internal WorkflowInstance InternalCreateWorkflow(CreationContext context, Guid instanceId)
{
using (new WorkflowTraceTransfer(instanceId))
{
VerifyInternalState();
if (!IsStarted)
this.StartRuntime();
WorkflowExecutor executor = GetWorkflowExecutor(instanceId, context);
if (!context.Created)
{
throw new InvalidOperationException(ExecutionStringManager.WorkflowWithIdAlreadyExists);
}
return executor.WorkflowInstance;
}
}
internal sealed class WorkflowExecutorInitializingEventArgs : EventArgs
{
private bool _loading = false;
internal WorkflowExecutorInitializingEventArgs(bool loading)
{
_loading = loading;
}
internal bool Loading
{
get { return _loading; }
}
}
// register for idle events here
/// <summary>
/// Raised whenever a WorkflowExecutor is constructed. This signals either a new instance
/// or a loading (args) and gives listening components a chance to set up subscriptions.
/// </summary>
internal event EventHandler<WorkflowExecutorInitializingEventArgs> WorkflowExecutorInitializing;
public event EventHandler<WorkflowEventArgs> WorkflowIdled;
public event EventHandler<WorkflowEventArgs> WorkflowCreated;
public event EventHandler<WorkflowEventArgs> WorkflowStarted;
public event EventHandler<WorkflowEventArgs> WorkflowLoaded;
public event EventHandler<WorkflowEventArgs> WorkflowUnloaded;
public event EventHandler<WorkflowCompletedEventArgs> WorkflowCompleted;
public event EventHandler<WorkflowTerminatedEventArgs> WorkflowTerminated;
public event EventHandler<WorkflowEventArgs> WorkflowAborted;
public event EventHandler<WorkflowSuspendedEventArgs> WorkflowSuspended;
public event EventHandler<WorkflowEventArgs> WorkflowPersisted;
public event EventHandler<WorkflowEventArgs> WorkflowResumed;
internal event EventHandler<WorkflowEventArgs> WorkflowDynamicallyChanged;
public event EventHandler<ServicesExceptionNotHandledEventArgs> ServicesExceptionNotHandled;
public event EventHandler<WorkflowRuntimeEventArgs> Stopped;
public event EventHandler<WorkflowRuntimeEventArgs> Started;
internal WorkflowExecutor Load(WorkflowInstance instance)
{
return Load(instance.InstanceId, null, instance);
}
internal WorkflowExecutor Load(Guid key, CreationContext context, WorkflowInstance workflowInstance)
{
WorkflowExecutor executor;
Dictionary<Guid, WorkflowExecutor> executors = workflowExecutors[key];
lock (executors)
{
if (!IsStarted)
throw new InvalidOperationException(ExecutionStringManager.WorkflowRuntimeNotStarted);
if (executors.TryGetValue(key, out executor))
{
if (executor.IsInstanceValid)
{
return executor;
}
}
// If we get here, 'executor' is either null or unusable.
// Before grabbing the lock, allocate a resource as we
// may need to insert a new resource.
executor = new WorkflowExecutor(key);
if (workflowInstance == null)
workflowInstance = new WorkflowInstance(key, this);
InitializeExecutor(key, context, executor, workflowInstance);
try
{
// If we get here, 'executor' is either null or has not been replaced.
// If it has not been replaced, we know that it is unusable
WorkflowTrace.Host.TraceInformation("WorkflowRuntime:: replacing unusable executor for key {0} with new one (hc: {1})", key, executor.GetHashCode());
executors[key] = executor;
RegisterExecutor(context != null && context.IsActivation, executor);
}
catch
{
WorkflowExecutor currentRes;
if (executors.TryGetValue(key, out currentRes))
{
if (Object.Equals(executor, currentRes))
{
executors.Remove(key);
}
}
throw;
}
}
executor.Registered(context != null && context.IsActivation);
return executor;
}
// this should be called under scheduler lock
// todo assert this condition
internal void ReplaceWorkflowExecutor(Guid instanceId, WorkflowExecutor oldWorkflowExecutor, WorkflowExecutor newWorkflowExecutor)
{
Dictionary<Guid, WorkflowExecutor> executors = workflowExecutors[instanceId];
lock (executors)
{
oldWorkflowExecutor.IsInstanceValid = false;
WorkflowTrace.Host.TraceInformation("WorkflowRuntime:: replacing old executor for key {0} with new one", instanceId);
executors[instanceId] = newWorkflowExecutor;
}
}
private Activity InitializeExecutor(Guid instanceId, CreationContext context, WorkflowExecutor executor, WorkflowInstance workflowInstance)
{
Activity rootActivity = null;
if (context != null && context.IsActivation)
{
Activity workflowDefinition = null;
string xomlText = null;
string rulesText = null;
if (context.Type != null)
{
workflowDefinition = _workflowDefinitionDispenser.GetRootActivity(context.Type, false, true);
//spawn a new instance
rootActivity = _workflowDefinitionDispenser.GetRootActivity(context.Type, true, false);
}
else if (context.XomlReader != null)
{
try
{
context.XomlReader.MoveToContent();
while (!context.XomlReader.EOF && !context.XomlReader.IsStartElement())
context.XomlReader.Read();
xomlText = context.XomlReader.ReadOuterXml();
if (context.RulesReader != null)
{
context.RulesReader.MoveToContent();
while (!context.RulesReader.EOF && !context.RulesReader.IsStartElement())
context.RulesReader.Read();
rulesText = context.RulesReader.ReadOuterXml();
}
}
catch (Exception e)
{
throw new ArgumentException(ExecutionStringManager.InvalidXAML, e);
}
if (!string.IsNullOrEmpty(xomlText))
{
workflowDefinition = _workflowDefinitionDispenser.GetRootActivity(xomlText, rulesText, false, true);
//spawn a new instance
rootActivity = _workflowDefinitionDispenser.GetRootActivity(xomlText, rulesText, true, false);
}
else
throw new ArgumentException(ExecutionStringManager.InvalidXAML);
}
rootActivity.SetValue(Activity.WorkflowDefinitionProperty, workflowDefinition);
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "Creating instance " + instanceId.ToString());
context.Created = true;
executor.Initialize(rootActivity, context.InvokerExecutor, context.InvokeActivityID, instanceId, context.Args, workflowInstance);
}
else
{
if (this.WorkflowPersistenceService == null)
{
string errMsg = String.Format(CultureInfo.CurrentCulture, ExecutionStringManager.MissingPersistenceService, instanceId);
WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, errMsg);
throw new InvalidOperationException(errMsg);
}
// get the state from the persistenceService
using (RuntimeEnvironment runtimeEnv = new RuntimeEnvironment(this))
{
rootActivity = this.WorkflowPersistenceService.LoadWorkflowInstanceState(instanceId);
}
if (rootActivity == null)
{
throw new InvalidOperationException(string.Format(Thread.CurrentThread.CurrentCulture, ExecutionStringManager.InstanceNotFound, instanceId));
}
executor.Reload(rootActivity, workflowInstance);
}
return rootActivity;
}
private void RegisterExecutor(bool isActivation, WorkflowExecutor executor)
{
if (isActivation)
{
executor.RegisterWithRuntime(this);
}
else
{
executor.ReRegisterWithRuntime(this);
}
}
/// <summary>
/// On receipt of this call unload the instance
/// This will be invoked by the runtime executor
/// </summary>
/// <param name="instanceId"></param>
internal void OnIdle(WorkflowExecutor executor)
{
// raise the OnIdle event , typically handled
// by the hosting environment
try
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "Received OnIdle Event for instance, {0}", executor.InstanceId);
WorkflowInstance scheduleInstance = executor.WorkflowInstance;
if (WorkflowIdled != null)
{
WorkflowIdled(this, new WorkflowEventArgs(scheduleInstance));
}
}
catch (Exception)
{
//
WorkflowTrace.Host.TraceEvent(TraceEventType.Warning, 0, "OnIdle Event for instance, {0} threw an exception", executor.InstanceId);
throw;
}
}
private void _unRegister(WorkflowExecutor executor)
{
TryRemoveWorkflowExecutor(executor.InstanceId, executor);
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime::_removeInstance, instance:{0}, hc:{1}", executor.InstanceId, executor.GetHashCode());
// be sure to flush all traces
WorkflowTrace.Runtime.Flush();
WorkflowTrace.Tracking.Flush();
WorkflowTrace.Host.Flush();
}
private WorkflowExecutor GetWorkflowExecutor(Guid instanceId, CreationContext context)
{
try
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime dispensing resource, instanceId: {0}", instanceId);
WorkflowExecutor executor = this.Load(instanceId, context, null);
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime dispensing resource instanceId: {0}, hc: {1}", instanceId, executor.GetHashCode());
return executor;
}
catch (OutOfMemoryException)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Error, 0, "WorkflowRuntime dispensing resource, can't create service due to OOM!(1), instance, {0}", instanceId);
throw;
}
catch (Exception e)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Error, 0, "WorkflowRuntime dispensing resource, can't create service due to unexpected exception!(2), instance, {0}, exception, {1}", instanceId, e);
throw;
}
}
#endregion
#region Workflow event handlers
internal void OnScheduleCompleted(WorkflowExecutor schedule, WorkflowCompletedEventArgs args)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:ScheduleCompleted event raised for instance Id {0}", schedule.InstanceId);
Debug.Assert(schedule != null);
try
{
//Notify Subscribers
if (WorkflowCompleted != null) WorkflowCompleted(this, args);
}
catch (Exception)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Error, 0, "WorkflowRuntime:OnScheduleCompleted Event threw an exception.");
throw;
}
finally
{
_unRegister(schedule);
}
}
internal void OnScheduleSuspended(WorkflowExecutor schedule, WorkflowSuspendedEventArgs args)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:ScheduleSuspension event raised for instance Id {0}", schedule.InstanceId);
try
{
if (WorkflowSuspended != null) WorkflowSuspended(this, args);
}
catch (Exception)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Error, 0, "WorkflowRuntime:OnScheduleSuspended Event threw an exception.");
throw;
}
}
internal void OnScheduleTerminated(WorkflowExecutor schedule, WorkflowTerminatedEventArgs args)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:ScheduleTermination event raised for instance Id {0}", schedule.InstanceId);
try
{
if (WorkflowTerminated != null) WorkflowTerminated(this, args);
}
catch (Exception)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Error, 0, "WorkflowRuntime:OnScheduleTerminated Event threw an exception.");
throw;
}
finally
{
_unRegister(schedule);
}
}
internal void OnScheduleLoaded(WorkflowExecutor schedule)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:ScheduleLoaded event raised for instance Id {0}", schedule.InstanceId);
_OnServiceEvent(schedule, false, WorkflowLoaded);
}
internal void OnScheduleAborted(WorkflowExecutor schedule)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:ScheduleAborted event raised for instance Id {0}", schedule.InstanceId);
_OnServiceEvent(schedule, true, WorkflowAborted);
}
internal void OnScheduleUnloaded(WorkflowExecutor schedule)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:ScheduleUnloaded event raised for instance Id {0}", schedule.InstanceId);
_OnServiceEvent(schedule, true, WorkflowUnloaded);
}
internal void OnScheduleResumed(WorkflowExecutor schedule)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:ScheduleResumed event raised for instance Id {0}", schedule.InstanceId);
_OnServiceEvent(schedule, false, WorkflowResumed);
}
internal void OnScheduleDynamicallyChanged(WorkflowExecutor schedule)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:ScheduleDynamicallyChanged event raised for instance Id {0}", schedule.InstanceId);
_OnServiceEvent(schedule, false, WorkflowDynamicallyChanged);
}
internal void OnSchedulePersisted(WorkflowExecutor schedule)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime:SchedulePersisted event raised for instance Id {0}", schedule.InstanceId);
_OnServiceEvent(schedule, false, WorkflowPersisted);
}
private void _OnServiceEvent(WorkflowExecutor sched, bool unregister, EventHandler<WorkflowEventArgs> handler)
{
Debug.Assert(sched != null);
try
{
WorkflowEventArgs args = new WorkflowEventArgs(sched.WorkflowInstance);
//Notify Subscribers
if (handler != null) handler(this, args);
}
catch (Exception)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Error, 0, "WorkflowRuntime:OnService Event threw an exception.");
throw;
}
finally
{
if (unregister)
{
_unRegister(sched);
}
}
}
internal void RaiseServicesExceptionNotHandledEvent(Exception exception, Guid instanceId)
{
VerifyInternalState();
WorkflowTrace.Host.TraceEvent(TraceEventType.Critical, 0, "WorkflowRuntime:ServicesExceptionNotHandled event raised for instance Id {0} {1}", instanceId, exception.ToString());
EventHandler<ServicesExceptionNotHandledEventArgs> handler = ServicesExceptionNotHandled;
if (handler != null)
handler(this, new ServicesExceptionNotHandledEventArgs(exception, instanceId));
}
#endregion
#region More service accessors
private Dictionary<Type, List<object>> _services = new Dictionary<Type, List<object>>();
private string _name;
private bool _startedServices;
private NameValueConfigurationCollection _configurationParameters;
private Dictionary<string, Type> _trackingServiceReplacement;
/// <summary> The name of this container. </summary>
public string Name
{
get
{
return _name;
}
set
{
lock (_startStopLock)
{
if (_startedServices)
throw new InvalidOperationException(ExecutionStringManager.CantChangeNameAfterStart);
VerifyInternalState();
_name = value;
}
}
}
/// <summary>
/// Returns the configuration parameters that can be shared by all services
/// </summary>
internal NameValueConfigurationCollection CommonParameters
{
get
{
return _configurationParameters;
}
}
// A previous tracking service whose type has the string as its AssemblyQualifiedName
// will be replaced by the current tracking service of the Type. This dictionary is
// neede in order to replace the previous tracking service used by a persisted workflow
// because what is persisted is the one-way hashed string of that AssemblyQualifiedName.
internal Dictionary<string, Type> TrackingServiceReplacement
{
get
{
return _trackingServiceReplacement;
}
}
/// <summary> Adds a service to this container. </summary>
/// <param name="service"> The service to add </param>
/// <exception cref="InvalidOperationException"/>
public void AddService(object service)
{
if (service == null)
throw new ArgumentNullException("service");
VerifyInternalState();
using (new WorkflowRuntime.EventContext())
{
lock (_startStopLock)
{
AddServiceImpl(service);
}
}
}
private void AddServiceImpl(object service)
{
//ASSERT: _startStopLock is held
lock (_servicesLock)
{
if (GetAllServices(service.GetType()).Contains(service))
throw new InvalidOperationException(ExecutionStringManager.CantAddServiceTwice);
if (_startedServices && IsCoreService(service))
throw new InvalidOperationException(ExecutionStringManager.CantChangeImmutableContainer);
Type basetype = service.GetType();
if (basetype.IsSubclassOf(typeof(TrackingService)))
{
AddTrackingServiceReplacementInfo(basetype);
}
foreach (Type t in basetype.GetInterfaces())
{
List<object> al;
if (_services.ContainsKey(t))
{
al = _services[t];
}
else
{
al = new List<object>();
_services.Add(t, al);
}
al.Add(service);
}
while (basetype != null)
{
List<object> al = null;
if (_services.ContainsKey(basetype))
{
al = _services[basetype];
}
else
{
al = new List<object>();
_services.Add(basetype, al);
}
al.Add(service);
basetype = basetype.BaseType;
}
}
WorkflowRuntimeService wrs = service as WorkflowRuntimeService;
if (wrs != null)
{
wrs.SetRuntime(this);
if (_startedServices)
wrs.Start();
}
}
/// <summary> Removes a service. </summary>
/// <param name="service"> The service to remove </param>
public void RemoveService(object service)
{
if (service == null)
throw new ArgumentNullException("service");
VerifyInternalState();
using (new WorkflowRuntime.EventContext())
{
lock (_startStopLock)
{
lock (_servicesLock)
{
if (_startedServices && IsCoreService(service))
throw new InvalidOperationException(ExecutionStringManager.CantChangeImmutableContainer);
if (!GetAllServices(service.GetType()).Contains(service))
throw new InvalidOperationException(ExecutionStringManager.CantRemoveServiceNotContained);
Type type = service.GetType();
if (type.IsSubclassOf(typeof(TrackingService)))
{
RemoveTrackingServiceReplacementInfo(type);
}
foreach (List<object> al in _services.Values)
{
if (al.Contains(service))
{
al.Remove(service);
}
}
}
WorkflowRuntimeService wrs = service as WorkflowRuntimeService;
if (wrs != null)
{
if (_startedServices)
wrs.Stop();
wrs.SetRuntime(null);
}
}
}
}
private void AddTrackingServiceReplacementInfo(Type type)
{
Debug.Assert(type.IsSubclassOf(typeof(TrackingService)), "Argument should be a subtype of TrackingService");
object[] attributes = type.GetCustomAttributes(typeof(PreviousTrackingServiceAttribute), true);
if (attributes != null && attributes.Length > 0)
{
foreach (object attribute in attributes)
{
if (_trackingServiceReplacement == null)
{
_trackingServiceReplacement = new Dictionary<string, Type>();
}
_trackingServiceReplacement.Add(((PreviousTrackingServiceAttribute)attribute).AssemblyQualifiedName, type);
}
}
}
private void RemoveTrackingServiceReplacementInfo(Type type)
{
Debug.Assert(type.IsSubclassOf(typeof(TrackingService)), "Argument should be a subtype of TrackingService");
object[] attributes = type.GetCustomAttributes(typeof(PreviousTrackingServiceAttribute), true);
if (attributes != null && attributes.Length > 0)
{
foreach (object attribute in attributes)
{
string previousTrackingService = ((PreviousTrackingServiceAttribute)attribute).AssemblyQualifiedName;
if (_trackingServiceReplacement.ContainsKey(previousTrackingService))
{
_trackingServiceReplacement.Remove(previousTrackingService);
}
}
}
}
private bool IsCoreService(object service)
{
return service is WorkflowSchedulerService
|| service is WorkflowPersistenceService
|| service is TrackingService
|| service is WorkflowCommitWorkBatchService
|| service is WorkflowLoaderService;
}
/// <summary> Returns a collection of all services that implement the give type. </summary>
/// <param name="serviceType"> The type to look for </param>
/// <returns> A collection of zero or more services </returns>
public ReadOnlyCollection<object> GetAllServices(Type serviceType)
{
if (serviceType == null)
throw new ArgumentNullException("serviceType");
VerifyInternalState();
lock (_servicesLock)
{
List<object> retval = new List<object>();
if (_services.ContainsKey(serviceType))
retval.AddRange(_services[serviceType]);
return new ReadOnlyCollection<object>(retval);
}
}
public T GetService<T>()
{
VerifyInternalState();
return (T)GetService(typeof(T));
}
public ReadOnlyCollection<T> GetAllServices<T>()
{
VerifyInternalState();
List<T> l = new List<T>();
foreach (T t in GetAllServices(typeof(T)))
l.Add(t);
return new ReadOnlyCollection<T>(l);
}
/// <summary> Looks for a service of the given type. </summary>
/// <param name="serviceType"> The type of object to find </param>
/// <returns> An object of the requested type, or null</returns>
public object GetService(Type serviceType)
{
if (serviceType == null)
throw new ArgumentNullException("serviceType");
VerifyInternalState();
lock (_servicesLock)
{
object retval = null;
if (_services.ContainsKey(serviceType))
{
List<object> al = _services[serviceType];
if (al.Count > 1)
throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture,
ExecutionStringManager.MoreThanOneService, serviceType.ToString()));
if (al.Count == 1)
retval = al[0];
}
return retval;
}
}
#endregion
#region Other methods
/// <summary> Raises the Starting event </summary>
/// <remarks>
/// </remarks>
public void StartRuntime()
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime: Starting WorkflowRuntime {0}", _uid);
lock (_startStopLock)
{
VerifyInternalState();
if (!_startedServices)
{
if (GetAllServices(typeof(WorkflowCommitWorkBatchService)).Count == 0)
AddServiceImpl(new DefaultWorkflowCommitWorkBatchService());
if (GetAllServices(typeof(WorkflowSchedulerService)).Count == 0)
AddServiceImpl(new DefaultWorkflowSchedulerService());
if (GetAllServices(typeof(WorkflowLoaderService)).Count == 0)
AddServiceImpl(new DefaultWorkflowLoaderService());
if (GetAllServices(typeof(WorkflowCommitWorkBatchService)).Count != 1)
throw new InvalidOperationException(String.Format(
CultureInfo.CurrentCulture,
ExecutionStringManager.InvalidWorkflowRuntimeConfiguration,
typeof(WorkflowCommitWorkBatchService).Name));
if (GetAllServices(typeof(WorkflowSchedulerService)).Count != 1)
throw new InvalidOperationException(String.Format(
CultureInfo.CurrentCulture, ExecutionStringManager.InvalidWorkflowRuntimeConfiguration,
typeof(WorkflowSchedulerService).Name));
if (GetAllServices(typeof(WorkflowLoaderService)).Count != 1)
throw new InvalidOperationException(String.Format(
CultureInfo.CurrentCulture, ExecutionStringManager.InvalidWorkflowRuntimeConfiguration,
typeof(WorkflowLoaderService).Name));
if (GetAllServices(typeof(WorkflowPersistenceService)).Count > 1)
throw new InvalidOperationException(String.Format(
CultureInfo.CurrentCulture, ExecutionStringManager.InvalidWorkflowRuntimeConfiguration,
typeof(WorkflowPersistenceService).Name));
if (GetAllServices(typeof(WorkflowTimerService)).Count == 0)
{
AddServiceImpl(new WorkflowTimerService());
}
//Mark this instance has started
isInstanceStarted = true;
//Set up static tracking structures
_trackingFactory.Initialize(this);
if (this.PerformanceCounterManager != null)
{
this.PerformanceCounterManager.Initialize(this);
this.PerformanceCounterManager.SetInstanceName(this.Name);
}
foreach (WorkflowRuntimeService s in GetAllServices<WorkflowRuntimeService>())
{
s.Start();
}
_startedServices = true;
using (new WorkflowRuntime.EventContext())
{
EventHandler<WorkflowRuntimeEventArgs> ss = Started;
if (ss != null)
ss(this, new WorkflowRuntimeEventArgs(isInstanceStarted));
}
}
}
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime: Started WorkflowRuntime {0}", _uid);
}
void DynamicUpdateCommit(object sender, WorkflowExecutor.DynamicUpdateEventArgs e)
{
if (null == sender)
throw new ArgumentNullException("sender");
if (!typeof(WorkflowExecutor).IsInstanceOfType(sender))
throw new ArgumentException(String.Format(CultureInfo.CurrentCulture, ExecutionStringManager.InvalidArgumentType, "sender", typeof(WorkflowExecutor).ToString()));
WorkflowExecutor exec = (WorkflowExecutor)sender;
OnScheduleDynamicallyChanged(exec);
}
internal void WorkflowExecutorCreated(WorkflowExecutor workflowExecutor, bool loaded)
{
//
// Fire the event for all other components that need to register for notification of WorkflowExecutor events
EventHandler<WorkflowExecutorInitializingEventArgs> localEvent = WorkflowExecutorInitializing;
if (null != localEvent)
localEvent(workflowExecutor, new WorkflowExecutorInitializingEventArgs(loaded));
workflowExecutor.WorkflowExecutionEvent += new EventHandler<WorkflowExecutor.WorkflowExecutionEventArgs>(WorkflowExecutionEvent);
}
void WorkflowExecutionEvent(object sender, WorkflowExecutor.WorkflowExecutionEventArgs e)
{
if (null == sender)
throw new ArgumentNullException("sender");
if (!typeof(WorkflowExecutor).IsInstanceOfType(sender))
throw new ArgumentException("sender");
WorkflowExecutor exec = (WorkflowExecutor)sender;
switch (e.EventType)
{
case WorkflowEventInternal.Idle:
OnIdle(exec);
break;
case WorkflowEventInternal.Created:
if (WorkflowCreated != null)
WorkflowCreated(this, new WorkflowEventArgs(exec.WorkflowInstance));
break;
case WorkflowEventInternal.Started:
if (WorkflowStarted != null)
WorkflowStarted(this, new WorkflowEventArgs(exec.WorkflowInstance));
break;
case WorkflowEventInternal.Loaded:
OnScheduleLoaded(exec);
break;
case WorkflowEventInternal.Unloaded:
OnScheduleUnloaded(exec);
break;
case WorkflowEventInternal.Completed:
OnScheduleCompleted(exec, CreateCompletedEventArgs(exec));
break;
case WorkflowEventInternal.Terminated:
WorkflowExecutor.WorkflowExecutionTerminatedEventArgs args = (WorkflowExecutor.WorkflowExecutionTerminatedEventArgs)e;
if (null != args.Exception)
OnScheduleTerminated(exec, new WorkflowTerminatedEventArgs(exec.WorkflowInstance, args.Exception));
else
OnScheduleTerminated(exec, new WorkflowTerminatedEventArgs(exec.WorkflowInstance, args.Error));
break;
case WorkflowEventInternal.Aborted:
OnScheduleAborted(exec);
break;
case WorkflowEventInternal.Suspended:
WorkflowExecutor.WorkflowExecutionSuspendedEventArgs sargs = (WorkflowExecutor.WorkflowExecutionSuspendedEventArgs)e;
OnScheduleSuspended(exec, new WorkflowSuspendedEventArgs(exec.WorkflowInstance, sargs.Error));
break;
case WorkflowEventInternal.Persisted:
OnSchedulePersisted(exec);
break;
case WorkflowEventInternal.Resumed:
OnScheduleResumed(exec);
break;
case WorkflowEventInternal.DynamicChangeCommit:
DynamicUpdateCommit(exec, (WorkflowExecutor.DynamicUpdateEventArgs)e);
break;
default:
break;
}
}
private WorkflowCompletedEventArgs CreateCompletedEventArgs(WorkflowExecutor exec)
{
WorkflowCompletedEventArgs args = new WorkflowCompletedEventArgs(exec.WorkflowInstance, exec.WorkflowDefinition);
foreach (PropertyInfo property in _workflowDefinitionDispenser.GetOutputParameters(exec.RootActivity))
args.OutputParameters.Add(property.Name, property.GetValue(exec.RootActivity, null));
return args;
}
private void StopServices()
{
// Stop remaining services
foreach (WorkflowRuntimeService s in GetAllServices<WorkflowRuntimeService>())
{
s.Stop();
}
}
/// <summary> Fires the Stopping event </summary>
public void StopRuntime()
{
VerifyInternalState();
using (new WorkflowRuntime.EventContext())
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime: Stopping WorkflowRuntime {0}", _uid);
lock (_startStopLock)
{
if (_startedServices)
{
try
{
isInstanceStarted = false;
if (this.WorkflowPersistenceService != null)
{
//
// GetWorkflowExecutors() takes a lock on workflowExecutors
// and then returns a copy of the list. As long as GetWorkflowExecutors()
// returns a non empty/null list we'll attempt to unload what's in it.
IList<WorkflowExecutor> executors = GetWorkflowExecutors();
while ((null != executors) && (executors.Count > 0))
{
foreach (WorkflowExecutor executor in executors)
{
if (executor.IsInstanceValid)
{
try
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime: Calling Unload on instance {0} executor hc {1}", executor.InstanceIdString, executor.GetHashCode());
executor.Unload();
}
catch (ExecutorLocksHeldException)
{
//
// This exception means that an atomic scope is ongoing
// (we cannot unload/suspend during an atomic scope)
// This instance will still be in the GetWorkflowExecutors list
// so we'll attempt to unload it on the next outer loop
// Yes, we may loop indefinitely if an atomic tx is hung
// See WorkflowInstance.Unload for an example of retrying
// when this exception is thrown.
}
catch (InvalidOperationException)
{
if (executor.IsInstanceValid)
{
//
// Failed to stop, reset the flag
isInstanceStarted = true;
throw;
}
}
catch
{
//
// Failed to stop, reset the flag
isInstanceStarted = true;
throw;
}
}
}
//
// Check if anything was added to the main list
// while we were working on the copy.
// This happens if a executor reverts to a checkpoint.
// There is the potential to loop indefinitely if
// an instance continually reverts.
executors = GetWorkflowExecutors();
}
}
StopServices();
_startedServices = false;
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime: Stopped WorkflowRuntime {0}", _uid);
//
// Clean up tracking
_trackingFactory.Uninitialize(this);
if (this.PerformanceCounterManager != null)
{
this.PerformanceCounterManager.Uninitialize(this);
}
EventHandler<WorkflowRuntimeEventArgs> handler = Stopped;
if (handler != null)
handler(this, new WorkflowRuntimeEventArgs(isInstanceStarted));
}
catch (Exception)
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Error, 0, "WorkflowRuntime::StartUnload Unexpected Exception");
throw;
}
finally
{
isInstanceStarted = false;
}
}
}
}
}
/// <summary> True if services have been started and not stopped </summary>
public bool IsStarted
{
get
{
return _startedServices;
}
}
private static Activity OnActivityDefinitionResolve(object sender, ActivityResolveEventArgs e)
{
WorkflowRuntime runtime = e.ServiceProvider as WorkflowRuntime;
if (runtime == null)
runtime = RuntimeEnvironment.CurrentRuntime;
Debug.Assert(runtime != null);
if (runtime != null)
{
if (e.Type != null)
return runtime._workflowDefinitionDispenser.GetRootActivity(e.Type, e.CreateNewDefinition, e.InitializeForRuntime);
else
return runtime._workflowDefinitionDispenser.GetRootActivity(e.WorkflowMarkup, e.RulesMarkup, e.CreateNewDefinition, e.InitializeForRuntime);
}
return null;
}
internal static TypeProvider CreateTypeProvider(Activity rootActivity)
{
TypeProvider typeProvider = new TypeProvider(null);
Type companionType = rootActivity.GetType();
typeProvider.SetLocalAssembly(companionType.Assembly);
typeProvider.AddAssembly(companionType.Assembly);
foreach (AssemblyName assemblyName in companionType.Assembly.GetReferencedAssemblies())
{
Assembly referencedAssembly = null;
try
{
referencedAssembly = Assembly.Load(assemblyName);
if (referencedAssembly != null)
typeProvider.AddAssembly(referencedAssembly);
}
catch
{
}
if (referencedAssembly == null && assemblyName.CodeBase != null)
typeProvider.AddAssemblyReference(assemblyName.CodeBase);
}
return typeProvider;
}
private static ArrayList OnWorkflowChangeActionsResolve(object sender, WorkflowChangeActionsResolveEventArgs e)
{
ArrayList changes = null;
WorkflowRuntime runtime = RuntimeEnvironment.CurrentRuntime;
Debug.Assert(runtime != null);
if (runtime != null)
{
WorkflowMarkupSerializer serializer = new WorkflowMarkupSerializer();
ServiceContainer serviceContainer = new ServiceContainer();
ITypeProvider typeProvider = runtime.GetService<ITypeProvider>();
if (typeProvider != null)
serviceContainer.AddService(typeof(ITypeProvider), typeProvider);
else if (sender is Activity)
{
serviceContainer.AddService(typeof(ITypeProvider), CreateTypeProvider(sender as Activity));
}
DesignerSerializationManager manager = new DesignerSerializationManager(serviceContainer);
using (manager.CreateSession())
{
using (StringReader reader = new StringReader(e.WorkflowChangesMarkup))
{
using (XmlReader xmlReader = XmlReader.Create(reader))
{
WorkflowMarkupSerializationManager xomlSerializationManager = new WorkflowMarkupSerializationManager(manager);
changes = serializer.Deserialize(xomlSerializationManager, xmlReader) as ArrayList;
}
}
}
}
return changes;
}
/// <summary> Creates and adds a service to this container. </summary>
/// <param name="serviceSettings"> Description of the service to add. </param>
private void AddServiceFromSettings(WorkflowRuntimeServiceElement serviceSettings)
{
object service = null;
Type t = Type.GetType(serviceSettings.Type, true);
ConstructorInfo serviceProviderAndSettingsConstructor = null;
ConstructorInfo serviceProviderConstructor = null;
ConstructorInfo settingsConstructor = null;
foreach (ConstructorInfo ci in t.GetConstructors())
{
ParameterInfo[] pi = ci.GetParameters();
if (pi.Length == 1)
{
if (typeof(IServiceProvider).IsAssignableFrom(pi[0].ParameterType))
{
serviceProviderConstructor = ci;
}
else if (typeof(NameValueCollection).IsAssignableFrom(pi[0].ParameterType))
{
settingsConstructor = ci;
}
}
else if (pi.Length == 2)
{
if (typeof(IServiceProvider).IsAssignableFrom(pi[0].ParameterType)
&& typeof(NameValueCollection).IsAssignableFrom(pi[1].ParameterType))
{
serviceProviderAndSettingsConstructor = ci;
break;
}
}
}
if (serviceProviderAndSettingsConstructor != null)
{
service = serviceProviderAndSettingsConstructor.Invoke(
new object[] { this, serviceSettings.Parameters });
}
else if (serviceProviderConstructor != null)
{
service = serviceProviderConstructor.Invoke(new object[] { this });
}
else if (settingsConstructor != null)
{
service = settingsConstructor.Invoke(new object[] { serviceSettings.Parameters });
}
else
{
service = Activator.CreateInstance(t);
}
AddServiceImpl(service);
}
internal static void ClearTrackingProfileCache()
{
lock (_runtimesLock)
{
foreach (WeakReference wr in _runtimes.Values)
{
WorkflowRuntime runtime = wr.Target as WorkflowRuntime;
if (null != runtime)
{
if ((null != runtime.TrackingListenerFactory) && (null != runtime.TrackingListenerFactory.TrackingProfileManager))
runtime.TrackingListenerFactory.TrackingProfileManager.ClearCacheImpl();
}
}
}
}
/// <summary>Utility class that prevents reentrance during event processing.</summary>
/// <remarks>
/// When created an EventContext it creates a static variable local to
/// a managed thread (similar to the old TLS slot),
/// which can detect cases when events are invoked while handling other events.
/// The variable is removed on dispose.
/// </remarks>
internal sealed class EventContext : IDisposable
{
/// <summary>
/// Indicates that the value of a static field is unique for each thread
/// CLR Perf suggests using this attribute over the slot approach.
/// </summary>
[ThreadStatic()]
static object threadData;
public EventContext(params Object[] ignored)
{
if (threadData != null)
throw new InvalidOperationException(ExecutionStringManager.CannotCauseEventInEvent);
threadData = this;
}
void IDisposable.Dispose()
{
Debug.Assert(threadData != null, "unexpected call to EventContext::Dispose method");
threadData = null;
}
}
#endregion
#region WorkflowExecutor utility methods
private IList<WorkflowExecutor> GetWorkflowExecutors()
{
//
// This is a safety check in to avoid returning invalid executors in the following cases:
// 1. We ---- between the executor going invalid and getting removed from the list.
// 2. We have a leak somewhere where invalid executors are not getting removed from the list.
List<WorkflowExecutor> executorsList = new List<WorkflowExecutor>();
foreach (Dictionary<Guid, WorkflowExecutor> executors in workflowExecutors)
{
lock (executors)
{
foreach (WorkflowExecutor executor in executors.Values)
{
if ((null != executor) && (executor.IsInstanceValid))
executorsList.Add(executor);
}
}
}
return executorsList;
}
private bool TryRemoveWorkflowExecutor(Guid instanceId, WorkflowExecutor executor)
{
Dictionary<Guid, WorkflowExecutor> executors = workflowExecutors[instanceId];
lock (executors)
{
WorkflowExecutor currentRes;
if (executors.TryGetValue(instanceId, out currentRes) && Object.Equals(executor, currentRes))
{
WorkflowTrace.Host.TraceEvent(TraceEventType.Information, 0, "WorkflowRuntime::TryRemoveWorkflowExecutor, instance:{0}, hc:{1}", executor.InstanceIdString, executor.GetHashCode());
return executors.Remove(instanceId);
}
return false;
}
}
#endregion
}
}
|