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