HANDLE hStdInPipeRead, hStdInPipeWrite;
HANDLE hStdOutPipeRead, hStdOutPipeWrite;
+ char *lpApplicationName = 0, *lpCommandLine = skip_whitespace (input), *p, ch;
struct linebuf lbuf;
- char *p, ch;
- char *cmd = xmalloc (strlen (getenv ("COMSPEC") + 4 + strlen (input) + 1);
- sprintf (cmd, "%s /c %s", getenv ("COMSPEC"), input);
+ for (p = lpCommandLine; !isspace ((int) *p); p++) {
+
+ if (*p == '/') {
+ *p = '\\';
+ }
+
+ }
memset (&sa, 0, sizeof (sa));
memset (&si, 0, sizeof (si));
if (!CreatePipe (&hStdInPipeRead, &hStdInPipeWrite, &sa, 0)) {
fprintf (stderr, "process_begin: CreateProcess(NULL, %s, ...) failed.\n", input);
- fprintf (stderr, "%s: %s:%lu: pipe: No error\n", program_name, filename, line_no);
+ fprintf (stderr, "%s: %s:%lu: pipe: %s\n", program_name, filename, line_no, strerror (GetLastError ()));
exit (EXIT_FAILURE);
}
- /*if (!SetHandleInformation (g_stdout_read, HANDLE_FLAG_INHERIT, 0)) {
+ if (!SetHandleInformation (hStdInPipeRead, HANDLE_FLAG_INHERIT, 0)) {
fprintf (stderr, "process_begin: CreateProcess(NULL, %s, ...) failed.\n", input);
- fprintf (stderr, "%s: %s:%lu: pipe: No error\n", program_name, filename, line_no);
+ fprintf (stderr, "%s: %s:%lu: pipe: %s\n", program_name, filename, line_no, strerror (GetLastError ()));
exit (EXIT_FAILURE);
- }*/
+ }
if (!CreatePipe (&hStdOutPipeRead, &hStdOutPipeWrite, &sa, 0)) {
fprintf (stderr, "process_begin: CreateProcess(NULL, %s, ...) failed.\n", input);
- fprintf (stderr, "%s: %s:%lu: pipe: No error\n", program_name, filename, line_no);
+ fprintf (stderr, "%s: %s:%lu: pipe: %s\n", program_name, filename, line_no, strerror (GetLastError ()));
exit (EXIT_FAILURE);
}
- /*if (!SetHandleInformation (g_stdin_read, HANDLE_FLAG_INHERIT, 0)) {
+ if (!SetHandleInformation (hStdOutPipeRead, HANDLE_FLAG_INHERIT, 0)) {
fprintf (stderr, "process_begin: CreateProcess(NULL, %s, ...) failed.\n", input);
- fprintf (stderr, "%s: %s:%lu: pipe: No error\n", program_name, filename, line_no);
+ fprintf (stderr, "%s: %s:%lu: pipe: %s\n", program_name, filename, line_no, strerror (GetLastError ()));
exit (EXIT_FAILURE);
- }*/
+ }
si.cb = sizeof (si);
si.dwFlags |= STARTF_USESTDHANDLES;
- if (!CreateProcess (getenv ("COMSPEC"), cmd, 0, 0, 1, CREATE_NO_WINDOW, 0, 0, &si, &pi)) {
+ if (!CreateProcess (lpApplicationName, lpCommandLine, 0, 0, 1, 0, 0, 0, &si, &pi)) {
fprintf (stderr, "process_begin: CreateProcess(NULL, %s, ...) failed.\n", input);
- fprintf (stderr, "%s: %s:%lu: pipe: No error\n", program_name, filename, line_no);
+ fprintf (stderr, "%s: %s:%lu: pipe: %s\n", program_name, filename, line_no, strerror (GetLastError ()));
exit (EXIT_FAILURE);
}
+ while (isspace ((int) *lbuf.start)) {
+ lbuf.start++;
+ }
+
p = lbuf.start;
- while ((ch = *p++)) {
+ while ((ch = *p)) {
- if (ch == '\n' || ch == '\r') {
- p[-1] = ' ';
+ if (ch == '\n') {
+
+ memmove (p, p + 1, strlen (p + 1));
+ *(p + strlen (p) - 1) = '\0';
+
+ if (p[-1] == '\r') {
+ p[-1] = ' ';
+ }
+
+ continue;
+
}
+
+ p++;
}
}
#else
# include <sys/wait.h>
+# include <errno.h>
# include <unistd.h>
static char *func_shell (const char *filename, unsigned long line_no, char *input) {
- FILE *cmd_output;
-
- struct linebuf lbuf;
+ int pipefd[2], pid, status;
char *p, ch;
- int pipefd[2], pid, status;
+ struct linebuf lbuf;
+ FILE *cmd_output;
if (pipe (pipefd) < 0) {
if (pid == 0) {
+ char *name = skip_whitespace (input), *space, *slash;
+
+ if ((space = strchr (name, ' '))) {
+ name = xstrndup (name, space - name);
+ }
+
dup2 (pipefd[1], STDOUT_FILENO);
close (pipefd[0]);
close (pipefd[1]);
- execl ("/bin/sh", program_name, "-c", input, NULL);
+ execl (name, (slash = strrchr (name, '/')) ? (slash + 1) : name, skip_whitespace (space), NULL);
- (void) filename; (void) line_no;
+ fprintf (stderr, "%s: %s:%lu: %s: %s\n", program_name, filename, line_no, name, strerror (errno));
exit (EXIT_FAILURE);
}
}
- wait (&status);
+ if (waitpid (pid, &status, 0) == -1) {
+
+ perror ("waitpid");
+ exit (EXIT_FAILURE);
+
+ }
if (status) {
* @file xmake.c
*****************************************************************************/
#include <ctype.h>
-#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#if !defined (_WIN32) && !defined (__WIN32__) && !defined (__MSDOS__)
+# define __USE_POSIX
+#endif
+
+#include <stdio.h>
+
#include <xmake/cstr.h>
#include <xmake/lib.h>
#include <xmake/read.h>
const char *os_name = "Unix";
#endif
+struct linebuf {
+
+ char *start;
+ unsigned long size;
+
+ FILE *f;
+
+};
+
static int doing_inference_rule_commands = 0;
+#if defined (_WIN32) || defined (__WIN32__)
+# include <windows.h>
+static void pipe_command (const char *filename, unsigned long line_no, char *input, int is_ignoring_errors, const char *name) {
+
+ DWORD dwExitCode;
+
+ PROCESS_INFORMATION pi;
+ STARTUPINFO si;
+
+ char *lpApplicationName = 0, *lpCommandLine = skip_whitespace (input), *p;
+
+ for (p = lpCommandLine; !isspace ((int) *p); p++) {
+
+ if (*p == '/') {
+ *p = '\\';
+ }
+
+ }
+
+ memset (&si, 0, sizeof (si));
+ memset (&pi, 0, sizeof (pi));
+
+ si.cb = sizeof (si);
+
+ if (!CreateProcess (lpApplicationName, lpCommandLine, 0, 0, 0, 0, 0, 0, &si, &pi)) {
+
+ fprintf (stderr, "process_begin: CreateProcess(NULL, %s, ...) failed.\n", input);
+ fprintf (stderr, "%s: %s:%lu: pipe: %s\n", program_name, filename, line_no, strerror (GetLastError ()));
+
+ exit (EXIT_FAILURE);
+
+ }
+
+ GetExitCodeProcess (pi.hProcess, &dwExitCode);
+
+ CloseHandle (pi.hProcess);
+ CloseHandle (pi.hThread);
+
+ if (dwExitCode) {
+
+ if (!is_ignoring_errors) {
+
+ char *space, *p = input;
+
+ if ((space = strchr (p, ' '))) {
+ p = xstrndup (p, space - p);
+ }
+
+ fprintf (stderr, "%s: %s: %s\n", program_name, p, strerror (GetLastError ()));
+ fprintf (stderr, "%s: *** [%s:%lu: %s] Error %ld\n", program_name, filename, line_no, name, dwExitCode);
+
+ exit (EXIT_FAILURE);
+
+ }
+
+ }
+
+}
+#else
+# include <sys/wait.h>
+# include <errno.h>
+# include <unistd.h>
+static void pipe_command (const char *filename, unsigned long line_no, char *input, int is_ignoring_errors, const char *name) {
+
+ int pipefd[2], pid, status;
+
+ if (pipe (pipefd) < 0) {
+
+ perror ("pipe");
+ exit (EXIT_FAILURE);
+
+ }
+
+ if ((pid = fork ()) < 0) {
+
+ perror ("fork");
+ exit (EXIT_FAILURE);
+
+ }
+
+ if (pid == 0) {
+
+ char *name = skip_whitespace (input), *space, *slash;
+
+ if ((space = strchr (name, ' '))) {
+ name = xstrndup (name, space - name);
+ }
+
+ execl (name, (slash = strrchr (name, '/')) ? (slash + 1) : name, skip_whitespace (space), NULL);
+
+ fprintf (stderr, "%s: %s:%lu: %s: %s\n", program_name, filename, line_no, name, strerror (errno));
+ exit (EXIT_FAILURE);
+
+ }
+
+ if (waitpid (pid, &status, 0) == -1) {
+
+ perror ("waitpid");
+ exit (EXIT_FAILURE);
+
+ }
+
+ if (status) {
+
+ if (!is_ignoring_errors) {
+
+ char *space, *p = input;
+
+ if ((space = strchr (p, ' '))) {
+ p = xstrndup (p, space - p);
+ }
+
+ fprintf (stderr, "%s: %s: No such file or directory\n", program_name, p);
+ fprintf (stderr, "%s: *** [%s:%lu: %s] Error %d\n", program_name, filename, line_no, name, status);
+
+ exit (EXIT_FAILURE);
+
+ }
+
+ }
+
+}
+#endif
+
static int rule_run_command (const char *filename, unsigned long line_no, const char *name, char *p, char *q) {
char *new_cmds, *s;
new_cmds = xstrdup (p);
*q = '\n';
- new_cmds = variable_expand_line ("<command-line>", 1, new_cmds);
+ new_cmds = variable_expand_line (filename, line_no, new_cmds);
s = new_cmds;
while (isspace ((int) *s) || *s == '-' || *s == '@' || *s == '+') {
printf ("%s\n", new_cmds);
}
- if (should_execute) {
-
- int error = system (s);
-
- if (!is_ignoring_errors && error) {
-
- fprintf (stderr, "%s: *** [%s:%lu: %s] Error %d\n", program_name, filename, line_no, name, error);
- return 1;
-
- }
-
- }
-
+ if (should_execute) { pipe_command (filename, line_no, s, is_ignoring_errors, name); }
free (new_cmds);
+
return 0;
}