Run application continuously - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:12:50Z http://stackoverflow.com/feeds/question/593273 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/593273/run-application-continuously 3 Run application continuously Tommy 2009-02-27T02:02:27Z 2009-02-27T03:45:20Z <p>Whats the smartest way to run an application continuously so that it doesn't exit after it hits the bottom? Instead it starts again from the top of main and only exits when commanded. (This is in C) </p> http://stackoverflow.com/questions/593273/run-application-continuously/593280#593280 2 Answer by Kibbee for Run application continuously Kibbee 2009-02-27T02:04:20Z 2009-02-27T02:04:20Z <pre><code>while (true) { .... } </code></pre> <p>To elaborate a bit more, you want to put something in that loop that allows you to let the user do repeated actions. Whether it's reading key strokes and performing actions based on the keys pressed, or reading data from the socket and sending back a response. </p> http://stackoverflow.com/questions/593273/run-application-continuously/593283#593283 11 Answer by geofftnz for Run application continuously geofftnz 2009-02-27T02:06:57Z 2009-02-27T02:06:57Z <p>You should always have some way of exiting cleanly. I'd suggest moving the code off to another function that returns a flag to say whether to exit or not.</p> <pre><code>int main(int argc, char*argv[]) { // param parsing, init code while (DoStuff()); // cleanup code return 0; } int DoStuff(void) { // code that you would have had in main if (we_should_exit) return 0; return 1; } </code></pre> http://stackoverflow.com/questions/593273/run-application-continuously/593322#593322 4 Answer by Parappa for Run application continuously Parappa 2009-02-27T02:33:49Z 2009-02-27T02:39:25Z <p>Most applications that don't fall through enter some kind of event processing loop that allows for event-driven programming.</p> <p>Under Win32 development, for instance, you'd write your <a href="http://msdn.microsoft.com/en-us/library/ms633559%28VS.85%29.aspx" rel="nofollow">WinMain</a> function to continually handle new messages until it receives the WM_QUIT message telling the application to finish. This code typically takes the following form:</p> <pre><code>// ...meanwhile, somewhere inside WinMain() MSG msg; while (GetMessage(&amp;msg, NULL, 0, 0)) { TranslateMessage(&amp;msg); DispatchMessage(&amp;msg); } </code></pre> <p>If you are writing a game using <a href="http://www.libsdl.org/" rel="nofollow">SDL</a>, you would loop on SDL events until deciding to exit, such as when you detect that the user has hit the Esc key. Some code to do that might resemble the following:</p> <pre><code>bool done = false; while (!done) { SDL_Event event; while (SDL_PollEvent(&amp;event)) { switch (event.type) { case SDL_QUIT: done = true; break; case SDL_KEYDOWN: if (event.key.keysym.sym == SDLK_ESCAPE) { done = true; } break; } } } </code></pre> <p>You may also want to read about <a href="http://en.wikipedia.org/wiki/Daemon%5F%28computer%5Fsoftware%29" rel="nofollow">Unix Daemons</a> and <a href="http://en.wikipedia.org/wiki/Windows%5Fservice" rel="nofollow">Windows Services</a>.</p> http://stackoverflow.com/questions/593273/run-application-continuously/593434#593434 1 Answer by paxdiablo for Run application continuously paxdiablo 2009-02-27T03:45:20Z 2009-02-27T03:45:20Z <p>There are a number of ways to "command" your application to exit (such as a global exit flag or return codes). Some have already touched on using an exit code so I'll put forward an easy modification to make to an existing program using an exit flag.</p> <p>Let's assume your program executes a system call to output a directory listing (full directory or a single file):</p> <pre><code>int main (int argCount, char *argValue[]) { char *cmdLine; if (argCount &lt; 2) { system ("ls"); } else { cmdLine = malloc (strlen (argValue[1]) + 4); sprintf (cmdLine, "ls %s", argValue[1]); system (cmdLine); } } </code></pre> <p>How do we go about making that loop until an exit condition. The following steps are taken:</p> <ul> <li>Change <code>main()</code> to <code>oldMain()</code>.</li> <li>Add new <code>exitFlag</code>.</li> <li>Add new <code>main()</code> to continuously call <code>oldMain()</code> until exit flagged.</li> <li>Change <code>oldMain()</code> to signal exit at some point.</li> </ul> <p>This gives the following code:</p> <pre><code>static int exitFlag = 0; int main (int argCount, char *argValue[]) { int retVal = 0; while (!exitFlag) { retVal = oldMain (argCount, argValue); } return retVal; } static int oldMain (int argCount, char *argValue[]) { char *cmdLine; if (argCount &lt; 2) { system ("ls"); } else { cmdLine = malloc (strlen (argValue[1]) + 4); sprintf (cmdLine, "ls %s", argValue[1]); system (cmdLine); } if (someCondition) exitFlag = 1; } </code></pre>