First public contribution.
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 #include <tools/certapp-api.h>
26 #define CERTAPP "certapp"
27 typedef const char *ArgPtr;
37 #ifdef _BullseyeCoverage
38 #define BULLSEYE_OFF "BullseyeCoverage save off";
39 #define BULLSEYE_RESTORE "BullseyeCoverage restore";
42 #define BULLSEYE_RESTORE
46 static const char * const OPT_PROGRESS = "--progress=";
47 static const char * const OPT_ERRORS = "--errors=";
49 int RunCertApp(const char *aProgress, const char *aErrors,
50 int argc, char **argv)
54 if(argc<0) abort(); // Bad argument
58 const char **newArgv = (const char **)malloc(sizeof(ArgPtr)*newArgc);
60 const char *progFile = (aProgress) ? (aProgress) : ("-");
61 const char *errorsFile = (aErrors) ? (aErrors) : ("-");
63 char *progress=(char *)malloc(strlen(OPT_PROGRESS)+strlen(progFile)+1);
64 strcpy(progress, OPT_PROGRESS);
65 strcat(progress, progFile);
67 char *errors=(char *)malloc(strlen(OPT_ERRORS)+strlen(errorsFile)+1);
68 strcpy(errors, OPT_ERRORS);
69 strcat(errors, errorsFile);
72 newArgv[1] = progress;
77 newArgv[i+3] = argv[i];
79 newArgv[newArgc-1] = 0; // Terminate newArgv array
83 // Linux version to run certapp
89 printf("Failed to run %s\n", CERTAPP);
94 // Child side of vfork
97 execvp(CERTAPP, (char * const *)newArgv);
98 // Only get here if the exec call failed...
102 fprintf(stderr, "*** Could not find certapp executable to launch!\n");
106 fprintf(stderr, "*** Failed to launch certapp, execvp called failed with error code%d !\n", errno);
112 // Parent side of vfork
114 // Wait for certapp to finish
117 // Block until our child to exits
118 int waitStatus = waitpid(pid, &ret, 0);
119 if(waitStatus == pid)
121 // Our child process exited and ret contains its status
126 // Should never happen
132 // Signal handler interrupted us - re-issue waitpid call
141 // Windows version to run certapp
143 ret = _spawnvp(_P_WAIT, CERTAPP, newArgv);