/* Enable easy piping under Windows(TM) command line. We use the 'devenv'(TM) method, which means we have two binary files: openscad.com, with IMAGE_SUBSYSTEM_WINDOWS_CUI flag set openscad.exe, with IMAGE_SUBSYSTEM_WINDOWS_GUI flag set The .com version is a 'wrapper' for the .exe version. If you call 'openscad' with no extension from a script or shell, the .com version is prioritized by the OS and feeds the GUI stdout to the console. We keep it in 'pure c' to minimize binary size on the cross-compile. Note the .com file is not a 'real' .com file. It is just an .exe that has been renamed to a .com during the Windows(TM) OpenSCAD package build. See Also: ../doc/windows_issues.txt http://stackoverflow.com/questions/493536/can-one-executable-be-both-a-console-and-gui-app http://blogs.msdn.com/b/oldnewthing/archive/2009/01/01/9259142.aspx http://blogs.msdn.com/b/junfeng/archive/2004/02/06/68531.aspx http://msdn.microsoft.com/en-us/library/aa298534%28v=vs.60%29.aspx http://cournape.wordpress.com/2008/07/29/redirecting-stderrstdout-in-cmdexe/ Open Group popen() documentation inkscapec by Jos Hirth work at http://kaioa.com Nop Head's OpenSCAD_cl at github.com ImageMagick's utilities, like convert.cc http://www.i18nguy.com/unicode/c-unicode.html A few other notes: We throw out argc/argv and pull the w_char commandline using special Win(TM) functions. We then strip out the 'openscad' program name, but leave the rest of the commandline in tact in a tail. Then we call 'openscad.exe'. stderr is used to support writing of STL/PNG etc. output to stdout. MS Windows API used instead of popen() to append stdout to stderr and avoid running cmd.exe (so save some resources). TODO: Fix printing of unicode on console. */ #include #include #include #include /*#include */ #include // manage MS Windows error codes // Do not use fprintf() etc. due to call from thread. static void displayError(char *msg, DWORD errcode) { HANDLE hError = GetStdHandle(STD_ERROR_HANDLE); char buffer[1024]; if (msg && *msg) { WriteFile(hError, msg, strlen(msg), NULL, NULL); } if (ERROR_SUCCESS == errcode) return; if (FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, NULL, errcode, 0, buffer, sizeof(buffer), NULL)) { WriteFile(hError, buffer, strlen(buffer), NULL, NULL); } } static void displayLastError(char *msg) { displayError(msg, GetLastError()); } typedef struct { /*volatile*/ int status; HANDLE hRead, hOutput; STARTUPINFOW startupInfo; PROCESS_INFORMATION processInfo; } WATCH_INFO; static DWORD WINAPI watchdog(LPVOID arg) { #define info ((WATCH_INFO*)arg) DWORD bc; char buffer[1024]; for (info->status=0;;) { if (!ReadFile(info->hRead,buffer,sizeof(buffer),&bc,NULL)) { displayLastError("Failed to read pipe\n"); /* return 1; */ info->status = 1; } else if (bc) { (void)WriteFile(info->hOutput, buffer, bc, NULL, NULL); } else break; // closed pipe } return 0; #undef info } #define EXE_NAME "openscad.exe" #define ___WIDECHARTEXT(s) L##s #define W(x) ___WIDECHARTEXT(x) #define IS_WHITESPACE(c) (' ' == (c) || '\t' == (c)) #define MAXCMDLEN 32768 /* MS Windows limit */ int main(int argc, char *argv[]) { HANDLE hWrite, curr_proc; SECURITY_ATTRIBUTES sa; WATCH_INFO info; wchar_t cmd[MAXCMDLEN]; DWORD status; int result = 0; register int i; /*bool*/ int quote, preserve_stdout; register wchar_t *cmdline = GetCommandLineW(); // Look for the end of executable // There is no need to check for escaped double quotes here // because MS Windows file name can not contain such quotes for (quote=0; *cmdline && (quote || !IS_WHITESPACE(*cmdline)); ++cmdline) { if ('"' == *cmdline) quote ^= 1; } if (IS_WHITESPACE(*cmdline)) { while (IS_WHITESPACE(*(cmdline+1))) ++cmdline; } (void)wcscpy(cmd, W(EXE_NAME)); if (wcslen(cmd) + wcslen(cmdline) >= MAXCMDLEN) { // fprintf(stderr, "Command line length exceeds limit of %d\n", MAXCMDLEN); // avoid fprintf() to decrease executable size displayError("Command line length exceeds limit\n", ERROR_SUCCESS); return 1; } (void)wcscat(cmd, cmdline); // look for '-o -' combination for (preserve_stdout=FALSE, i=/*sic!*/2; i