]> git.cworth.org Git - apitrace/blob - common/trace_writer_local.cpp
First stab at tracing thread IDs.
[apitrace] / common / trace_writer_local.cpp
1 /**************************************************************************
2  *
3  * Copyright 2007-2011 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
27 #include <assert.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32
33 #include "os.hpp"
34 #include "os_thread.hpp"
35 #include "os_string.hpp"
36 #include "trace_file.hpp"
37 #include "trace_writer.hpp"
38 #include "trace_format.hpp"
39
40
41 namespace trace {
42
43
44 static const char *memcpy_args[3] = {"dest", "src", "n"};
45 const FunctionSig memcpy_sig = {0, "memcpy", 3, memcpy_args};
46
47 static const char *malloc_args[1] = {"size"};
48 const FunctionSig malloc_sig = {1, "malloc", 1, malloc_args};
49
50 static const char *free_args[1] = {"ptr"};
51 const FunctionSig free_sig = {2, "free", 1, free_args};
52
53 static const char *realloc_args[2] = {"ptr", "size"};
54 const FunctionSig realloc_sig = {3, "realloc", 2, realloc_args};
55
56
57 static void exceptionCallback(void)
58 {
59     localWriter.flush();
60 }
61
62
63 LocalWriter::LocalWriter() :
64     acquired(0)
65 {
66     // Install the signal handlers as early as possible, to prevent
67     // interfering with the application's signal handling.
68     os::setExceptionCallback(exceptionCallback);
69 }
70
71 LocalWriter::~LocalWriter()
72 {
73     os::resetExceptionCallback();
74 }
75
76 void
77 LocalWriter::open(void) {
78     os::String szFileName;
79
80     const char *lpFileName;
81
82     lpFileName = getenv("TRACE_FILE");
83     if (!lpFileName) {
84         static unsigned dwCounter = 0;
85
86         os::String process = os::getProcessName();
87 #ifdef _WIN32
88         process.trimExtension();
89 #endif
90         process.trimDirectory();
91
92         os::String prefix = os::getCurrentDir();
93         prefix.join(process);
94
95         for (;;) {
96             FILE *file;
97
98             if (dwCounter)
99                 szFileName = os::String::format("%s.%u.trace", prefix.str(), dwCounter);
100             else
101                 szFileName = os::String::format("%s.trace", prefix.str());
102
103             lpFileName = szFileName;
104             file = fopen(lpFileName, "rb");
105             if (file == NULL)
106                 break;
107
108             fclose(file);
109
110             ++dwCounter;
111         }
112     }
113
114     os::log("apitrace: tracing to %s\n", lpFileName);
115
116     if (!Writer::open(lpFileName)) {
117         os::log("apitrace: error: failed to open %s\n", lpFileName);
118         os::abort();
119     }
120
121 #if 0
122     // For debugging the exception handler
123     *((int *)0) = 0;
124 #endif
125 }
126
127 unsigned LocalWriter::beginEnter(const FunctionSig *sig) {
128     os::acquireMutex();
129     ++acquired;
130
131     if (!m_file->isOpened()) {
132         open();
133     }
134
135     os::thread::id id = os::this_thread::get_id();
136
137     return Writer::beginEnter(sig, static_cast<unsigned>(id));
138 }
139
140 void LocalWriter::endEnter(void) {
141     Writer::endEnter();
142     --acquired;
143     os::releaseMutex();
144 }
145
146 void LocalWriter::beginLeave(unsigned call) {
147     os::acquireMutex();
148     ++acquired;
149     Writer::beginLeave(call);
150 }
151
152 void LocalWriter::endLeave(void) {
153     Writer::endLeave();
154     --acquired;
155     os::releaseMutex();
156 }
157
158 void LocalWriter::flush(void) {
159     /*
160      * Do nothing if the mutex is already acquired (e.g., if a segfault happen
161      * while writing the file) to prevent dead-lock.
162      */
163
164     if (!acquired) {
165         os::acquireMutex();
166         if (m_file->isOpened()) {
167             os::log("apitrace: flushing trace due to an exception\n");
168             m_file->flush();
169         }
170         os::releaseMutex();
171     }
172 }
173
174
175 LocalWriter localWriter;
176
177
178 } /* namespace trace */
179