]> git.cworth.org Git - apitrace/blob - os_posix.cpp
Match GL specs.
[apitrace] / os_posix.cpp
1 /**************************************************************************
2  *
3  * Copyright 2010 VMware, Inc.
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 #include <string.h>
27 #include <stdio.h>
28 #include <unistd.h>
29 #include <stdlib.h>
30 #include <pthread.h>
31
32 #include "os.hpp"
33 #include "log.hpp"
34
35 namespace OS {
36
37
38 static pthread_mutex_t 
39 mutex = PTHREAD_MUTEX_INITIALIZER;
40
41
42 void
43 AcquireMutex(void)
44 {
45     pthread_mutex_lock(&mutex);
46 }
47
48
49 void
50 ReleaseMutex(void)
51 {
52     pthread_mutex_unlock(&mutex);
53 }
54
55
56 bool
57 GetProcessName(char *str, size_t size)
58 {
59     ssize_t len;
60     char szProcessPath[PATH_MAX + 1];
61     char *lpProcessName;
62     
63     // http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe
64     len = readlink("/proc/self/exe", szProcessPath, sizeof(szProcessPath) - 1);
65     if (len == -1) {
66         *str = 0;
67         return false;
68     }
69     szProcessPath[len] = 0;
70
71     lpProcessName = strrchr(szProcessPath, '/');
72     lpProcessName = lpProcessName ? lpProcessName + 1 : szProcessPath;
73
74     strncpy(str, lpProcessName, size);
75     if (size)
76         str[size - 1] = 0;
77
78     return true;
79 }
80
81 bool
82 GetCurrentDir(char *str, size_t size)
83 {
84     char *ret;
85     ret = getcwd(str, size);
86     str[size - 1] = 0;
87     return ret ? true : false;
88 }
89
90 void
91 DebugMessage(const char *message)
92 {
93    fflush(stdout);
94    fputs(message, stderr);
95 }
96
97 void
98 Abort(void)
99 {
100     exit(0);
101 }
102
103
104 } /* namespace OS */
105
106 static void _uninit(void) __attribute__((destructor));
107 static void _uninit(void) {
108     Log::Close();
109 }
110