| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- /*
- Copyright (c) 2013 Daniele Bartolini, Michele Rossi
- Copyright (c) 2012 Daniele Bartolini, Simone Boscaratto
- Permission is hereby granted, free of charge, to any person
- obtaining a copy of this software and associated documentation
- files (the "Software"), to deal in the Software without
- restriction, including without limitation the rights to use,
- copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the
- Software is furnished to do so, subject to the following
- conditions:
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
- */
- #include "WinHeaders.h"
- #include <cstdio>
- #include <cstdarg>
- #include "StringUtils.h"
- #include "OS.h"
- namespace crown
- {
- namespace os
- {
- LARGE_INTEGER frequency;
- LARGE_INTEGER base_time;
- //-----------------------------------------------------------------------------
- void printf(const char* string, ...)
- {
- va_list args;
- va_start(args, string);
- ::vprintf(string, args);
- va_end(args);
- }
- //-----------------------------------------------------------------------------
- void vprintf(const char* string, va_list arg)
- {
- ::vprintf(string, arg);
- }
- //-----------------------------------------------------------------------------
- void log_debug(const char* string, va_list arg)
- {
- printf("D: ");
- vprintf(string, arg);
- printf("\n");
- }
- //-----------------------------------------------------------------------------
- void log_error(const char* string, va_list arg)
- {
- printf("E: ");
- vprintf(string, arg);
- printf("\n");
- }
- //-----------------------------------------------------------------------------
- void log_warning(const char* string, va_list arg)
- {
- printf("W: ");
- vprintf(string, arg);
- printf("\n");
- }
- //-----------------------------------------------------------------------------
- void log_info(const char* string, va_list arg)
- {
- printf("I: ");
- vprintf(string, arg);
- printf("\n");
- }
- //-----------------------------------------------------------------------------
- bool is_root_path(const char* path)
- {
- CE_ASSERT(path != NULL, "Path must be != NULL");
- if (string::strlen(path) == 1)
- {
- if ((path[0] >= 65 && path[0] <= 90) || (path[0] >= 97 && path[0] <= 122))
- {
- return true;
- }
- }
- return false;
- }
- //-----------------------------------------------------------------------------
- bool is_absolute_path(const char* path)
- {
- CE_ASSERT(path != NULL, "Path must be != NULL");
- if (string::strlen(path) > 0)
- {
- if ((path[0] >= 'c' && path[0] <= 'z') || (path[0] >= 'C' && path[0] <= 'Z'))
- {
- if (path[1] == ':')
- {
- return true;
- }
- }
- }
- return false;
- }
- //-----------------------------------------------------------------------------
- bool exists(const char* path)
- {
- DWORD fileAttr;
- fileAttr = GetFileAttributes(path);
- return (fileAttr != INVALID_FILE_ATTRIBUTES);
- }
- //-----------------------------------------------------------------------------
- bool is_directory(const char* path)
- {
- DWORD fileAttr;
- fileAttr = GetFileAttributes(path);
- return (fileAttr != INVALID_FILE_ATTRIBUTES && (fileAttr & FILE_ATTRIBUTE_DIRECTORY) != 0);
- }
- //-----------------------------------------------------------------------------
- bool is_file(const char* path)
- {
- DWORD fileAttr;
- fileAttr = GetFileAttributes(path);
- return (fileAttr != INVALID_FILE_ATTRIBUTES && (fileAttr & FILE_ATTRIBUTE_DIRECTORY) == 0);
- }
- //-----------------------------------------------------------------------------
- bool create_file(const char* path)
- {
- HANDLE hFile = CreateFile(path, GENERIC_READ | GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
- if (hFile == INVALID_HANDLE_VALUE)
- return false;
- CloseHandle(hFile);
- return true;
- }
- //-----------------------------------------------------------------------------
- bool delete_file(const char* path)
- {
- return DeleteFile(path) == TRUE;
- }
- //-----------------------------------------------------------------------------
- bool create_directory(const char* path)
- {
- return CreateDirectory(path, NULL) == TRUE;
- }
- //-----------------------------------------------------------------------------
- bool delete_directory(const char* path)
- {
- return RemoveDirectory(path) == TRUE;
- }
- //-----------------------------------------------------------------------------
- const char* get_cwd()
- {
- static char cwdBuf[1024];
- int32_t len = GetCurrentDirectory(1024, cwdBuf);
- if (len == 0)
- {
- return string::EMPTY;
- }
- return cwdBuf;
- }
- //-----------------------------------------------------------------------------
- const char* get_home()
- {
- // TODO
- return string::EMPTY;
- }
- //-----------------------------------------------------------------------------
- const char* get_env(const char* env)
- {
- static char envBuf[1024];
- int32_t len = GetEnvironmentVariable(env, envBuf, 1024);
- if (len == 0)
- {
- return string::EMPTY;
- }
- return envBuf;
- }
- //-----------------------------------------------------------------------------
- void list_files(const char* path, Vector<DynamicString>& files)
- {
- HANDLE file = INVALID_HANDLE_VALUE;
- WIN32_FIND_DATA ffd;
- char cur_path[MAX_PATH_LENGTH];
- string::strncpy(cur_path, path, string::strlen(path) + 1);
- string::strncat(cur_path, "\\*", 2);
- file = FindFirstFile(cur_path, &ffd);
- do
- {
- CE_ASSERT(file != INVALID_HANDLE_VALUE, "Unable to list files. errono %d", GetLastError());
- if ((string::strcmp(ffd.cFileName, ".") == 0) || (string::strcmp(ffd.cFileName, "..") == 0))
- {
- continue;
- }
-
- DynamicString filename(default_allocator());
- filename = ffd.cFileName;
- vector::push_back(files, filename);
- }
- while (FindNextFile(file, &ffd) != 0);
- FindClose(file);
- }
- //-----------------------------------------------------------------------------
- const char* normalize_path(const char* path)
- {
- static char norm[MAX_PATH_LENGTH];
- for (uint32_t i = 0; i < string::strlen(path)+1; i++)
- {
- if (path[i] == '/')
- {
- norm[i] = '\\';
- }
- else
- {
- norm[i] = path[i];
- }
- }
- return norm;
- }
- //-----------------------------------------------------------------------------
- void init_os()
- {
- QueryPerformanceFrequency(&frequency);
- CE_ASSERT(frequency.QuadPart > 0, "Hardware does not support high resolution performance counter.\n");
-
- QueryPerformanceCounter(&base_time);
- }
- //-----------------------------------------------------------------------------
- uint64_t milliseconds()
- {
- LARGE_INTEGER current_time;
- QueryPerformanceCounter(¤t_time);
- return (uint64_t) (current_time.QuadPart - base_time.QuadPart) / (frequency.QuadPart / 1000);
- }
- //-----------------------------------------------------------------------------
- uint64_t microseconds()
- {
- LARGE_INTEGER current_time;
- QueryPerformanceCounter(¤t_time);
- return (uint64_t) (current_time.QuadPart - base_time.QuadPart) / (frequency.QuadPart / 1000000);
- }
- //-----------------------------------------------------------------------------
- void* open_library(const char* path)
- {
- HMODULE library = LoadLibrary(path);
- CE_ASSERT(library != NULL, "Unable to load library '%s' with error: %d\n", path, GetLastError());
- return library;
- }
- //-----------------------------------------------------------------------------
- void close_library(void* library)
- {
- BOOL freed = FreeLibrary((HMODULE)library);
- CE_ASSERT(freed, "Failed to close library\n with error: %d\n", GetLastError());
- }
- //-----------------------------------------------------------------------------
- void* lookup_symbol(void* library, const char* name)
- {
- FARPROC symbol = GetProcAddress((HMODULE)library, name);
- CE_ASSERT(symbol != NULL, "Unable to export symbol '%s' with error: %d\n", name, GetLastError());
- return symbol;
- }
- //-----------------------------------------------------------------------------
- void execute_process(const char* args[])
- {
- STARTUPINFO info;
- memset(&info, 0, sizeof(info));
- info.cb = sizeof(info);
- PROCESS_INFORMATION process;
- memset(&process, 0, sizeof(process));
- DynamicString cmds(default_allocator());
- for (uint32_t i = 0; args[i] != NULL; i++)
- {
- cmds += args[i];
- cmds += ' ';
- }
- // Necessary because CreateProcess second argument must be non-const
- char tmp[1024];
- string::strncpy(tmp, normalize_path(cmds.c_str()), string::strlen(cmds.c_str()));
- int32_t res;
- if (res = CreateProcess(args[0], tmp, NULL, NULL, TRUE, 0, NULL, NULL, &info, &process))
- {
- ::WaitForSingleObject(process.hProcess, INFINITE);
- CloseHandle(process.hProcess);
- CloseHandle(process.hThread);
- }
- CE_ASSERT(res != 0, "Unable to create process for %s, errno: %d\n", args[0], GetLastError());
- }
- } // namespace os
- } // namespace crown
|