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