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