开发者

Restart application on unhandled exception

开发者 https://www.devze.com 2023-03-06 10:04 出处:网络
Is it possible to have a program restart automatically if it crashes? Something like: An unhandled exception is thrown.

Is it possible to have a program restart automatically if it crashes?

Something like:

  1. An unhandled exception is thrown.
  2. Release all resources allocated by process.
  3. Start over and call main.

I would like this behavior for a server application I'm working on. If clients miss use the server it can get a std::bac_alloc exception, in which case I would like the server to simply res开发者_如何转开发tart instead of crashing and shutting down, thus avoiding manual startup.


I've done this before in Windows by running said program from another program via a win32 CreateProcess call. The other program then waits on the "monitored" process to exit, and calls its CreateProcess() again if it does. You wait for a process to exit by performing a WaitForSingleObject on the process' handle, which you get as one of the return values from your CreateProcess() call.

You will of course want to program in some way to make the monitoring process shut itself and its child process down.


Let Windows be your watchdog. You can call ChangeServiceConfig2 to set the failure actions for your service. (If your server isn't a service, then you're doing it wrong.) Specify SERVICE_CONFIG_FAILURE_ACTIONS for the dwInfoLevel parameter, and in the SERVICE_FAILURE_ACTIONS structure, set lpsaActions to an array of one or more SC_ACTION values. The type you want is SC_ACTION_RESTART.


I did something similar by implementing a watchdog. The watchdog ran as a service and would wait for a ping (called petting the dog) from the monitored process. If the monitored process died due to an exception, watchdog would cleanup and relaunch the application.

In case the application was not responding(no ping in a certain time) the watchdog would kill it and then restart it.

Here is a link to an implementation that you might want to use: http://www.codeproject.com/KB/security/WatchDog.aspx

(PS: I implemented my own version but I cannot post it here. I found this from a quick google search and have no first hand experience with this particular implementation.)


If you just catch the exception, it should be possible to just restart your server by internal programming logic without completely restarting the whole program.


Like @T.E.D., we've done this in an application we built. Our application is a windows service, so the helper program stops the service (eventually kill it, if it hangs) and start the service again.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号