/Development/Active/Active.Activities/ExecuteXaml.cs

# · C# · 137 lines · 123 code · 13 blank · 1 comment · 16 complexity · b41ffdec7b5a9365ce056a9eb4b833a2 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Activities;
  4. using System.ComponentModel;
  5. using Active.Activities.Helpers;
  6. using Active.Activities.XamlProviders;
  7. namespace Active.Activities
  8. {
  9. public class ExecuteXaml : CodeActivity
  10. {
  11. [RequiredArgument]
  12. [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
  13. [Browsable(true)]
  14. [Description("The full path of the xaml workflow file to execute.")]
  15. public InArgument<string> XamlFileName { get; set; }
  16. [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
  17. [Browsable(true)]
  18. [Description("The workflow input variables.(New Dictionary(Of String, Object) From {{ \"Var1\", \"val1\" }, { \"Var2\", 1 }})")]
  19. public InArgument<Dictionary<string, object>> Inputs { get; set; }
  20. [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
  21. [Browsable(true)]
  22. [Description("Optional password for encrypted XAML file.")]
  23. public InArgument<string> Password { get; set; }
  24. private ActivityConsole console = null;
  25. private bool isBusy;
  26. protected override void Execute(CodeActivityContext context)
  27. {
  28. console = context.GetExtension<ActivityConsole>();
  29. if (console == null) console = new ActivityConsole();
  30. string xamlFile = XamlFileName.Get(context);
  31. Dictionary<string, object> inputs = Inputs.Get(context);
  32. try
  33. {
  34. Activity workflow = null;
  35. string xamlFileName = XamlFileName.Get(context);
  36. string password = null;
  37. string errorMessage = null;
  38. if (XamlFileProviderFactory.IsXamlFileEncrypted(xamlFileName))
  39. {
  40. password = Password.Get(context);
  41. if (string.IsNullOrEmpty(password))
  42. {
  43. errorMessage = string.Format("The file '{0}' is protected and requires the correct password to open.", xamlFileName);
  44. }
  45. }
  46. if (string.IsNullOrEmpty(errorMessage))
  47. {
  48. try
  49. {
  50. IXamlFileProvider provider = XamlFileProviderFactory.GetXamlFileProvider(xamlFileName, password);
  51. provider.LoadXamlFile(xamlFileName, password);
  52. workflow = provider.XamlDocument;
  53. }
  54. catch (Exception ex)
  55. {
  56. errorMessage = ex.Message;
  57. if (errorMessage == "The encrypted string was not in a valid format.")
  58. errorMessage = "The password you specified was incorrect.";
  59. errorMessage = string.Format("The following error occurred while trying to open '{0}' : \n\n{1}", xamlFileName, errorMessage);
  60. }
  61. }
  62. if (!string.IsNullOrEmpty(errorMessage))
  63. {
  64. throw new ArgumentException(errorMessage);
  65. }
  66. WorkflowApplication wa;
  67. if (inputs != null && inputs.Count > 0)
  68. {
  69. wa = new WorkflowApplication(workflow, Inputs.Get(context));
  70. }
  71. else
  72. {
  73. wa = new WorkflowApplication(workflow);
  74. }
  75. wa.Extensions.Add(console);
  76. wa.Completed = WorkflowCompleted;
  77. wa.OnUnhandledException = WorkflowUnhandledException;
  78. wa.Aborted = WorkflowAborted;
  79. isBusy = true;
  80. console.WriteLine(Environment.NewLine + xamlFile + " Executing..." + Environment.NewLine);
  81. wa.Run();
  82. while (isBusy)
  83. {
  84. System.Threading.Thread.Sleep(200);
  85. }
  86. console.WriteLine(Environment.NewLine + xamlFile + " Execution Complete." + Environment.NewLine);
  87. }
  88. catch (Exception)
  89. {
  90. throw;
  91. }
  92. }
  93. private void WorkflowCompleted(WorkflowApplicationCompletedEventArgs e)
  94. {
  95. switch (e.CompletionState)
  96. {
  97. case ActivityInstanceState.Canceled:
  98. console.WriteLine(Environment.NewLine + "== Execution Cancelled ==");
  99. break;
  100. case ActivityInstanceState.Closed:
  101. //console.WriteLine(Environment.NewLine + "== Execution Complete ==");
  102. break;
  103. case ActivityInstanceState.Faulted:
  104. console.WriteLine(Environment.NewLine + "** Terminated **");
  105. console.WriteLine(Environment.NewLine + (e.TerminationException != null ? ExceptionManager.GetExceptionMessage(e.TerminationException) : string.Empty));
  106. break;
  107. }
  108. isBusy = false;
  109. }
  110. private UnhandledExceptionAction WorkflowUnhandledException(WorkflowApplicationUnhandledExceptionEventArgs e)
  111. {
  112. console.WriteLine(Environment.NewLine + "** Unhandled Exception **");
  113. console.WriteLine(Environment.NewLine + (e.UnhandledException != null ? ExceptionManager.GetExceptionMessage(e.UnhandledException) : string.Empty));
  114. isBusy = false;
  115. return UnhandledExceptionAction.Cancel;
  116. }
  117. private void WorkflowAborted(WorkflowApplicationAbortedEventArgs e)
  118. {
  119. console.WriteLine(Environment.NewLine + "** Aborted **");
  120. console.WriteLine(Environment.NewLine + (e.Reason != null ? ExceptionManager.GetExceptionMessage(e.Reason) : string.Empty));
  121. isBusy = false;
  122. }
  123. }
  124. }