]> git.cworth.org Git - apitrace/blob - common/trace_writer_local.cpp
Recognize IDirect3DSwapChain9::Present as end of frame
[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_local.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 #ifdef ANDROID
93         os::String prefix = "/data";
94 #else
95         os::String prefix = os::getCurrentDir();
96 #endif
97         prefix.join(process);
98
99         for (;;) {
100             FILE *file;
101
102             if (dwCounter)
103                 szFileName = os::String::format("%s.%u.trace", prefix.str(), dwCounter);
104             else
105                 szFileName = os::String::format("%s.trace", prefix.str());
106
107             lpFileName = szFileName;
108             file = fopen(lpFileName, "rb");
109             if (file == NULL)
110                 break;
111
112             fclose(file);
113
114             ++dwCounter;
115         }
116     }
117
118     os::log("apitrace: tracing to %s\n", lpFileName);
119
120     if (!Writer::open(lpFileName)) {
121         os::log("apitrace: error: failed to open %s\n", lpFileName);
122         os::abort();
123     }
124
125 #if 0
126     // For debugging the exception handler
127     *((int *)0) = 0;
128 #endif
129 }
130
131 static unsigned next_thread_id = 0;
132 static os::thread_specific_ptr<unsigned> thread_id_specific_ptr;
133
134 unsigned LocalWriter::beginEnter(const FunctionSig *sig) {
135     mutex.lock();
136     ++acquired;
137
138     if (!m_file->isOpened()) {
139         open();
140     }
141
142     unsigned *thread_id_ptr = thread_id_specific_ptr.get();
143     unsigned thread_id;
144     if (thread_id_ptr) {
145         thread_id = *thread_id_ptr;
146     } else {
147         thread_id = next_thread_id++;
148         thread_id_ptr = new unsigned;
149         *thread_id_ptr = thread_id;
150         thread_id_specific_ptr.reset(thread_id_ptr);
151     }
152
153     return Writer::beginEnter(sig, thread_id);
154 }
155
156 void LocalWriter::endEnter(void) {
157     Writer::endEnter();
158     --acquired;
159     mutex.unlock();
160 }
161
162 void LocalWriter::beginLeave(unsigned call) {
163     mutex.lock();
164     ++acquired;
165     Writer::beginLeave(call);
166 }
167
168 void LocalWriter::endLeave(void) {
169     Writer::endLeave();
170     --acquired;
171     mutex.unlock();
172 }
173
174 void LocalWriter::flush(void) {
175     /*
176      * Do nothing if the mutex is already acquired (e.g., if a segfault happen
177      * while writing the file) as state could be inconsistent, therefore yield
178      * inconsistent trace files and/or repeated segfaults till infinity.
179      */
180
181     mutex.lock();
182     if (acquired) {
183         os::log("apitrace: ignoring exception while tracing\n");
184     } else {
185         ++acquired;
186         if (m_file->isOpened()) {
187             os::log("apitrace: flushing trace due to an exception\n");
188             m_file->flush();
189         }
190         --acquired;
191     }
192     mutex.unlock();
193 }
194
195
196 LocalWriter localWriter;
197
198
199 } /* namespace trace */
200