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