为什么在此代码中没有捕获ThreadAbortException并且有两个进程和输出重定向?

时间:2014-02-12 16:43:51

标签: c# .net try-catch-finally threadabortexception

我的代码如下,仅用于问题说明。请忽略使用CodeDom编译源代码的部分。另外,如果您尝试它,它会使“其他进程”可执行文件继续运行并消耗CPU时间。

真正的问题是我启动线程,然后中止线程并看到“线程中止已启动”消息并且有

  

mscorlib.dll中出现'System.Threading.ThreadAbortException'类型的第一次机会异常

调试器输出中的

消息,但是没有调用catchfinally块,并且这些块没有输出。

当然因为为处理重定向输出而创建的额外线程没有中止,程序会永远挂起,但是......

为什么不调用catchfinally

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Diagnostics;
using Microsoft.CSharp;
using System.CodeDom.Compiler;

namespace ConsoleApplication
{
  class Program
  {
    static void Main(string[] args)
    {
      new Program().payload();
    }

    private void payload()
    {
      var otherExecutableName = "OtherProcess.exe";
      compileOtherProcessExecutable(otherExecutableName);
      var thread = new System.Threading.Thread(() => threadFunc(otherExecutableName));
      thread.Start();
      Thread.Sleep( 1000 );
      thread.Abort();
      Debug.WriteLine("Thread abort initiated");
    }

    private void threadFunc( String secondExecutableName )
    {
        Process process = null;
        try {
            process = new Process();
            {
                process.StartInfo.FileName = secondExecutableName;
                process.StartInfo.UseShellExecute = false;
                process.StartInfo.RedirectStandardOutput = true;
                process.StartInfo.RedirectStandardError = true;

                process.OutputDataReceived += new DataReceivedEventHandler(outputHandler);
                process.ErrorDataReceived += new DataReceivedEventHandler(outputHandler);

                process.Start();

                process.BeginOutputReadLine();
                process.BeginErrorReadLine();

                process.WaitForExit();
            }
        } catch( Exception e ) {
            Debug.WriteLine( "Catch block: " + e.Message );
        } finally {
            Debug.WriteLine( "Finally block" );
            if( process != null ) {
                process.Kill();
                Debug.WriteLine( "Process killed" );
            }
        }
    }

    static void compileOtherProcessExecutable(string filePath)
    {
        using (var compiler = new CSharpCodeProvider())
        {
            var parameters = new CompilerParameters(null, filePath, true);
            parameters.GenerateExecutable = true;
            var compResult = compiler.CompileAssemblyFromSource( parameters, otherProcessCode);
            var errs = compResult.Errors;
            if (errs.HasErrors)
            {
                var err = errs.Cast<CompilerError>().First();
                throw new InvalidOperationException(String.Format(
                    "Compilation failed. Line {0}: {1}", err.Line, err.ErrorText));
            }
        }
    }

    private void outputHandler(object process, DataReceivedEventArgs output)
    {
    }

    static readonly String otherProcessCode =
        @"class Program {
            public static void Main(string[] args)
            {
                while( true ) {
                }
            }
        }";
  }
}

2 个答案:

答案 0 :(得分:3)

问题是WaitForExit电话。此托管调用最终将在本机框架中触底。当线程使用本机代码时发生Abort调用时,在线程返回托管代码之前,实际上不会发生任何事情。在这种情况下,线程正在等待进程完成,因此在您实际终止进程之前不会实际返回

注意:即使抛出异常,catch块也不会实际捕获它。该异常将在块结束时重新抛出。您需要捕获它并调用ResetAbort方法

答案 1 :(得分:2)

您可以阅读here

  

ThreadAbortException是一个可以捕获的特殊异常,但它会在catch块的末尾自动再次引发。引发此异常时,运行时将在结束线程之前执行所有finally块。

但是,我认为你应该将整个方法包装在try中。

或者,你认为你的外部进程在调用abort之前就已经完成了,因此带有catch的方法,一个名为threadFunc的方法不再执行了吗?