/TabularDatabaseCmdlet/TabularDatabase.KPI.cs

http://tabularcmdlets.codeplex.com · C# · 179 lines · 104 code · 30 blank · 45 comment · 0 complexity · df3df25791917ac059f3ed46d93cf3b3 MD5 · raw file

  1. /*=====================================================================
  2. File: TabularDatabase.KPI.cs
  3. Summary: This is the class that implements all related functionality
  4. around KPIs in a tabular model, for all TabularDatabase
  5. commandlets.
  6. Tabular Database Cmdlets (TabularDatabaseCmdlets) is sample code
  7. to show and explain how to use the AMO to Tabular (AMO2Tabular)
  8. library to build a PowerShell library of cmdlets to manage
  9. Tabular model objects.
  10. The sample can be seen as a sample library of cmdlets
  11. with the necessary code to execute each particular
  12. action or operation over a logical tabular object.
  13. Authors: JuanPablo Jofre (jpjofre@microsoft.com)
  14. Date: 04-Apr-2012
  15. Change history:
  16. @TODO:
  17. -----------------------------------------------------------------------
  18. This file is part of the Microsoft SQL Server Code Samples.
  19. Copyright (C) Microsoft Corporation. All rights reserved.
  20. This source code is intended only as a supplement to Microsoft
  21. Development Tools and/or on-line documentation.
  22. THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF
  23. ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  24. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  25. PARTICULAR PURPOSE.
  26. ======================================================================*/
  27. using System;
  28. using System.Globalization;
  29. using System.Management.Automation; // Windows PowerShell assembly.
  30. using MicrosoftSql2012Samples.Amo2Tabular;
  31. using MicrosoftSql2012Samples.TabularDatabaseCmdlet.Properties;
  32. using AMO = Microsoft.AnalysisServices;
  33. namespace MicrosoftSql2012Samples.TabularDatabaseCmdlet
  34. {
  35. [Cmdlet(VerbsCommon.Add, "KpiToTabularTable")]
  36. public class AddKpiToTabularTable : TabularDatabaseBase
  37. {
  38. // Declare mandatory parameters
  39. [Parameter(Mandatory = true, Position = 2)]
  40. [ValidateNotNullOrEmpty]
  41. public string tableName { get; set; }
  42. [Parameter(Mandatory = true, Position = 3)]
  43. [ValidateNotNullOrEmpty]
  44. public string measureName { get; set; }
  45. [Parameter(Mandatory = true, Position = 4)]
  46. [ValidateNotNullOrEmpty]
  47. public string goalExpression { get; set; }
  48. [Parameter(Mandatory = true, Position = 5)]
  49. [ValidateNotNullOrEmpty]
  50. public string statusExpression { get; set; }
  51. [Parameter(Mandatory = true, Position = 6)]
  52. [ValidateNotNullOrEmpty]
  53. public string statusGraphicImageName { get; set; }
  54. // Overide the ProcessRecord method to add a Tabular Database
  55. // using the supplied server name and database name
  56. protected override void ProcessRecord()
  57. {
  58. using (AMO.Server server = new AMO.Server())
  59. {
  60. try
  61. {
  62. server.Connect(serverName);
  63. using (AMO.Database database = server.Databases.GetByName(databaseName))
  64. {
  65. AMO2Tabular.KpiAdd(database, tableName, measureName, goalExpression, statusExpression, statusGraphicImageName, true);
  66. WriteVerbose(string.Format(CultureInfo.InvariantCulture, Resources.AddKpiToTabularTableWriteReport, measureName, tableName));
  67. }
  68. }
  69. catch (Exception ex)
  70. {
  71. ThrowTerminatingError(new ErrorRecord(ex, string.Format(CultureInfo.InvariantCulture, Resources.AddTabularFirstTableTerminatingError, databaseName, serverName), ErrorCategory.InvalidOperation, null));
  72. }
  73. }
  74. }
  75. }
  76. [Cmdlet(VerbsCommon.Remove, "KpiFromTabularTable")]
  77. public class RemoveKpiFromTabularTable : TabularDatabaseBase
  78. {
  79. // Declare mandatory parameters
  80. [Parameter(Mandatory = true, Position = 2)]
  81. [ValidateNotNullOrEmpty]
  82. public string tableName { get; set; }
  83. [Parameter(Mandatory = true, Position = 3)]
  84. [ValidateNotNullOrEmpty]
  85. public string kpiName { get; set; }
  86. // Overide the ProcessRecord method to add a Tabular Database
  87. // using the supplied server name and database name
  88. protected override void ProcessRecord()
  89. {
  90. using (AMO.Server server = new AMO.Server())
  91. {
  92. try
  93. {
  94. server.Connect(serverName);
  95. using (AMO.Database database = server.Databases.GetByName(databaseName))
  96. {
  97. AMO2Tabular.KpiDrop(database, tableName, kpiName, true);
  98. WriteVerbose(string.Format(CultureInfo.InvariantCulture, Resources.RemoveKpiFromTabularTableWriteReport, kpiName, tableName));
  99. }
  100. }
  101. catch (Exception ex)
  102. {
  103. ThrowTerminatingError(new ErrorRecord(ex, string.Format(CultureInfo.InvariantCulture, Resources.AddTabularTableTerminatingError, databaseName, serverName), ErrorCategory.InvalidOperation, null));
  104. }
  105. }
  106. }
  107. }
  108. [Cmdlet(VerbsDiagnostic.Test, "KpiExistsInTabularTable")]
  109. public class TestKpiExistsInTabularTable : TabularDatabaseBase
  110. {
  111. [Parameter(Mandatory = true, Position = 2)]
  112. [ValidateNotNullOrEmpty]
  113. public string tableName { get; set; }
  114. [Parameter(Mandatory = true, Position = 3)]
  115. [ValidateNotNullOrEmpty]
  116. public string kpiName { get; set; }
  117. // Overide the ProcessRecord method to add a Tabular Database
  118. // using the supplied server name and database name
  119. protected override void ProcessRecord()
  120. {
  121. using (AMO.Server server = new AMO.Server())
  122. {
  123. try
  124. {
  125. server.Connect(serverName);
  126. using (AMO.Database database = server.Databases.GetByName(databaseName))
  127. {
  128. WriteObject(AMO2Tabular.KpiExist(database, tableName, kpiName), true);
  129. }
  130. }
  131. catch (Exception ex)
  132. {
  133. ThrowTerminatingError(new ErrorRecord(ex, string.Format(CultureInfo.InvariantCulture, Resources.AddTabularTableTerminatingError, databaseName, serverName), ErrorCategory.InvalidOperation, null));
  134. }
  135. }
  136. }
  137. }
  138. }