// // IInspector.cs // // Author: // Mike Krüger // // Copyright (c) 2012 Xamarin // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. using System.Collections.Generic; using System.Threading; using MonoDevelop.Core; using ICSharpCode.NRefactory.Refactoring; using Mono.TextEditor; using System; namespace MonoDevelop.CodeIssues { public abstract class BaseCodeIssueProvider { public virtual CodeIssueProvider Parent { get { return null; } } /// /// Gets or sets the type of the MIME the provider is attached to. /// public abstract string MimeType { get; } /// /// Gets or sets the title of the issue provider (used in the option panel). /// public string Title { get; set; } /// /// Gets or sets the description of the issue provider (used in the option panel). /// public string Description { get; set; } /// /// Gets the identifier string used as property ID tag. /// public virtual string IdString { get { return "refactoring.codeissues." + MimeType + "." + GetType ().FullName; } } /// /// Gets or sets the default severity. Note that GetSeverity () should be called to get the valid value inside the IDE. /// public Severity DefaultSeverity { get; set; } /// /// Gets or sets a value indicating whether this issue is enabled. Note that GetIsEnabled () should be called to get the valid value inside the IDE. /// /// true if this instance is enabled; otherwise, false. public bool IsEnabledByDefault { get; set; } /// /// Gets the current (user defined) severity. /// protected Severity severity; public Severity GetSeverity () { return severity; } /// /// Sets the user defined severity. /// public void SetSeverity (Severity severity) { if (this.severity == severity) return; this.severity = severity; PropertyService.Set (IdString, severity); } protected bool isEnabled; public bool GetIsEnabled () { return isEnabled; } /// /// Sets the user defined severity. /// public void SetIsEnabled (bool isEnabled) { if (this.isEnabled == isEnabled) return; this.isEnabled = isEnabled; PropertyService.Set (IdString + ".isEnabled", isEnabled); } protected void UpdateSeverity () { severity = PropertyService.Get (IdString, DefaultSeverity); isEnabled = PropertyService.Get (IdString+ ".isEnabled", IsEnabledByDefault); } /// /// Gets all the code issues inside a document. /// public abstract IEnumerable GetIssues (object refactoringContext, CancellationToken cancellationToken); public virtual bool CanDisableOnce { get { return false; } } public virtual bool CanDisableAndRestore { get { return false; } } public virtual bool CanDisableWithPragma { get { return false; } } public virtual bool CanSuppressWithAttribute { get { return false; } } public virtual void DisableOnce (MonoDevelop.Ide.Gui.Document document, DocumentRegion loc) { throw new NotSupportedException (); } public virtual void DisableAndRestore (MonoDevelop.Ide.Gui.Document document, DocumentRegion loc) { throw new NotSupportedException (); } public virtual void DisableWithPragma (MonoDevelop.Ide.Gui.Document document, DocumentRegion loc) { throw new NotSupportedException (); } public virtual void SuppressWithAttribute (MonoDevelop.Ide.Gui.Document document, DocumentRegion loc) { throw new NotSupportedException (); } } /// /// A code issue provider is a factory that creates code issues of a given document. /// public abstract class CodeIssueProvider : BaseCodeIssueProvider { string mimeType; public override string MimeType { get { return mimeType; } } public void SetMimeType (string mimeType) { this.mimeType = mimeType; UpdateSeverity (); } /// /// Gets or sets the category of the issue provider (used in the option panel). /// public string Category { get; set; } /// /// If true this issue has sub issues. /// public abstract bool HasSubIssues { get; } /// /// Gets the sub issues of this issue. If HasSubIssus == false an InvalidOperationException is thrown. /// public virtual IEnumerable SubIssues { get { throw new InvalidOperationException (); } } /// /// Gets the effective set of providers. The effective set of providers /// is either the sub issues (if it has sub issues) or simply itself (otherwise). /// /// The effective provider set. public IEnumerable GetEffectiveProviderSet() { if (HasSubIssues) return SubIssues; return new[] { this }; } } }