| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- /*=========================================================================
- Program: KWSys - Kitware System Library
- Module: $RCSfile$
- Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "kwsysPrivate.h"
- #include KWSYS_HEADER(Process.h)
- /* Work-around CMake dependency scanning limitation. This must
- duplicate the above list of headers. */
- #if 0
- # include "Process.h.in"
- #endif
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #if defined(_WIN32)
- # include <windows.h>
- #else
- # include <unistd.h>
- #endif
- int runChild(const char* cmd[], int state, int exception, int value,
- int share, int output, int delay, double timeout);
- int test1(int argc, const char* argv[])
- {
- (void)argc; (void)argv;
- fprintf(stdout, "Output on stdout from test returning 0.\n");
- fprintf(stderr, "Output on stderr from test returning 0.\n");
- return 0;
- }
- int test2(int argc, const char* argv[])
- {
- (void)argc; (void)argv;
- fprintf(stdout, "Output on stdout from test returning 123.\n");
- fprintf(stderr, "Output on stderr from test returning 123.\n");
- return 123;
- }
- int test3(int argc, const char* argv[])
- {
- (void)argc; (void)argv;
- fprintf(stdout, "Output before sleep on stdout from timeout test.\n");
- fprintf(stderr, "Output before sleep on stderr from timeout test.\n");
- fflush(stdout);
- fflush(stderr);
- #if defined(_WIN32)
- Sleep(15000);
- #else
- sleep(15);
- #endif
- fprintf(stdout, "Output after sleep on stdout from timeout test.\n");
- fprintf(stderr, "Output after sleep on stderr from timeout test.\n");
- return 0;
- }
- int test4(int argc, const char* argv[])
- {
- #if defined(_WIN32)
- /* Avoid error diagnostic popups since we are crashing on purpose. */
- SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX);
- #endif
- (void)argc; (void)argv;
- fprintf(stdout, "Output before crash on stdout from crash test.\n");
- fprintf(stderr, "Output before crash on stderr from crash test.\n");
- fflush(stdout);
- fflush(stderr);
- *(int*)0 = 0;
- fprintf(stdout, "Output after crash on stdout from crash test.\n");
- fprintf(stderr, "Output after crash on stderr from crash test.\n");
- return 0;
- }
- int test5(int argc, const char* argv[])
- {
- int r;
- const char* cmd[4];
- (void)argc;
- cmd[0] = argv[0];
- cmd[1] = "run";
- cmd[2] = "4";
- cmd[3] = 0;
- fprintf(stdout, "Output on stdout before recursive test.\n");
- fprintf(stderr, "Output on stderr before recursive test.\n");
- fflush(stdout);
- fflush(stderr);
- r = runChild(cmd, kwsysProcess_State_Exception,
- kwsysProcess_Exception_Fault, 1, 1, 1, 0, 15);
- fprintf(stdout, "Output on stdout after recursive test.\n");
- fprintf(stderr, "Output on stderr after recursive test.\n");
- fflush(stdout);
- fflush(stderr);
- return r;
- }
- #define TEST6_SIZE (4096*2)
- void test6(int argc, const char* argv[])
- {
- int i;
- char runaway[TEST6_SIZE+1];
- (void)argc; (void)argv;
- for(i=0;i < TEST6_SIZE;++i)
- {
- runaway[i] = '.';
- }
- runaway[TEST6_SIZE] = '\n';
- /* Generate huge amounts of output to test killing. */
- for(;;)
- {
- fwrite(runaway, 1, TEST6_SIZE+1, stdout);
- fflush(stdout);
- }
- }
- int runChild(const char* cmd[], int state, int exception, int value,
- int share, int output, int delay, double timeout)
- {
- int result = 0;
- char* data = 0;
- int length = 0;
- kwsysProcess* kp = kwsysProcess_New();
- if(!kp)
- {
- fprintf(stderr, "kwsysProcess_New returned NULL!\n");
- return 1;
- }
-
- kwsysProcess_SetCommand(kp, cmd);
- kwsysProcess_SetTimeout(kp, timeout);
- if(share)
- {
- kwsysProcess_SetPipeShared(kp, kwsysProcess_Pipe_STDOUT, 1);
- kwsysProcess_SetPipeShared(kp, kwsysProcess_Pipe_STDERR, 1);
- }
- kwsysProcess_Execute(kp);
- if(!share)
- {
- while(kwsysProcess_WaitForData(kp, &data, &length, 0))
- {
- if(output)
- {
- fwrite(data, 1, length, stdout);
- fflush(stdout);
- }
- if(delay)
- {
- /* Purposely sleeping only on Win32 to let pipe fill up. */
- #if defined(_WIN32)
- Sleep(100);
- #endif
- }
- }
- }
-
- kwsysProcess_WaitForExit(kp, 0);
-
- switch (kwsysProcess_GetState(kp))
- {
- case kwsysProcess_State_Starting:
- printf("No process has been executed.\n"); break;
- case kwsysProcess_State_Executing:
- printf("The process is still executing.\n"); break;
- case kwsysProcess_State_Expired:
- printf("Child was killed when timeout expired.\n"); break;
- case kwsysProcess_State_Exited:
- printf("Child exited with value = %d\n",
- kwsysProcess_GetExitValue(kp));
- result = ((exception != kwsysProcess_GetExitException(kp)) ||
- (value != kwsysProcess_GetExitValue(kp))); break;
- case kwsysProcess_State_Killed:
- printf("Child was killed by parent.\n"); break;
- case kwsysProcess_State_Exception:
- printf("Child terminated abnormally: %s\n",
- kwsysProcess_GetExceptionString(kp));
- result = ((exception != kwsysProcess_GetExitException(kp)) ||
- (value != kwsysProcess_GetExitValue(kp))); break;
- case kwsysProcess_State_Error:
- printf("Error in administrating child process: [%s]\n",
- kwsysProcess_GetErrorString(kp)); break;
- };
-
- if(result)
- {
- if(exception != kwsysProcess_GetExitException(kp))
- {
- fprintf(stderr, "Mismatch in exit exception. "
- "Should have been %d, was %d.\n",
- exception, kwsysProcess_GetExitException(kp));
- }
- if(value != kwsysProcess_GetExitValue(kp))
- {
- fprintf(stderr, "Mismatch in exit value. "
- "Should have been %d, was %d.\n",
- value, kwsysProcess_GetExitValue(kp));
- }
- }
-
- if(kwsysProcess_GetState(kp) != state)
- {
- fprintf(stderr, "Mismatch in state. "
- "Should have been %d, was %d.\n",
- state, kwsysProcess_GetState(kp));
- result = 1;
- }
-
- kwsysProcess_Delete(kp);
- return result;
- }
- int main(int argc, const char* argv[])
- {
- int n = 0;
- #if 0
- {
- HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE);
- DuplicateHandle(GetCurrentProcess(), out,
- GetCurrentProcess(), &out, 0, FALSE,
- DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE);
- SetStdHandle(STD_OUTPUT_HANDLE, out);
- }
- {
- HANDLE out = GetStdHandle(STD_ERROR_HANDLE);
- DuplicateHandle(GetCurrentProcess(), out,
- GetCurrentProcess(), &out, 0, FALSE,
- DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE);
- SetStdHandle(STD_ERROR_HANDLE, out);
- }
- #endif
- if(argc == 2)
- {
- n = atoi(argv[1]);
- }
- else if(argc == 3)
- {
- n = atoi(argv[2]);
- }
- /* Check arguments. */
- if(n < 1 || n > 6 || (argc == 3 && strcmp(argv[1], "run") != 0))
- {
- fprintf(stdout, "Usage: %s <test number>\n", argv[0]);
- return 1;
- }
- if(argc == 3)
- {
- switch (n)
- {
- case 1: return test1(argc, argv);
- case 2: return test2(argc, argv);
- case 3: return test3(argc, argv);
- case 4: return test4(argc, argv);
- case 5: return test5(argc, argv);
- case 6: test6(argc, argv); return 0;
- }
- fprintf(stderr, "Invalid test number %d.\n", n);
- return 1;
- }
-
- if(n >= 0 && n <= 6)
- {
- int states[6] =
- {
- kwsysProcess_State_Exited,
- kwsysProcess_State_Exited,
- kwsysProcess_State_Expired,
- kwsysProcess_State_Exception,
- kwsysProcess_State_Exited,
- kwsysProcess_State_Expired
- };
- int exceptions[6] =
- {
- kwsysProcess_Exception_None,
- kwsysProcess_Exception_None,
- kwsysProcess_Exception_None,
- kwsysProcess_Exception_Fault,
- kwsysProcess_Exception_None,
- kwsysProcess_Exception_None
- };
- int values[6] = {0, 123, 1, 1, 0, 0};
- int outputs[6] = {1, 1, 1, 1, 1, 0};
- int delays[6] = {0, 0, 0, 0, 0, 1};
- double timeouts[6] = {10, 10, 10, 10, 30, 10};
- int r;
- const char* cmd[4];
- #ifdef _WIN32
- char* argv0 = 0;
- if(n == 0 && (argv0 = strdup(argv[0])))
- {
- /* Try converting to forward slashes to see if it works. */
- char* c;
- for(c=argv0; *c; ++c)
- {
- if(*c == '\\')
- {
- *c = '/';
- }
- }
- cmd[0] = argv0;
- }
- else
- {
- cmd[0] = argv[0];
- }
- #else
- cmd[0] = argv[0];
- #endif
- cmd[1] = "run";
- cmd[2] = argv[1];
- cmd[3] = 0;
- fprintf(stdout, "Output on stdout before test %d.\n", n);
- fprintf(stderr, "Output on stderr before test %d.\n", n);
- fflush(stdout);
- fflush(stderr);
- #if defined(__FreeBSD__)
- if(n == 4)
- {
- putenv("TEST_PROCESS_4=1");
- }
- #endif
- r = runChild(cmd, states[n-1], exceptions[n-1], values[n-1], 0,
- outputs[n-1], delays[n-1], timeouts[n-1]);
- fprintf(stdout, "Output on stdout after test %d.\n", n);
- fprintf(stderr, "Output on stderr after test %d.\n", n);
- fflush(stdout);
- fflush(stderr);
- #if _WIN32
- if(argv0) { free(argv0); }
- #endif
- return r;
- }
- else
- {
- fprintf(stderr, "Test number out of range\n");
- return 1;
- }
- }
|