| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Globalization; | |
| using System.Management.Automation.Language; | |
| using Microsoft.PowerShell.Commands; | |
| using System.Management.Automation.Runspaces; | |
| using System.Management.Automation.Internal; | |
| namespace System.Management.Automation | |
| { | |
| /// <summary> | |
| /// Monad help is an architecture made up of three layers: | |
| /// 1. At the top is get-help commandlet from where help functionality is accessed. | |
| /// 2. At the middle is the help system which collects help objects based on user's request. | |
| /// 3. At the bottom are different help providers which provide help contents for different kinds of information requested. | |
| /// | |
| /// Class HelpSystem implements the middle layer of Monad Help. | |
| /// | |
| /// HelpSystem will provide functionalities in following areas, | |
| /// 1. Initialization and management of help providers | |
| /// 2. Help engine: this will invoke different providers based on user's request. | |
| /// 3. Help API: this is the API HelpSystem provide to get-help commandlet. | |
| /// | |
| /// Initialization: | |
| /// Initialization of different help providers needs some context information like "ExecutionContext" | |
| /// | |
| /// Help engine: | |
| /// By default, HelpInfo will be retrieved in two phases: exact-match phase and search phase. | |
| /// | |
| /// Exact-match phase: help providers will be called in appropriate order to retrieve HelpInfo. | |
| /// If a match is found, help engine will stop and return the one and only HelpInfo retrieved. | |
| /// | |
| /// Search phase: all relevant help providers will be called to retrieve HelpInfo. (Order doesn't | |
| /// matter in this case) Help engine will not stop until all help providers are called. | |
| /// | |
| /// Behavior of the help engine can be modified based on Help API parameters in the following ways: | |
| /// 1. limit the number of HelpInfo to be returned. | |
| /// 2. specify which providers will be used. | |
| /// 3. general help info returned in case the search target is empty. | |
| /// 4. default help info (or hint) returned in case no match is found. | |
| /// | |
| /// Help API: | |
| /// The Help API is the function to be called by the Get-Help cmdlet. | |
| /// | |
| /// The following information shall be provided in Help API parameters: | |
| /// 1. search target: (which can be one or multiple strings) | |
| /// 2. help type: to limit the type of help to be searched | |
| /// 3. included fields: the fields to be included in the help info | |
| /// 4. excluded fields: the fields to be excluded in the help info | |
| /// 5. max number of results to be returned | |
| /// 6. scoring algorithm for help results | |
| /// 7. help reason: help can be directly invoked by end user or as a result of | |
| /// some command syntax error. | |
| /// | |
| /// [gxie, 7-25-04]: included fields, excluded fields and help reason will be handled in | |
| /// get-help commandlet. | |
| /// | |
| /// Help API's are internal. The only way to access help is by | |
| /// invoking the get-help command. | |
| /// | |
| /// To support the scenario of multiple monad engines running in one process, each | |
| /// monad engine is required to have its one help system instance. | |
| /// | |
| /// Currently each ExecutionContext has a help system instance as its member. | |
| /// | |
| /// Help Providers: | |
| /// The basic contract for help providers is to provide help based on the | |
| /// search target. | |
| /// | |
| /// The result of a help provider invocation can be three things: | |
| /// a. Full help info (in case of an exact-match and a single search result) | |
| /// b. Short help info (in case of multiple search results) | |
| /// c. Partial help info (in case of some cmdlet help info, which | |
| /// should be supplemented by provider help info) | |
| /// d. Help forwarding info (in the case of an alias, which will return the target | |
| /// for the alias) | |
| /// | |
| /// Help providers may need to provide functionality in the following two areas: | |
| /// a. caching and indexing to boost performance | |
| /// b. localization. | |
| /// </summary> | |
| internal class HelpSystem | |
| { | |
| /// <summary> | |
| /// Constructor for HelpSystem. | |
| /// </summary> | |
| /// <param name="context">Execution context for this help system.</param> | |
| internal HelpSystem(ExecutionContext context) | |
| { | |
| if (context == null) | |
| { | |
| throw PSTraceSource.NewArgumentNullException("ExecutionContext"); | |
| } | |
| _executionContext = context; | |
| Initialize(); | |
| } | |
| private readonly ExecutionContext _executionContext; | |
| /// <summary> | |
| /// ExecutionContext for the help system. Different help providers | |
| /// will depend on this to retrieve session-related information like | |
| /// session state and command discovery objects. | |
| /// </summary> | |
| /// <value></value> | |
| internal ExecutionContext ExecutionContext | |
| { | |
| get | |
| { | |
| return _executionContext; | |
| } | |
| } | |
| internal event EventHandler<HelpProgressEventArgs> OnProgress; | |
| /// <summary> | |
| /// Initialize the help system with an execution context. If the execution context | |
| /// matches the execution context of current singleton HelpSystem object, nothing | |
| /// needs to be done. Otherwise, a new singleton HelpSystem object will be created | |
| /// with the new execution context. | |
| /// </summary> | |
| internal void Initialize() | |
| { | |
| _verboseHelpErrors = LanguagePrimitives.IsTrue( | |
| _executionContext.GetVariableValue(SpecialVariables.VerboseHelpErrorsVarPath, false)); | |
| _helpErrorTracer = new HelpErrorTracer(this); | |
| InitializeHelpProviders(); | |
| } | |
| /// <summary> | |
| /// Get Help API function. This is the basic form of the Help API using help | |
| /// request. | |
| /// | |
| /// Variants of this function are defined below, which will create help request | |
| /// object on the fly. | |
| /// </summary> | |
| /// <param name="helpRequest">HelpRequest object</param> | |
| /// <returns>An array of HelpInfo objects</returns> | |
| internal IEnumerable<HelpInfo> GetHelp(HelpRequest helpRequest) | |
| { | |
| if (helpRequest == null) | |
| return null; | |
| helpRequest.Validate(); | |
| ValidateHelpCulture(); | |
| return this.DoGetHelp(helpRequest); | |
| } | |
| private readonly Collection<ErrorRecord> _lastErrors = new Collection<ErrorRecord>(); | |
| /// <summary> | |
| /// This is for tracking the last set of errors happened during the help | |
| /// search. | |
| /// </summary> | |
| /// <value></value> | |
| internal Collection<ErrorRecord> LastErrors | |
| { | |
| get | |
| { | |
| return _lastErrors; | |
| } | |
| } | |
| private HelpCategory _lastHelpCategory = HelpCategory.None; | |
| /// <summary> | |
| /// This is the help category to search for help for the last command. | |
| /// </summary> | |
| /// <value>help category to search for help</value> | |
| internal HelpCategory LastHelpCategory | |
| { | |
| get | |
| { | |
| return _lastHelpCategory; | |
| } | |
| } | |
| private bool _verboseHelpErrors = false; | |
| /// <summary> | |
| /// VerboseHelpErrors is used in the case when end users are interested | |
| /// to know all errors that happened during a help search. This property | |
| /// is false by default. | |
| /// | |
| /// If this property is turned on (by setting session variable "VerboseHelpError"), | |
| /// following two behaviours will be different, | |
| /// a. Help errors will be written to the error pipeline regardless of the situation. | |
| /// (Normally, help errors will be written to error pipeline if there is no | |
| /// help found and there is no wildcard in help search target). | |
| /// b. Some additional warnings, including MAML processing warnings, will be | |
| /// written to the error pipeline. | |
| /// </summary> | |
| /// <value></value> | |
| internal bool VerboseHelpErrors | |
| { | |
| get | |
| { | |
| return _verboseHelpErrors; | |
| } | |
| } | |
| // Cache of search paths that are currently active. | |
| // This will save a lot time when help providers do their searching | |
| private Collection<string> _searchPaths = null; | |
| /// <summary> | |
| /// Gets the search paths for external snapins/modules that are currently loaded. | |
| /// If the current shell is single-shell-based, then the returned | |
| /// search path contains all the directories of currently active PSSnapIns/modules. | |
| /// </summary> | |
| /// <returns>A collection of strings representing locations.</returns> | |
| internal Collection<string> GetSearchPaths() | |
| { | |
| // return the cache if already present. | |
| if (_searchPaths != null) | |
| { | |
| return _searchPaths; | |
| } | |
| _searchPaths = new Collection<string>(); | |
| // add loaded modules paths to the search path | |
| if (ExecutionContext.Modules != null) | |
| { | |
| foreach (PSModuleInfo loadedModule in ExecutionContext.Modules.ModuleTable.Values) | |
| { | |
| if (!_searchPaths.Contains(loadedModule.ModuleBase)) | |
| { | |
| _searchPaths.Add(loadedModule.ModuleBase); | |
| } | |
| } | |
| } | |
| return _searchPaths; | |
| } | |
| /// <summary> | |
| /// Get help based on the target, help type, etc | |
| /// | |
| /// Help engine retrieve help based on following schemes: | |
| /// | |
| /// 1. if the help target is empty, get default help | |
| /// 2. if the help target is not a search pattern, try to retrieve exact help | |
| /// 3. if help target is a search pattern or step 2 returns no helpInfo, try to search for help | |
| /// (Search for pattern in command name followed by pattern match in help content) | |
| /// 4. if step 3 returns exactly one helpInfo object, try to retrieve exact help. | |
| /// </summary> | |
| /// <param name="helpRequest">Help request object.</param> | |
| /// <returns>An array of HelpInfo objects</returns> | |
| private IEnumerable<HelpInfo> DoGetHelp(HelpRequest helpRequest) | |
| { | |
| _lastErrors.Clear(); | |
| // Reset SearchPaths | |
| _searchPaths = null; | |
| _lastHelpCategory = helpRequest.HelpCategory; | |
| if (string.IsNullOrEmpty(helpRequest.Target)) | |
| { | |
| HelpInfo helpInfo = GetDefaultHelp(); | |
| if (helpInfo != null) | |
| { | |
| yield return helpInfo; | |
| } | |
| yield return null; | |
| } | |
| else | |
| { | |
| bool isMatchFound = false; | |
| if (!WildcardPattern.ContainsWildcardCharacters(helpRequest.Target)) | |
| { | |
| foreach (HelpInfo helpInfo in ExactMatchHelp(helpRequest)) | |
| { | |
| isMatchFound = true; | |
| yield return helpInfo; | |
| } | |
| } | |
| if (!isMatchFound) | |
| { | |
| foreach (HelpInfo helpInfo in SearchHelp(helpRequest)) | |
| { | |
| isMatchFound = true; | |
| yield return helpInfo; | |
| } | |
| if (!isMatchFound) | |
| { | |
| // Throwing an exception here may not be the | |
| // best thing to do. Instead we can choose to | |
| // a. give a hint | |
| // b. just silently return an empty search result. | |
| // Solution: | |
| // If it is an exact help target, throw an exception. | |
| // Otherwise, return empty result set. | |
| if (!WildcardPattern.ContainsWildcardCharacters(helpRequest.Target) && this.LastErrors.Count == 0) | |
| { | |
| Exception e = new HelpNotFoundException(helpRequest.Target); | |
| ErrorRecord errorRecord = new ErrorRecord(e, "HelpNotFound", ErrorCategory.ResourceUnavailable, null); | |
| this.LastErrors.Add(errorRecord); | |
| yield break; | |
| } | |
| } | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Get help that exactly matches the target. | |
| /// | |
| /// If the helpInfo returned is not complete, we shall forward the | |
| /// helpInfo object to the appropriate help provider for further processing. | |
| /// (this is implemented by ForwardHelp) | |
| /// </summary> | |
| /// <param name="helpRequest">Help request object</param> | |
| /// <returns>HelpInfo object retrieved (can be null)</returns> | |
| internal IEnumerable<HelpInfo> ExactMatchHelp(HelpRequest helpRequest) | |
| { | |
| bool isHelpInfoFound = false; | |
| for (int i = 0; i < this.HelpProviders.Count; i++) | |
| { | |
| HelpProvider helpProvider = (HelpProvider)this.HelpProviders[i]; | |
| if ((helpProvider.HelpCategory & helpRequest.HelpCategory) > 0) | |
| { | |
| foreach (HelpInfo helpInfo in helpProvider.ExactMatchHelp(helpRequest)) | |
| { | |
| isHelpInfoFound = true; | |
| foreach (HelpInfo fwdHelpInfo in ForwardHelp(helpInfo, helpRequest)) | |
| { | |
| yield return fwdHelpInfo; | |
| } | |
| } | |
| } | |
| // Bug Win7 737383: Win7 RTM shows both function and cmdlet help when there is | |
| // function and cmdlet with the same name. So, ignoring the ScriptCommandHelpProvider's | |
| // results and going to the CommandHelpProvider for further evaluation. | |
| if (isHelpInfoFound && helpProvider is not ScriptCommandHelpProvider) | |
| { | |
| // once helpInfo found from a provider..no need to traverse other providers. | |
| yield break; | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Forward help to the help provider with type forwardHelpCategory. | |
| /// | |
| /// This is used in the following known scenarios so far | |
| /// 1. Alias: helpInfo returned by Alias is not what end user needed. | |
| /// The real help can be retrieved from Command help provider. | |
| /// </summary> | |
| /// <param name="helpInfo"></param> | |
| /// <param name="helpRequest">Help request object.</param> | |
| /// <returns>Never returns null.</returns> | |
| /// <remarks>helpInfos is not null or empty.</remarks> | |
| private IEnumerable<HelpInfo> ForwardHelp(HelpInfo helpInfo, HelpRequest helpRequest) | |
| { | |
| // findout if this helpInfo needs to be processed further.. | |
| if (helpInfo.ForwardHelpCategory == HelpCategory.None && string.IsNullOrEmpty(helpInfo.ForwardTarget)) | |
| { | |
| // this helpInfo is final...so store this in result | |
| // and move on.. | |
| yield return helpInfo; | |
| } | |
| else | |
| { | |
| // Find out a capable provider to process this request... | |
| HelpCategory forwardHelpCategory = helpInfo.ForwardHelpCategory; | |
| bool isHelpInfoProcessed = false; | |
| for (int i = 0; i < this.HelpProviders.Count; i++) | |
| { | |
| HelpProvider helpProvider = (HelpProvider)this.HelpProviders[i]; | |
| if ((helpProvider.HelpCategory & forwardHelpCategory) != HelpCategory.None) | |
| { | |
| isHelpInfoProcessed = true; | |
| // If this help info is processed by this provider already, break | |
| // out of the provider loop... | |
| foreach (HelpInfo fwdResult in helpProvider.ProcessForwardedHelp(helpInfo, helpRequest)) | |
| { | |
| // Add each helpinfo to our repository | |
| foreach (HelpInfo fHelpInfo in ForwardHelp(fwdResult, helpRequest)) | |
| { | |
| yield return fHelpInfo; | |
| } | |
| // get out of the provider loop.. | |
| yield break; | |
| } | |
| } | |
| } | |
| if (!isHelpInfoProcessed) | |
| { | |
| // we are here because no help provider processed the helpinfo.. | |
| // so add this to our repository.. | |
| yield return helpInfo; | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Get the default help info (normally when help target is empty). | |
| /// </summary> | |
| /// <returns></returns> | |
| private HelpInfo GetDefaultHelp() | |
| { | |
| HelpRequest helpRequest = new HelpRequest("default", HelpCategory.DefaultHelp); | |
| foreach (HelpInfo helpInfo in ExactMatchHelp(helpRequest)) | |
| { | |
| // return just the first helpInfo object | |
| return helpInfo; | |
| } | |
| return null; | |
| } | |
| /// <summary> | |
| /// Get help that exactly match the target. | |
| /// </summary> | |
| /// <param name="helpRequest">Help request object.</param> | |
| /// <returns>An IEnumerable of HelpInfo object.</returns> | |
| private IEnumerable<HelpInfo> SearchHelp(HelpRequest helpRequest) | |
| { | |
| int countOfHelpInfosFound = 0; | |
| bool searchInHelpContent = false; | |
| bool shouldBreak = false; | |
| HelpProgressEventArgs progress = new HelpProgressEventArgs(); | |
| progress.Activity = StringUtil.Format(HelpDisplayStrings.SearchingForHelpContent, helpRequest.Target); | |
| progress.Completed = false; | |
| progress.PercentComplete = 0; | |
| try | |
| { | |
| OnProgress(this, progress); | |
| // algorithm: | |
| // 1. Search for pattern (helpRequest.Target) in command name | |
| // 2. If Step 1 fails then search for pattern in help content | |
| do | |
| { | |
| // we should not continue the search loop if we are | |
| // searching in the help content (as this is the last step | |
| // in our search algorithm). | |
| if (searchInHelpContent) | |
| { | |
| shouldBreak = true; | |
| } | |
| for (int i = 0; i < this.HelpProviders.Count; i++) | |
| { | |
| HelpProvider helpProvider = (HelpProvider)this.HelpProviders[i]; | |
| if ((helpProvider.HelpCategory & helpRequest.HelpCategory) > 0) | |
| { | |
| foreach (HelpInfo helpInfo in helpProvider.SearchHelp(helpRequest, searchInHelpContent)) | |
| { | |
| if (_executionContext.CurrentPipelineStopping) | |
| { | |
| yield break; | |
| } | |
| countOfHelpInfosFound++; | |
| yield return helpInfo; | |
| if ((countOfHelpInfosFound >= helpRequest.MaxResults) && (helpRequest.MaxResults > 0)) | |
| { | |
| yield break; | |
| } | |
| } | |
| } | |
| } | |
| // no need to do help content search once we have some help topics | |
| // with command name search. | |
| if (countOfHelpInfosFound > 0) | |
| { | |
| yield break; | |
| } | |
| // appears that we did not find any help matching command names..look for | |
| // pattern in help content. | |
| searchInHelpContent = true; | |
| if (this.HelpProviders.Count > 0) | |
| { | |
| progress.PercentComplete += (100 / this.HelpProviders.Count); | |
| OnProgress(this, progress); | |
| } | |
| } while (!shouldBreak); | |
| } | |
| finally | |
| { | |
| progress.Completed = true; | |
| progress.PercentComplete = 100; | |
| OnProgress(this, progress); | |
| } | |
| } | |
| private readonly ArrayList _helpProviders = new ArrayList(); | |
| /// <summary> | |
| /// Return the list of help providers initialized. | |
| /// </summary> | |
| /// <value>a list of help providers</value> | |
| internal ArrayList HelpProviders | |
| { | |
| get | |
| { | |
| return _helpProviders; | |
| } | |
| } | |
| /// <summary> | |
| /// Initialize help providers. | |
| /// </summary> | |
| /// <remarks> | |
| /// Currently we hardcode the sequence of help provider initialization. | |
| /// In the longer run, we probably will load help providers based on some provider catalog. That | |
| /// will allow new providers to be defined by customer. | |
| /// </remarks> | |
| private void InitializeHelpProviders() | |
| { | |
| HelpProvider helpProvider = null; | |
| helpProvider = new AliasHelpProvider(this); | |
| _helpProviders.Add(helpProvider); | |
| helpProvider = new ScriptCommandHelpProvider(this); | |
| _helpProviders.Add(helpProvider); | |
| helpProvider = new CommandHelpProvider(this); | |
| _helpProviders.Add(helpProvider); | |
| helpProvider = new ProviderHelpProvider(this); | |
| _helpProviders.Add(helpProvider); | |
| helpProvider = new PSClassHelpProvider(this); | |
| _helpProviders.Add(helpProvider); | |
| /* TH Bug#3141590 - Disable DscResourceHelp for ClientRTM due to perf issue. | |
| #if !CORECLR // TODO:CORECLR Add this back in once we support Get-DscResource | |
| helpProvider = new DscResourceHelpProvider(this); | |
| _helpProviders.Add(helpProvider); | |
| #endif | |
| */ | |
| helpProvider = new HelpFileHelpProvider(this); | |
| _helpProviders.Add(helpProvider); | |
| helpProvider = new DefaultHelpProvider(this); | |
| _helpProviders.Add(helpProvider); | |
| } | |
| // Eventually we will publicize the provider api and initialize | |
| // help providers using reflection. This is not in v1 right now. | |
| // | |
| private static HelpProviderInfo[] _providerInfos = new HelpProviderInfo[] | |
| { new HelpProviderInfo(string.Empty, "AliasHelpProvider", HelpCategory.Alias), | |
| new HelpProviderInfo(string.Empty, "CommandHelpProvider", HelpCategory.Command), | |
| new HelpProviderInfo(string.Empty, "ProviderHelpProvider", HelpCategory.Provider), | |
| new HelpProviderInfo(string.Empty, "OverviewHelpProvider", HelpCategory.Overview), | |
| new HelpProviderInfo(string.Empty, "GeneralHelpProvider", HelpCategory.General), | |
| new HelpProviderInfo(string.Empty, "FAQHelpProvider", HelpCategory.FAQ), | |
| new HelpProviderInfo(string.Empty, "GlossaryHelpProvider", HelpCategory.Glossary), | |
| new HelpProviderInfo(string.Empty, "HelpFileHelpProvider", HelpCategory.HelpFile), | |
| new HelpProviderInfo(string.Empty, "DefaultHelpHelpProvider", HelpCategory.DefaultHelp) | |
| }; | |
| private void InitializeHelpProviders() | |
| { | |
| for (int i = 0; i < _providerInfos.Length; i++) | |
| { | |
| HelpProvider helpProvider = GetHelpProvider(_providerInfos[i]); | |
| if (helpProvider != null) | |
| { | |
| helpProvider.Initialize(this._executionContext); | |
| _helpProviders.Add(helpProvider); | |
| } | |
| } | |
| } | |
| private HelpProvider GetHelpProvider(HelpProviderInfo providerInfo) | |
| { | |
| Assembly providerAssembly = null; | |
| if (string.IsNullOrEmpty(providerInfo.AssemblyName)) | |
| { | |
| providerAssembly = Assembly.GetExecutingAssembly(); | |
| } | |
| else | |
| { | |
| providerAssembly = Assembly.Load(providerInfo.AssemblyName); | |
| } | |
| try | |
| { | |
| if (providerAssembly != null) | |
| { | |
| HelpProvider helpProvider = | |
| (HelpProvider)providerAssembly.CreateInstance(providerInfo.ClassName, | |
| false, // don't ignore case | |
| BindingFlags.CreateInstance, | |
| null, // use default binder | |
| null, | |
| null, // use current culture | |
| null // no special activation attributes | |
| ); | |
| return helpProvider; | |
| } | |
| } | |
| catch (TargetInvocationException e) | |
| { | |
| System.Console.WriteLine(e.Message); | |
| if (e.InnerException != null) | |
| { | |
| System.Console.WriteLine(e.InnerException.Message); | |
| System.Console.WriteLine(e.InnerException.StackTrace); | |
| } | |
| } | |
| return null; | |
| } | |
| private HelpErrorTracer _helpErrorTracer; | |
| /// <summary> | |
| /// The error tracer for this help system. | |
| /// </summary> | |
| /// <value></value> | |
| internal HelpErrorTracer HelpErrorTracer | |
| { | |
| get | |
| { | |
| return _helpErrorTracer; | |
| } | |
| } | |
| /// <summary> | |
| /// Start a trace frame for a help file. | |
| /// </summary> | |
| /// <param name="helpFile"></param> | |
| /// <returns></returns> | |
| internal IDisposable Trace(string helpFile) | |
| { | |
| if (_helpErrorTracer == null) | |
| return null; | |
| return _helpErrorTracer.Trace(helpFile); | |
| } | |
| /// <summary> | |
| /// Trace an error within a help frame, which is tracked by help tracer itself. | |
| /// </summary> | |
| /// <param name="errorRecord"></param> | |
| internal void TraceError(ErrorRecord errorRecord) | |
| { | |
| if (_helpErrorTracer == null) | |
| return; | |
| _helpErrorTracer.TraceError(errorRecord); | |
| } | |
| /// <summary> | |
| /// Trace a collection of errors within a help frame, which is tracked by | |
| /// help tracer itself. | |
| /// </summary> | |
| /// <param name="errorRecords"></param> | |
| internal void TraceErrors(Collection<ErrorRecord> errorRecords) | |
| { | |
| if (_helpErrorTracer == null || errorRecords == null) | |
| return; | |
| _helpErrorTracer.TraceErrors(errorRecords); | |
| } | |
| private CultureInfo _culture; | |
| /// <summary> | |
| /// Before each help request is serviced, current thread culture will validate | |
| /// against the current culture of help system. If there is a miss match, each | |
| /// help provider will be notified of the culture change. | |
| /// </summary> | |
| private void ValidateHelpCulture() | |
| { | |
| CultureInfo culture = CultureInfo.CurrentUICulture; | |
| if (_culture == null) | |
| { | |
| _culture = culture; | |
| return; | |
| } | |
| if (_culture.Equals(culture)) | |
| { | |
| return; | |
| } | |
| _culture = culture; | |
| ResetHelpProviders(); | |
| } | |
| /// <summary> | |
| /// Reset help providers providers. This normally corresponds to help culture change. | |
| /// | |
| /// Normally help providers will remove cached help content to make sure new help | |
| /// requests will be served with content of right culture. | |
| /// </summary> | |
| internal void ResetHelpProviders() | |
| { | |
| if (_helpProviders == null) | |
| return; | |
| for (int i = 0; i < _helpProviders.Count; i++) | |
| { | |
| HelpProvider helpProvider = (HelpProvider)_helpProviders[i]; | |
| helpProvider.Reset(); | |
| } | |
| return; | |
| } | |
| private readonly Lazy<Dictionary<Ast, Token[]>> _scriptBlockTokenCache = new Lazy<Dictionary<Ast, Token[]>>(isThreadSafe: true); | |
| internal Dictionary<Ast, Token[]> ScriptBlockTokenCache | |
| { | |
| get { return _scriptBlockTokenCache.Value; } | |
| } | |
| internal void ClearScriptBlockTokenCache() | |
| { | |
| if (_scriptBlockTokenCache.IsValueCreated) | |
| { | |
| _scriptBlockTokenCache.Value.Clear(); | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Help progress info. | |
| /// </summary> | |
| internal class HelpProgressEventArgs : EventArgs | |
| { | |
| internal bool Completed { get; set; } | |
| internal string Activity { get; set; } | |
| internal int PercentComplete { get; set; } | |
| } | |
| /// <summary> | |
| /// This is the structure to keep track of HelpProvider Info. | |
| /// </summary> | |
| internal class HelpProviderInfo | |
| { | |
| internal string AssemblyName = string.Empty; | |
| internal string ClassName = string.Empty; | |
| internal HelpCategory HelpCategory = HelpCategory.None; | |
| /// <summary> | |
| /// Constructor. | |
| /// </summary> | |
| /// <param name="assemblyName">Assembly that contains this help provider.</param> | |
| /// <param name="className">The class that implements this help provider.</param> | |
| /// <param name="helpCategory">Help category of this help provider.</param> | |
| internal HelpProviderInfo(string assemblyName, string className, HelpCategory helpCategory) | |
| { | |
| this.AssemblyName = assemblyName; | |
| this.ClassName = className; | |
| this.HelpCategory = helpCategory; | |
| } | |
| } | |
| /// <summary> | |
| /// Help categories. | |
| /// </summary> | |
| [] | |
| internal enum HelpCategory | |
| { | |
| /// <summary> | |
| /// Undefined help category. | |
| /// </summary> | |
| None = 0x00, | |
| /// <summary> | |
| /// Alias help. | |
| /// </summary> | |
| Alias = 0x01, | |
| /// <summary> | |
| /// Cmdlet help. | |
| /// </summary> | |
| Cmdlet = 0x02, | |
| /// <summary> | |
| /// Provider help. | |
| /// </summary> | |
| Provider = 0x04, | |
| /// <summary> | |
| /// General keyword help. | |
| /// </summary> | |
| General = 0x10, | |
| /// <summary> | |
| /// FAQ's. | |
| /// </summary> | |
| FAQ = 0x20, | |
| /// <summary> | |
| /// Glossary and term definitions. | |
| /// </summary> | |
| Glossary = 0x40, | |
| /// <summary> | |
| /// Help that is contained in help file. | |
| /// </summary> | |
| HelpFile = 0x80, | |
| /// <summary> | |
| /// Help from a script block. | |
| /// </summary> | |
| ScriptCommand = 0x100, | |
| /// <summary> | |
| /// Help for a function. | |
| /// </summary> | |
| Function = 0x200, | |
| /// <summary> | |
| /// Help for a filter. | |
| /// </summary> | |
| Filter = 0x400, | |
| /// <summary> | |
| /// Help for an external script (i.e. for a *.ps1 file) | |
| /// </summary> | |
| ExternalScript = 0x800, | |
| /// <summary> | |
| /// All help categories. | |
| /// </summary> | |
| All = 0xFFFFF, | |
| /// <summary> | |
| /// Default Help. | |
| /// </summary> | |
| DefaultHelp = 0x1000, | |
| /// <summary> | |
| /// Help for a Configuration. | |
| /// </summary> | |
| Configuration = 0x4000, | |
| /// <summary> | |
| /// Help for DSC Resource. | |
| /// </summary> | |
| DscResource = 0x8000, | |
| /// <summary> | |
| /// Help for PS Classes. | |
| /// </summary> | |
| Class = 0x10000 | |
| } | |
| } | |