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