]> git.cworth.org Git - apitrace/blob - os_posix.cpp
Major move to visitor paradigm.
[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
34 namespace OS {
35
36
37 static pthread_mutex_t 
38 mutex = PTHREAD_MUTEX_INITIALIZER;
39
40
41 void
42 AcquireMutex(void)
43 {
44     pthread_mutex_lock(&mutex);
45 }
46
47
48 void
49 ReleaseMutex(void)
50 {
51     pthread_mutex_unlock(&mutex);
52 }
53
54
55 bool
56 GetProcessName(char *str, size_t size)
57 {
58     ssize_t len;
59     char szProcessPath[PATH_MAX + 1];
60     char *lpProcessName;
61     
62     // http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe
63     len = readlink("/proc/self/exe", szProcessPath, sizeof(szProcessPath) - 1);
64     if (len == -1) {
65         *str = 0;
66         return false;
67     }
68     szProcessPath[len] = 0;
69
70     lpProcessName = strrchr(szProcessPath, '/');
71     lpProcessName = lpProcessName ? lpProcessName + 1 : szProcessPath;
72
73     strncpy(str, lpProcessName, size);
74     if (size)
75         str[size - 1] = 0;
76
77     return true;
78 }
79
80 bool
81 GetCurrentDir(char *str, size_t size)
82 {
83     char *ret;
84     ret = getcwd(str, size);
85     str[size - 1] = 0;
86     return ret ? true : false;
87 }
88
89 void
90 DebugMessage(const char *message)
91 {
92    fflush(stdout);
93    fputs(message, stderr);
94 }
95
96 void
97 Abort(void)
98 {
99     exit(0);
100 }
101
102
103 } /* namespace OS */