Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Commands.Management /commands /management /UseTransactionCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Management.Automation; | |
| using System.Management.Automation.Internal; | |
| using Dbg = System.Management.Automation; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// A command that commits a transaction. | |
| /// </summary> | |
| [] | |
| public class UseTransactionCommand : PSCmdlet | |
| { | |
| /// <summary> | |
| /// This parameter specifies the script block to run in the current | |
| /// PowerShell transaction. | |
| /// </summary> | |
| [] | |
| public ScriptBlock TransactedScript | |
| { | |
| get | |
| { | |
| return _transactedScript; | |
| } | |
| set | |
| { | |
| _transactedScript = value; | |
| } | |
| } | |
| private ScriptBlock _transactedScript; | |
| /// <summary> | |
| /// Commits the current transaction. | |
| /// </summary> | |
| protected override void EndProcessing() | |
| { | |
| using (CurrentPSTransaction) | |
| { | |
| try | |
| { | |
| var emptyArray = Array.Empty<object>(); | |
| _transactedScript.InvokeUsingCmdlet( | |
| contextCmdlet: this, | |
| useLocalScope: false, | |
| errorHandlingBehavior: ScriptBlock.ErrorHandlingBehavior.WriteToCurrentErrorPipe, | |
| dollarUnder: null, | |
| input: emptyArray, | |
| scriptThis: AutomationNull.Value, | |
| args: emptyArray); | |
| } | |
| catch (Exception e) | |
| { | |
| // Catch-all OK. This is a third-party call-out. | |
| ErrorRecord errorRecord = new ErrorRecord(e, "TRANSACTED_SCRIPT_EXCEPTION", ErrorCategory.NotSpecified, null); | |
| // The "transaction timed out" exception is | |
| // exceedingly obtuse. We clarify things here. | |
| bool isTimeoutException = false; | |
| Exception tempException = e; | |
| while (tempException != null) | |
| { | |
| if (tempException is System.TimeoutException) | |
| { | |
| isTimeoutException = true; | |
| break; | |
| } | |
| tempException = tempException.InnerException; | |
| } | |
| if (isTimeoutException) | |
| { | |
| errorRecord = new ErrorRecord( | |
| new InvalidOperationException( | |
| TransactionResources.TransactionTimedOut), | |
| "TRANSACTION_TIMEOUT", | |
| ErrorCategory.InvalidOperation, | |
| e); | |
| } | |
| WriteError(errorRecord); | |
| } | |
| } | |
| } | |
| } | |
| } | |