]> git.cworth.org Git - apitrace/blob - common/trace_file_zlib.cpp
Lower case namespaces.
[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 bool 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 }
77
78 bool ZLibFile::rawOpen(const std::string &filename, File::Mode mode)
79 {
80     m_gzFile = gzopen(filename.c_str(),
81                       (mode == File::Write) ? "wb" : "rb");
82
83     if (mode == File::Read && m_gzFile) {
84         //XXX: unfortunately zlib doesn't support
85         //     SEEK_END or we could've done:
86         //m_endOffset = gzseek(m_gzFile, 0, SEEK_END);
87         //gzrewind(m_gzFile);
88         gz_state *state = (gz_state *)m_gzFile;
89         off_t loc = lseek(state->fd, 0, SEEK_CUR);
90         m_endOffset = lseek(state->fd, 0, SEEK_END);
91         lseek(state->fd, loc, SEEK_SET);
92     }
93
94     return m_gzFile != NULL;
95 }
96
97 bool ZLibFile::rawWrite(const void *buffer, size_t length)
98 {
99     return gzwrite(m_gzFile, buffer, length) != -1;
100 }
101
102 bool ZLibFile::rawRead(void *buffer, size_t length)
103 {
104     return gzread(m_gzFile, buffer, length) != -1;
105 }
106
107 int ZLibFile::rawGetc()
108 {
109     return gzgetc(m_gzFile);
110 }
111
112 void ZLibFile::rawClose()
113 {
114     if (m_gzFile) {
115         gzclose(m_gzFile);
116         m_gzFile = NULL;
117     }
118 }
119
120 void ZLibFile::rawFlush()
121 {
122     gzflush(m_gzFile, Z_SYNC_FLUSH);
123 }
124
125 File::Offset ZLibFile::currentOffset()
126 {
127     return File::Offset(gztell(m_gzFile));
128 }
129
130 bool ZLibFile::supportsOffsets() const
131 {
132     return false;
133 }
134
135 bool ZLibFile::rawSkip(size_t)
136 {
137     return false;
138 }
139
140 int ZLibFile::rawPercentRead()
141 {
142     gz_state *state = (gz_state *)m_gzFile;
143     return 100 * (lseek(state->fd, 0, SEEK_CUR) / m_endOffset);
144 }
145
146
147 File * File::createZLib(void) {
148     return new ZLibFile;
149 }
150
151 bool File::isZLibCompressed(const std::string &filename)
152 {
153     std::fstream stream(filename.c_str(),
154                         std::fstream::binary | std::fstream::in);
155     if (!stream.is_open())
156         return false;
157
158     unsigned char byte1, byte2;
159     stream >> byte1;
160     stream >> byte2;
161     stream.close();
162
163     return (byte1 == 0x1f && byte2 == 0x8b);
164 }
165