/SSIS/Biml/BimlExpandPlugin.cs

# · C# · 195 lines · 176 code · 18 blank · 1 comment · 24 complexity · dd8a94ce9eb195bf633823920136a74c MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Windows.Forms;
  5. using EnvDTE;
  6. using EnvDTE80;
  7. using Varigence.Flow.FlowFramework.Validation;
  8. using Varigence.Languages.Biml;
  9. using Varigence.Languages.Biml.Platform;
  10. namespace BIDSHelper.SSIS.Biml
  11. {
  12. public class BimlExpandPlugin : BimlFeaturePluginBase
  13. {
  14. public BimlExpandPlugin(Connect con, DTE2 appObject, AddIn addinInstance)
  15. : base(con, appObject, addinInstance)
  16. {
  17. }
  18. #region Standard Property Overrides
  19. public override string ShortName
  20. {
  21. get { return "BimlExpandPlugin"; }
  22. }
  23. public override int Bitmap
  24. {
  25. get { return 0; }
  26. }
  27. public override System.Drawing.Icon CustomMenuIcon
  28. {
  29. get { return BIDSHelper.Resources.Common.Biml; }
  30. }
  31. public override string ButtonText
  32. {
  33. get { return "Generate SSIS Packages"; }
  34. }
  35. public override string ToolTip
  36. {
  37. get { return "Expand BimlScript file into one or more SSIS packages in your project"; }
  38. }
  39. public override string MenuName
  40. {
  41. get { return "Item"; }
  42. }
  43. #endregion
  44. public override bool DisplayCommand(UIHierarchyItem item)
  45. {
  46. UIHierarchy solExplorer = this.ApplicationObject.ToolWindows.SolutionExplorer;
  47. foreach (object selected in ((System.Array)solExplorer.SelectedItems))
  48. {
  49. UIHierarchyItem hierItem = (UIHierarchyItem)selected;
  50. ProjectItem projectItem = hierItem.Object as ProjectItem;
  51. if (projectItem == null || !projectItem.Name.ToLower().EndsWith(".biml"))
  52. {
  53. return false;
  54. }
  55. }
  56. return (((System.Array)solExplorer.SelectedItems).Length > 0);
  57. }
  58. public override void Exec()
  59. {
  60. if (!BimlUtility.CheckRequiredFrameworkVersion())
  61. {
  62. return;
  63. }
  64. UIHierarchy solExplorer = this.ApplicationObject.ToolWindows.SolutionExplorer;
  65. var emittableFilePaths = new List<string>();
  66. Project containingProject = null;
  67. string projectDirectory = null;
  68. bool sameProject = false;
  69. foreach (object selected in ((System.Array)solExplorer.SelectedItems))
  70. {
  71. UIHierarchyItem hierItem = (UIHierarchyItem)selected;
  72. ProjectItem projectItem = hierItem.Object as ProjectItem;
  73. if (projectItem != null && projectItem.Name.ToLower().EndsWith(".biml"))
  74. {
  75. if (projectItem.Document != null && !projectItem.Document.Saved)
  76. {
  77. projectItem.Document.Save(null);
  78. }
  79. Project newContainingProject = projectItem.ContainingProject;
  80. sameProject = containingProject == null || containingProject == newContainingProject;
  81. containingProject = projectItem.ContainingProject;
  82. projectDirectory = Path.GetDirectoryName(containingProject.FullName);
  83. string filePath = Path.Combine(projectDirectory, projectItem.Name);
  84. emittableFilePaths.Add(filePath);
  85. }
  86. }
  87. if (sameProject && containingProject != null && projectDirectory != null)
  88. {
  89. try
  90. {
  91. Expand(emittableFilePaths, containingProject, projectDirectory);
  92. }
  93. catch (Exception ex)
  94. {
  95. MessageBox.Show(ex.Message);
  96. }
  97. }
  98. }
  99. private void Expand(List<string> bimlScriptPaths, Project project, string projectDirectory)
  100. {
  101. var tempTargetDirectory = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName());
  102. try
  103. {
  104. Directory.CreateDirectory(tempTargetDirectory);
  105. // TODO: How to distinguish between SQL Server 2008 and 2008R2?
  106. #if KATMAI
  107. SsisVersion ssisVersion = BimlUtility.GetSsisVersion2008Variant();
  108. ValidationReporter validationReporter = BidsHelper.CompileBiml(typeof(AstNode).Assembly, "Varigence.Hadron.BidsHelperPhaseWorkflows.xml", "Compile", bimlScriptPaths, new List<string>(), tempTargetDirectory, projectDirectory, SqlServerVersion.SqlServer2008, ssisVersion, SsasVersion.Ssas2008);
  109. #else
  110. ValidationReporter validationReporter = BidsHelper.CompileBiml(typeof(AstNode).Assembly, "Varigence.Hadron.BidsHelperPhaseWorkflows.xml", "Compile", bimlScriptPaths, new List<string>(), tempTargetDirectory, projectDirectory, SqlServerVersion.SqlServer2005, SsisVersion.Ssis2005, SsasVersion.Ssas2005);
  111. #endif
  112. if (validationReporter.HasErrors)
  113. {
  114. var form = new BimlValidationListForm(validationReporter);
  115. form.ShowDialog();
  116. }
  117. else
  118. {
  119. string[] newPackageFiles = Directory.GetFiles(tempTargetDirectory, "*.dtsx", SearchOption.AllDirectories);
  120. var safePackageFilePaths = new List<string>();
  121. var conflictingPackageFilePaths = new List<string>();
  122. foreach (var tempFilePath in newPackageFiles)
  123. {
  124. string tempFileName = Path.GetFileName(tempFilePath);
  125. string projectItemFileName = Path.Combine(projectDirectory, tempFileName);
  126. if (File.Exists(projectItemFileName))
  127. {
  128. conflictingPackageFilePaths.Add(tempFilePath);
  129. }
  130. else
  131. {
  132. safePackageFilePaths.Add(tempFilePath);
  133. }
  134. }
  135. if (conflictingPackageFilePaths.Count > 0)
  136. {
  137. var dialog = new MultipleSelectionConfirmationDialog(conflictingPackageFilePaths, projectDirectory, safePackageFilePaths.Count);
  138. if (dialog.ShowDialog() == DialogResult.OK)
  139. {
  140. foreach (var filePath in dialog.SelectedFilePaths)
  141. {
  142. safePackageFilePaths.Add(filePath);
  143. }
  144. }
  145. else
  146. {
  147. return;
  148. }
  149. }
  150. foreach (var tempFilePath in safePackageFilePaths)
  151. {
  152. string projectItemFilePath = Path.Combine(projectDirectory, Path.GetFileName(tempFilePath));
  153. File.Copy(tempFilePath, projectItemFilePath, true);
  154. project.ProjectItems.AddFromFile(projectItemFilePath);
  155. }
  156. }
  157. }
  158. catch (Exception ex)
  159. {
  160. MessageBox.Show(ex.Message);
  161. }
  162. finally
  163. {
  164. try
  165. {
  166. if (Directory.Exists(tempTargetDirectory))
  167. {
  168. Directory.Delete(tempTargetDirectory);
  169. }
  170. }
  171. catch (Exception)
  172. {
  173. }
  174. }
  175. }
  176. }
  177. }