]> git.cworth.org Git - apitrace/blob - trace_file.cpp
Switch the gui to the on-demand-loader.
[apitrace] / trace_file.cpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Zack Rusin
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 "trace_file.hpp"
28
29 #include "trace_snappyfile.hpp"
30
31 #include <assert.h>
32 #include <string.h>
33
34 #include <zlib.h>
35
36 #include "os.hpp"
37
38 #include <iostream>
39
40 using namespace Trace;
41
42
43 File::File(const std::string &filename,
44            File::Mode mode)
45     : m_filename(filename),
46       m_mode(mode),
47       m_isOpened(false)
48 {
49     if (!m_filename.empty()) {
50         open(m_filename, m_mode);
51     }
52 }
53
54 File::~File()
55 {
56     close();
57 }
58
59
60 File::Offset File::currentOffset()
61 {
62     return File::Offset();
63 }
64
65 void File::setCurrentOffset(const File::Offset &offset)
66 {
67 }
68
69 bool File::isZLibCompressed(const std::string &filename)
70 {
71     std::fstream stream(filename.c_str(),
72                         std::fstream::binary | std::fstream::in);
73     if (!stream.is_open())
74         return false;
75
76     unsigned char byte1, byte2;
77     stream >> byte1;
78     stream >> byte2;
79     stream.close();
80
81     return (byte1 == 0x1f && byte2 == 0x8b);
82 }
83
84
85 bool File::isSnappyCompressed(const std::string &filename)
86 {
87     std::fstream stream(filename.c_str(),
88                         std::fstream::binary | std::fstream::in);
89     if (!stream.is_open())
90         return false;
91
92     unsigned char byte1, byte2;
93     stream >> byte1;
94     stream >> byte2;
95     stream.close();
96
97     return (byte1 == SNAPPY_BYTE1 && byte2 == SNAPPY_BYTE2);
98 }
99
100 typedef struct gz_stream {
101     z_stream stream;
102     int      z_err;   /* error code for last stream operation */
103     int      z_eof;   /* set if end of input file */
104     FILE     *file;   /* .gz file */
105 } gz_dummy_stream;
106
107 ZLibFile::ZLibFile(const std::string &filename,
108                    File::Mode mode)
109     : File(filename, mode),
110       m_gzFile(NULL)
111 {
112 }
113
114 ZLibFile::~ZLibFile()
115 {
116 }
117
118 bool ZLibFile::rawOpen(const std::string &filename, File::Mode mode)
119 {
120     m_gzFile = gzopen(filename.c_str(),
121                       (mode == File::Write) ? "wb" : "rb");
122
123     if (mode == File::Read && m_gzFile) {
124         //XXX: unfortunately zlib doesn't support
125         //     SEEK_END or we could've done:
126         //m_endOffset = gzseek(m_gzFile, 0, SEEK_END);
127         //gzrewind(m_gzFile);
128         gz_dummy_stream *stream = (gz_dummy_stream *)m_gzFile;
129         long loc = ftell(stream->file);
130         fseek(stream->file,0,SEEK_END);
131         m_endOffset = ftell(stream->file);
132         fseek(stream->file, loc, SEEK_SET);
133     }
134
135     return m_gzFile != NULL;
136 }
137
138 bool ZLibFile::rawWrite(const void *buffer, size_t length)
139 {
140     return gzwrite(m_gzFile, buffer, length) != -1;
141 }
142
143 bool ZLibFile::rawRead(void *buffer, size_t length)
144 {
145     return gzread(m_gzFile, buffer, length) != -1;
146 }
147
148 int ZLibFile::rawGetc()
149 {
150     return gzgetc(m_gzFile);
151 }
152
153 void ZLibFile::rawClose()
154 {
155     if (m_gzFile) {
156         gzclose(m_gzFile);
157         m_gzFile = NULL;
158     }
159 }
160
161 void ZLibFile::rawFlush()
162 {
163     gzflush(m_gzFile, Z_SYNC_FLUSH);
164 }
165
166
167 bool ZLibFile::supportsOffsets() const
168 {
169     return false;
170 }
171
172 bool ZLibFile::rawSkip(size_t)
173 {
174     return false;
175 }
176
177 int ZLibFile::rawPercentRead()
178 {
179     gz_dummy_stream *stream = (gz_dummy_stream *)m_gzFile;
180     return 100 * (ftell(stream->file) / m_endOffset);
181 }