/Project/Src/AddIns/ReSharper700/QuickFixes/Framework/StyleCopQuickFixBase.cs

# · C# · 230 lines · 92 code · 34 blank · 104 comment · 3 complexity · 62c0c39f844439b1b7d7474f7d3c7d7b MD5 · raw file

  1. // --------------------------------------------------------------------------------------------------------------------
  2. // <copyright file="StyleCopQuickFixBase.cs" company="http://stylecop.codeplex.com">
  3. // MS-PL
  4. // </copyright>
  5. // <license>
  6. // This source code is subject to terms and conditions of the Microsoft
  7. // Public License. A copy of the license can be found in the License.html
  8. // file at the root of this distribution. If you cannot locate the
  9. // Microsoft Public License, please send an email to dlr@microsoft.com.
  10. // By using this source code in any fashion, you are agreeing to be bound
  11. // by the terms of the Microsoft Public License. You must not remove this
  12. // notice, or any other, from this software.
  13. // </license>
  14. // <summary>
  15. // Basic Textual Quick Fix Example for rule SA1400QuickFix.
  16. // </summary>
  17. // --------------------------------------------------------------------------------------------------------------------
  18. extern alias JB;
  19. namespace StyleCop.ReSharper700.QuickFixes.Framework
  20. {
  21. #region Using Directives
  22. using System.Collections.Generic;
  23. using System.Linq;
  24. using JetBrains.ReSharper.Daemon;
  25. using JetBrains.ReSharper.Intentions.Extensibility;
  26. using JetBrains.ReSharper.Intentions.Extensibility.Menu;
  27. using StyleCop.ReSharper700.Violations;
  28. #endregion
  29. /// <summary>
  30. /// Basic Textual Quick Fix Example for rule SA1400QuickFix.
  31. /// </summary>
  32. public abstract class StyleCopQuickFixBase : IQuickFix
  33. {
  34. #region Fields
  35. /// <summary>
  36. /// Instance of the StyleCop violation the QuickFix can deal with.
  37. /// </summary>
  38. protected readonly StyleCopHighlightingBase Highlighting;
  39. /// <summary>
  40. /// List of available actions to be displayed in the IDE.
  41. /// </summary>
  42. private List<IBulbAction> bulbItems = new List<IBulbAction>();
  43. #endregion
  44. #region Constructors and Destructors
  45. /// <summary>
  46. /// Initializes a new instance of the StyleCopQuickFixBase class that can handle <see cref="StyleCopHighlightingError"/> .
  47. /// </summary>
  48. /// <param name="highlight">
  49. /// <see cref="StyleCopHighlightingError"/> that has been detected.
  50. /// </param>
  51. protected StyleCopQuickFixBase(StyleCopHighlightingError highlight)
  52. : this(highlight, true)
  53. {
  54. }
  55. /// <summary>
  56. /// Initializes a new instance of the StyleCopQuickFixBase class that can handle <see cref="StyleCopHighlightingHint"/> .
  57. /// </summary>
  58. /// <param name="highlight">
  59. /// <see cref="StyleCopHighlightingHint"/> that has been detected.
  60. /// </param>
  61. protected StyleCopQuickFixBase(StyleCopHighlightingHint highlight)
  62. : this(highlight, true)
  63. {
  64. }
  65. /// <summary>
  66. /// Initializes a new instance of the StyleCopQuickFixBase class that can handle <see cref="StyleCopHighlightingInfo"/> .
  67. /// </summary>
  68. /// <param name="highlight">
  69. /// <see cref="StyleCopHighlightingInfo"/> that has been detected.
  70. /// </param>
  71. protected StyleCopQuickFixBase(StyleCopHighlightingInfo highlight)
  72. : this(highlight, true)
  73. {
  74. }
  75. /// <summary>
  76. /// Initializes a new instance of the StyleCopQuickFixBase class that can handle <see cref="StyleCopHighlightingSuggestion"/> .
  77. /// </summary>
  78. /// <param name="highlight">
  79. /// <see cref="StyleCopHighlightingSuggestion"/> that has been detected.
  80. /// </param>
  81. protected StyleCopQuickFixBase(StyleCopHighlightingSuggestion highlight)
  82. : this(highlight, true)
  83. {
  84. }
  85. /// <summary>
  86. /// Initializes a new instance of the StyleCopQuickFixBase class that can handle <see cref="StyleCopHighlightingWarning"/> .
  87. /// </summary>
  88. /// <param name="highlight">
  89. /// <see cref="StyleCopHighlightingWarning"/> that has been detected.
  90. /// </param>
  91. protected StyleCopQuickFixBase(StyleCopHighlightingWarning highlight)
  92. : this(highlight, true)
  93. {
  94. }
  95. /// <summary>
  96. /// Initializes a new instance of the StyleCopQuickFixBase class that can handle <see cref="StyleCopHighlightingBase"/> .
  97. /// </summary>
  98. /// <param name="highlight">
  99. /// <see cref="StyleCopHighlightingBase"/> that has been detected.
  100. /// </param>
  101. /// <param name="initialise">
  102. /// This value is not used, its only purpose is to differentiate the method signature.
  103. /// </param>
  104. protected StyleCopQuickFixBase(StyleCopHighlightingBase highlight, bool initialise)
  105. {
  106. this.Highlighting = highlight;
  107. this.InitialiseIfRequired();
  108. }
  109. #endregion
  110. #region Public Properties
  111. /// <summary>
  112. /// Gets a list of BulbActions to display in the IDE.
  113. /// </summary>
  114. public IBulbAction[] Items
  115. {
  116. get
  117. {
  118. return this.BulbItems.ToArray();
  119. }
  120. }
  121. #endregion
  122. #region Properties
  123. /// <summary>
  124. /// Gets or sets a list of BulbItems to be Displayed.
  125. /// </summary>
  126. /// <remarks>
  127. /// An internal representation of the BulbItems used for initialization and filtering.
  128. /// </remarks>
  129. protected List<IBulbAction> BulbItems
  130. {
  131. get
  132. {
  133. return this.bulbItems;
  134. }
  135. set
  136. {
  137. this.bulbItems = value;
  138. }
  139. }
  140. #endregion
  141. #region Public Methods and Operators
  142. /// <summary>
  143. /// Arranges the BulbItems in the correct section.
  144. /// </summary>
  145. /// <param name="menu">
  146. /// The BulbMenu to add the items too.
  147. /// </param>
  148. /// <param name="severity">
  149. /// The severity to set the items too.
  150. /// </param>
  151. public void CreateBulbItems(BulbMenu menu, Severity severity)
  152. {
  153. menu.ArrangeQuickFixes(from bulbItem in this.Items select JB::JetBrains.Util.Pair.Of(bulbItem, severity));
  154. }
  155. /// <summary>
  156. /// Determines whether the current QuickFix is available for the violation.
  157. /// </summary>
  158. /// <remarks>
  159. /// Essentially to display the bulb item in the IDE the current ViolationID must match the name of the QuickFix Class.
  160. /// </remarks>
  161. /// <param name="cache">
  162. /// Current Data Cache.
  163. /// </param>
  164. /// <returns>
  165. /// Whether the current QuickFix is available for the violation.
  166. /// </returns>
  167. public bool IsAvailable(JB::JetBrains.Util.IUserDataHolder cache)
  168. {
  169. // use a more resiliant matching method - this caught me out
  170. // quite a bit while I was refactoring and debugging and wondering
  171. // why no bulb items were appearing
  172. if (this.Highlighting.CheckId.StartsWith("SA") || this.Highlighting.CheckId.StartsWith("BB"))
  173. {
  174. return this.GetType().Name.Substring(2).StartsWith(this.Highlighting.CheckId.Substring(2));
  175. }
  176. return this.GetType().Name.StartsWith(this.Highlighting.CheckId);
  177. }
  178. #endregion
  179. #region Methods
  180. /// <summary>
  181. /// Abstract initialization method that must be called by all derived types.
  182. /// </summary>
  183. protected abstract void InitialiseBulbItems();
  184. /// <summary>
  185. /// Ensures that the QF are only shown is they are applicable for the current violation.
  186. /// </summary>
  187. protected void InitialiseIfRequired()
  188. {
  189. if (this.IsAvailable(null))
  190. {
  191. this.InitialiseBulbItems();
  192. }
  193. }
  194. #endregion
  195. }
  196. }