blob: 6fdb9c3336fa9305b79ed2258eea7470d2040372 [file] [log] [blame]
José Fonseca9898b332011-08-25 13:31:31 +01001/**************************************************************************
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
Zack Rusin5ce45e72011-08-05 13:43:46 -040027#ifndef TRACE_FILE_HPP
28#define TRACE_FILE_HPP
29
30#include <string>
Zack Rusina26cf3e2011-08-06 16:12:09 -040031#include <fstream>
Zack Rusin712429a2011-08-25 23:22:30 -040032#include <stdint.h>
Zack Rusin5ce45e72011-08-05 13:43:46 -040033
34namespace Trace {
35
36class File {
37public:
38 enum Mode {
39 Read,
40 Write
41 };
Zack Rusin712429a2011-08-25 23:22:30 -040042 struct Offset {
43 Offset()
44 : chunk(0),
45 offsetInChunk(0)
46 {}
47 uint64_t chunk;
48 uint32_t offsetInChunk;
49 };
50
Zack Rusin5ce45e72011-08-05 13:43:46 -040051public:
Zack Rusin14b78f82011-08-06 19:26:46 -040052 static bool isZLibCompressed(const std::string &filename);
Zack Rusin6dce37c2011-08-08 09:59:58 -040053 static bool isSnappyCompressed(const std::string &filename);
Zack Rusin14b78f82011-08-06 19:26:46 -040054public:
Zack Rusin5ce45e72011-08-05 13:43:46 -040055 File(const std::string &filename = std::string(),
56 File::Mode mode = File::Read);
57 virtual ~File();
58
59 bool isOpened() const;
60 File::Mode mode() const;
Zack Rusin124cd342011-08-24 21:54:56 -040061
Zack Rusin5ce45e72011-08-05 13:43:46 -040062 std::string filename() const;
63
64 bool open(const std::string &filename, File::Mode mode);
José Fonseca94194a22011-09-01 11:54:48 +010065 bool write(const void *buffer, size_t length);
66 bool read(void *buffer, size_t length);
Zack Rusin5ce45e72011-08-05 13:43:46 -040067 void close();
José Fonsecaaf17c802011-08-25 15:36:23 +010068 void flush(void);
Zack Rusinbb130e52011-08-06 18:58:39 -040069 int getc();
José Fonseca46c0d852011-09-03 13:45:52 +010070 bool skip(size_t length);
Zack Rusin5ce45e72011-08-05 13:43:46 -040071
Zack Rusin712429a2011-08-25 23:22:30 -040072 virtual bool supportsOffsets() const = 0;
73 virtual File::Offset currentOffset();
74 virtual void setCurrentOffset(const File::Offset &offset);
Zack Rusin5ce45e72011-08-05 13:43:46 -040075protected:
76 virtual bool rawOpen(const std::string &filename, File::Mode mode) = 0;
José Fonseca94194a22011-09-01 11:54:48 +010077 virtual bool rawWrite(const void *buffer, size_t length) = 0;
78 virtual bool rawRead(void *buffer, size_t length) = 0;
Zack Rusinbb130e52011-08-06 18:58:39 -040079 virtual int rawGetc() = 0;
Zack Rusin5ce45e72011-08-05 13:43:46 -040080 virtual void rawClose() = 0;
José Fonsecaaf17c802011-08-25 15:36:23 +010081 virtual void rawFlush() = 0;
José Fonseca46c0d852011-09-03 13:45:52 +010082 virtual bool rawSkip(size_t length) = 0;
Zack Rusin5ce45e72011-08-05 13:43:46 -040083
84protected:
85 std::string m_filename;
86 File::Mode m_mode;
87 bool m_isOpened;
88};
89
Zack Rusin124cd342011-08-24 21:54:56 -040090inline bool File::isOpened() const
91{
92 return m_isOpened;
93}
94
95inline File::Mode File::mode() const
96{
97 return m_mode;
98}
99
100inline std::string File::filename() const
101{
102 return m_filename;
103}
104
105inline bool File::open(const std::string &filename, File::Mode mode)
106{
107 if (m_isOpened) {
108 close();
109 }
110 m_isOpened = rawOpen(filename, mode);
111 m_mode = mode;
112
113 return m_isOpened;
114}
115
José Fonseca94194a22011-09-01 11:54:48 +0100116inline bool File::write(const void *buffer, size_t length)
Zack Rusin124cd342011-08-24 21:54:56 -0400117{
118 if (!m_isOpened || m_mode != File::Write) {
119 return false;
120 }
121 return rawWrite(buffer, length);
122}
123
José Fonseca94194a22011-09-01 11:54:48 +0100124inline bool File::read(void *buffer, size_t length)
Zack Rusin124cd342011-08-24 21:54:56 -0400125{
126 if (!m_isOpened || m_mode != File::Read) {
127 return false;
128 }
129 return rawRead(buffer, length);
130}
131
132inline void File::close()
133{
134 if (m_isOpened) {
135 rawClose();
136 m_isOpened = false;
137 }
138}
139
José Fonsecaaf17c802011-08-25 15:36:23 +0100140inline void File::flush(void)
Zack Rusin124cd342011-08-24 21:54:56 -0400141{
José Fonsecaf3acd092011-09-03 13:30:16 +0100142 if (m_mode == File::Write) {
143 rawFlush();
144 }
Zack Rusin124cd342011-08-24 21:54:56 -0400145}
146
147inline int File::getc()
148{
149 if (!m_isOpened || m_mode != File::Read) {
José Fonseca2d0d8382011-08-26 11:38:36 +0100150 return -1;
Zack Rusin124cd342011-08-24 21:54:56 -0400151 }
152 return rawGetc();
153}
154
José Fonseca46c0d852011-09-03 13:45:52 +0100155inline bool File::skip(size_t length)
Zack Rusin46c4a322011-09-02 01:08:49 -0400156{
157 if (!m_isOpened || m_mode != File::Read) {
158 return false;
159 }
160 return rawSkip(length);
161}
162
Zack Rusin5ce45e72011-08-05 13:43:46 -0400163class ZLibFile : public File {
164public:
165 ZLibFile(const std::string &filename = std::string(),
166 File::Mode mode = File::Read);
167 virtual ~ZLibFile();
168
Zack Rusin712429a2011-08-25 23:22:30 -0400169
170 virtual bool supportsOffsets() const;
Zack Rusin5ce45e72011-08-05 13:43:46 -0400171protected:
172 virtual bool rawOpen(const std::string &filename, File::Mode mode);
José Fonseca94194a22011-09-01 11:54:48 +0100173 virtual bool rawWrite(const void *buffer, size_t length);
174 virtual bool rawRead(void *buffer, size_t length);
Zack Rusinbb130e52011-08-06 18:58:39 -0400175 virtual int rawGetc();
Zack Rusin5ce45e72011-08-05 13:43:46 -0400176 virtual void rawClose();
José Fonsecaaf17c802011-08-25 15:36:23 +0100177 virtual void rawFlush();
José Fonseca46c0d852011-09-03 13:45:52 +0100178 virtual bool rawSkip(size_t length);
Zack Rusin5ce45e72011-08-05 13:43:46 -0400179private:
180 void *m_gzFile;
181};
182
Zack Rusine0df9522011-09-01 01:50:56 -0400183inline bool
184operator<(const File::Offset &one, const File::Offset &two)
185{
186 return one.chunk < two.chunk ||
187 (one.chunk == two.chunk && one.offsetInChunk < two.offsetInChunk);
188}
189
190inline bool
191operator==(const File::Offset &one, const File::Offset &two)
192{
193 return one.chunk == two.chunk &&
194 one.offsetInChunk == two.offsetInChunk;
195}
196
197inline bool
198operator>=(const File::Offset &one, const File::Offset &two)
199{
200 return one.chunk > two.chunk ||
201 (one.chunk == two.chunk && one.offsetInChunk >= two.offsetInChunk);
202}
203
204inline bool
205operator>(const File::Offset &one, const File::Offset &two)
206{
207 return two < one;
208}
209
210inline bool
211operator<=(const File::Offset &one, const File::Offset &two)
212{
213 return two >= one;
214}
215
216
Zack Rusin5ce45e72011-08-05 13:43:46 -0400217}
218
219#endif