C#保持子进程运行

时间:2011-07-23 11:25:23

标签: c# .net process subprocess daemon

我在C#NET中编写了一个小程序,以便保持Java进程运行。我即将把它部署到一堆服务器上,我正在努力修复一些代码。就目前而言,我认为我的设置不正确。

保持我在LaunchMinecraft()函数中创建的进程运行的最佳方法是什么?我想拥有它,只要我的进程正在运行,它会在崩溃时继续重启此进程。

static void Main(string[] args)
{
    // Launch the Application
    LaunchMinecraft("minecraft_server.jar", "512");
}

public static void LaunchMinecraft(string file, string memory)
{
    string memParams = "-Xms" + memory + "M" + " -Xmx" + memory + "M ";
    string args = memParams + "-jar " + file + " nogui";
    ProcessStartInfo processInfo = new ProcessStartInfo("java.exe", args);
    processInfo.CreateNoWindow = true;
    processInfo.UseShellExecute = false;
    processInfo.RedirectStandardOutput = true;
    processInfo.RedirectStandardInput = true;
    processInfo.RedirectStandardError = true;

    try
    {
        using (Process minecraftProcess = Process.Start(processInfo))
        {
            // Store Process Globally to access elsewhere
            JavaProcess = minecraftProcess;

            // Creates a Repeating Poll Timer (30 Seconds)
            // Use this to keep the Minecraft's Process Affinity/Priority the same as the Daemon
            PollTimer = new System.Timers.Timer();
            PollTimer.Elapsed += new ElapsedEventHandler(Event_PollProcess);
            PollTimer.Interval = 5000;
            PollTimer.Start();

            Console.WriteLine("Minecraft Process Started.");

            // Setup Callback for Redirected Output/Error Streams
            minecraftProcess.OutputDataReceived += new DataReceivedEventHandler(Handler_ProcessOutput);
            minecraftProcess.ErrorDataReceived += new DataReceivedEventHandler(Handler_ProcessError);

            // Steam Writer
            streamWriter = minecraftProcess.StandardInput;

            minecraftProcess.BeginOutputReadLine();
            minecraftProcess.BeginErrorReadLine();

            while (minecraftProcess.HasExited == false)
            {
                String strInput = Console.ReadLine();
                SendProcessCmd(strInput);
            }

            minecraftProcess.WaitForExit();
        }
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
    }
}

1 个答案:

答案 0 :(得分:0)

Process类本身无法阻止外部程序关闭,您必须使用@Jalal提及的Exited事件或轮询该进程的HasExited属性。