Onyxl's picture
Upload 2661 files
8c763fb verified
// 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>
[Cmdlet(VerbsOther.Use, "Transaction", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135271")]
public class UseTransactionCommand : PSCmdlet
{
/// <summary>
/// This parameter specifies the script block to run in the current
/// PowerShell transaction.
/// </summary>
[Parameter(Position = 0, Mandatory = true)]
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);
}
}
}
}
}