X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=common%2Fos_win32.cpp;h=bd4b06d46c919d94f2f0e2d24002564db2c9c011;hb=3297ed820e2127e96e53b84277e8012caa6114ed;hp=33fe427bad7370784d32c42c416e172ed97bcd89;hpb=3f152046f610ca45f99bdee1bf8d146d5d00be72;p=apitrace diff --git a/common/os_win32.cpp b/common/os_win32.cpp index 33fe427..bd4b06d 100644 --- a/common/os_win32.cpp +++ b/common/os_win32.cpp @@ -42,7 +42,7 @@ String getProcessName(void) { String path; - size_t size = MAX_PATH; + DWORD size = MAX_PATH; char *buf = path.buf(size); DWORD nWritten = GetModuleFileNameA(NULL, buf, size); @@ -57,7 +57,7 @@ String getCurrentDir(void) { String path; - size_t size = MAX_PATH; + DWORD size = MAX_PATH; char *buf = path.buf(size); DWORD ret = GetCurrentDirectoryA(size, buf); @@ -69,6 +69,12 @@ getCurrentDir(void) return path; } +bool +createDirectory(const String &path) +{ + return CreateDirectoryA(path, NULL); +} + bool String::exists(void) const { @@ -76,6 +82,18 @@ String::exists(void) const return attrs != INVALID_FILE_ATTRIBUTES; } +bool +copyFile(const String &srcFileName, const String &dstFileName, bool override) +{ + return CopyFileA(srcFileName, dstFileName, !override); +} + +bool +removeFile(const String &srcFilename) +{ + return DeleteFileA(srcFilename); +} + /** * Determine whether an argument should be quoted. */ @@ -113,7 +131,6 @@ quoteArg(std::string &s, const char *arg) s.push_back('"'); while (true) { c = *arg++; - switch (c) if (c == '\0') { break; } else if (c == '"') { @@ -178,7 +195,7 @@ int execute(char * const * args) WaitForSingleObject(processInformation.hProcess, INFINITE); - DWORD exitCode = ~0; + DWORD exitCode = ~0UL; GetExitCodeProcess(processInformation.hProcess, &exitCode); CloseHandle(processInformation.hProcess); @@ -218,11 +235,7 @@ long long timeFrequency = 0LL; void abort(void) { -#ifndef NDEBUG - DebugBreak(); -#else - ExitProcess(0); -#endif + TerminateProcess(GetCurrentProcess(), 1); } @@ -264,6 +277,15 @@ unhandledExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo) return EXCEPTION_CONTINUE_SEARCH; } + /* + * Ignore .NET exception. + * + * http://ig2600.blogspot.co.uk/2011/01/why-do-i-keep-getting-exception-code.html + */ + if (pExceptionRecord->ExceptionCode == 0xe0434352) { + return EXCEPTION_CONTINUE_SEARCH; + } + // Clear direction flag #ifdef _MSC_VER #ifndef _WIN64 @@ -279,7 +301,7 @@ unhandledExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo) static int recursion_count = 0; if (recursion_count) { - fprintf(stderr, "apitrace: warning: recursion handling exception\n"); + fputs("apitrace: warning: recursion handling exception\n", stderr); } else { if (gCallback) { ++recursion_count;