// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections.ObjectModel; using Dbg = System.Management.Automation; namespace System.Management.Automation { /// /// Exposes the Cmdlet Family Provider's drives to the Cmdlet base class. The methods of this class /// get and set provider data in session state. /// public sealed class DriveManagementIntrinsics { #region Constructors /// /// Hide the default constructor since we always require an instance of SessionState. /// private DriveManagementIntrinsics() { Dbg.Diagnostics.Assert( false, "This constructor should never be called. Only the constructor that takes an instance of SessionState should be called."); } /// /// Constructs a Drive management facade. /// /// /// The instance of session state that facade wraps. /// /// /// If is null. /// internal DriveManagementIntrinsics(SessionStateInternal sessionState) { if (sessionState == null) { throw PSTraceSource.NewArgumentNullException(nameof(sessionState)); } _sessionState = sessionState; } #endregion Constructors #region Public methods /// /// Gets the drive information for the current working drive. /// /// /// This property is readonly. To set the current drive use the /// SetLocation method. /// public PSDriveInfo Current { get { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); return _sessionState.CurrentDrive; } } #region New /// /// Creates a new PSDrive in session state. /// /// /// The drive to be created. /// /// /// The ID of the scope to create the drive in. This may be one of the scope /// keywords like global or local, or it may be an numeric offset of the scope /// generation relative to the current scope. /// If the scopeID is null or empty the local scope is used. /// /// /// The drive that was created. /// /// /// If is null. /// /// /// If the drive already exists, /// or /// If .Name contains one or more invalid characters; ~ / \\ . : /// /// /// If the provider is not a DriveCmdletProvider. /// /// /// The provider for the could not be found. /// /// /// If the provider threw an exception or returned null. /// public PSDriveInfo New(PSDriveInfo drive, string scope) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); // Parameter validation is done in the session state object return _sessionState.NewDrive(drive, scope); } /// /// Creates a new MSH drive in session state. /// /// /// The drive to be created. /// /// /// The ID of the scope to create the drive in. This may be one of the scope /// keywords like global or local, or it may be an numeric offset of the scope /// generation relative to the current scope. /// If the scopeID is null or empty the local scope is used. /// /// /// The context under which this command is running. /// /// /// Nothing. The drive that is created is written to the context. /// /// /// If or is null. /// /// /// If the drive already exists /// or /// If .Name contains one or more invalid characters; ~ / \\ . : /// /// /// If the provider is not a DriveCmdletProvider. /// /// /// The provider for the could not be found. /// /// /// If the provider threw an exception or returned null. /// internal void New( PSDriveInfo drive, string scope, CmdletProviderContext context) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); // Parameter validation is done in the session state object _sessionState.NewDrive(drive, scope, context); } /// /// Gets an object that defines the additional parameters for the NewDrive implementation /// for a provider. /// /// /// The provider ID for the drive that is being created. /// /// /// The context under which this method is being called. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// /// /// If the is not a DriveCmdletProvider. /// /// /// If does not exist. /// internal object NewDriveDynamicParameters( string providerId, CmdletProviderContext context) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); // Parameter validation is done in the session state object return _sessionState.NewDriveDynamicParameters(providerId, context); } #endregion New #region Remove /// /// Removes the specified drive. /// /// /// The name of the drive to be removed. /// /// /// Determines whether drive should be forcefully removed even if there was errors. /// /// /// The ID of the scope to remove the drive from. This may be one of the scope /// keywords like global or local, or it may be an numeric offset of the scope /// generation relative to the current scope. /// If the scopeID is null or empty the local scope is used. /// public void Remove(string driveName, bool force, string scope) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); // Parameter validation is done in the session state object _sessionState.RemoveDrive(driveName, force, scope); } /// /// Removes the specified drive. /// /// /// The name of the drive to be removed. /// /// /// Determines whether drive should be forcefully removed even if there was errors. /// /// /// The ID of the scope to remove the drive from. This may be one of the scope /// keywords like global or local, or it may be an numeric offset of the scope /// generation relative to the current scope. /// If the scopeID is null or empty the local scope is used. /// /// /// The context under which this command is running. /// internal void Remove( string driveName, bool force, string scope, CmdletProviderContext context) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); // Parameter validation is done in the session state object _sessionState.RemoveDrive(driveName, force, scope, context); } #endregion Remove #region Get /// /// Gets the drive information for the drive specified by name. /// /// /// The name of the drive to get the drive information for. /// /// /// The drive information that represents the drive of the specified name. /// /// /// If is null. /// /// /// If there is no drive with . /// public PSDriveInfo Get(string driveName) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); // Parameter validation is done in the session state object return _sessionState.GetDrive(driveName); } /// /// Gets the drive information for the drive specified by name. /// /// /// The name of the drive to get the drive information for. /// /// /// The ID of the scope to get the drive from. This may be one of the scope /// keywords like global or local, or it may be an numeric offset of the scope /// generation relative to the current scope. /// If the scopeID is null or empty the local scope is used. /// /// /// The drive information that represents the drive of the specified name. /// /// /// If is null. /// /// /// If is less than zero, or not /// a number and not "script", "global", "local", or "private" /// /// /// If is less than zero or greater than the number of currently /// active scopes. /// public PSDriveInfo GetAtScope(string driveName, string scope) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); // Parameter validation is done in the session state object return _sessionState.GetDrive(driveName, scope); } /// /// Retrieves all the drives in the specified scope. /// public Collection GetAll() { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); return _sessionState.Drives(null); } /// /// Retrieves all the drives in the specified scope. /// /// /// The scope to retrieve the drives from. If null, the /// drives in all the scopes will be returned. /// /// /// If is less than zero, or not /// a number and not "script", "global", "local", or "private" /// /// /// If is less than zero or greater than the number of currently /// active scopes. /// public Collection GetAllAtScope(string scope) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); return _sessionState.Drives(scope); } /// /// Gets all the drives for the specified provider. /// /// /// The name of the provider to get the drives for. /// /// /// All the drives in all the scopes for the given provider. /// public Collection GetAllForProvider(string providerName) { Dbg.Diagnostics.Assert( _sessionState != null, "The only constructor for this class should always set the sessionState field"); // Parameter validation is done in the session state object return _sessionState.GetDrivesForProvider(providerName); } #endregion GetDrive #endregion Public methods #region private data // A private reference to the internal session state of the engine. private readonly SessionStateInternal _sessionState; #endregion private data } }