blob: 627659b7f5ee7c866cf39cf5199d3cb4c5e132ae [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
José Fonsecab4a3d142011-10-27 07:43:19 +010034namespace trace {
Zack Rusin5ce45e72011-08-05 13:43:46 -040035
36class File {
37public:
38 enum Mode {
39 Read,
40 Write
41 };
Zack Rusin712429a2011-08-25 23:22:30 -040042 struct Offset {
José Fonseca7b1d0132011-09-11 14:12:12 +010043 Offset(uint64_t _chunk = 0, uint32_t _offsetInChunk = 0)
44 : chunk(_chunk),
45 offsetInChunk(_offsetInChunk)
Zack Rusin712429a2011-08-25 23:22:30 -040046 {}
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);
José Fonseca4159a612011-10-26 23:37:01 +010054 static File *createZLib(void);
55 static File *createSnappy(void);
Zack Rusin14b78f82011-08-06 19:26:46 -040056public:
Zack Rusin5ce45e72011-08-05 13:43:46 -040057 File(const std::string &filename = std::string(),
58 File::Mode mode = File::Read);
59 virtual ~File();
60
61 bool isOpened() const;
62 File::Mode mode() const;
Zack Rusin124cd342011-08-24 21:54:56 -040063
Zack Rusin5ce45e72011-08-05 13:43:46 -040064 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 Rusin2b1bd4f2011-09-04 16:14:22 -040071 int percentRead();
Zack Rusin5ce45e72011-08-05 13:43:46 -040072
Zack Rusin712429a2011-08-25 23:22:30 -040073 virtual bool supportsOffsets() const = 0;
José Fonseca7b1d0132011-09-11 14:12:12 +010074 virtual File::Offset currentOffset() = 0;
Zack Rusin712429a2011-08-25 23:22:30 -040075 virtual void setCurrentOffset(const File::Offset &offset);
Zack Rusin5ce45e72011-08-05 13:43:46 -040076protected:
77 virtual bool rawOpen(const std::string &filename, File::Mode mode) = 0;
José Fonseca94194a22011-09-01 11:54:48 +010078 virtual bool rawWrite(const void *buffer, size_t length) = 0;
79 virtual bool rawRead(void *buffer, size_t length) = 0;
Zack Rusinbb130e52011-08-06 18:58:39 -040080 virtual int rawGetc() = 0;
Zack Rusin5ce45e72011-08-05 13:43:46 -040081 virtual void rawClose() = 0;
José Fonsecaaf17c802011-08-25 15:36:23 +010082 virtual void rawFlush() = 0;
José Fonseca46c0d852011-09-03 13:45:52 +010083 virtual bool rawSkip(size_t length) = 0;
Zack Rusin2b1bd4f2011-09-04 16:14:22 -040084 virtual int rawPercentRead() = 0;
Zack Rusin5ce45e72011-08-05 13:43:46 -040085
86protected:
Zack Rusin5ce45e72011-08-05 13:43:46 -040087 File::Mode m_mode;
88 bool m_isOpened;
89};
90
Zack Rusin124cd342011-08-24 21:54:56 -040091inline bool File::isOpened() const
92{
93 return m_isOpened;
94}
95
96inline File::Mode File::mode() const
97{
98 return m_mode;
99}
100
Zack Rusin124cd342011-08-24 21:54:56 -0400101inline bool File::open(const std::string &filename, File::Mode mode)
102{
103 if (m_isOpened) {
104 close();
105 }
106 m_isOpened = rawOpen(filename, mode);
107 m_mode = mode;
108
109 return m_isOpened;
110}
111
José Fonseca94194a22011-09-01 11:54:48 +0100112inline bool File::write(const void *buffer, size_t length)
Zack Rusin124cd342011-08-24 21:54:56 -0400113{
114 if (!m_isOpened || m_mode != File::Write) {
115 return false;
116 }
117 return rawWrite(buffer, length);
118}
119
José Fonseca94194a22011-09-01 11:54:48 +0100120inline bool File::read(void *buffer, size_t length)
Zack Rusin124cd342011-08-24 21:54:56 -0400121{
122 if (!m_isOpened || m_mode != File::Read) {
123 return false;
124 }
125 return rawRead(buffer, length);
126}
127
Zack Rusin2b1bd4f2011-09-04 16:14:22 -0400128inline int File::percentRead()
129{
130 if (!m_isOpened || m_mode != File::Read) {
131 return 0;
132 }
133 return rawPercentRead();
134}
135
Zack Rusin124cd342011-08-24 21:54:56 -0400136inline void File::close()
137{
138 if (m_isOpened) {
139 rawClose();
140 m_isOpened = false;
141 }
142}
143
José Fonsecaaf17c802011-08-25 15:36:23 +0100144inline void File::flush(void)
Zack Rusin124cd342011-08-24 21:54:56 -0400145{
José Fonsecaf3acd092011-09-03 13:30:16 +0100146 if (m_mode == File::Write) {
147 rawFlush();
148 }
Zack Rusin124cd342011-08-24 21:54:56 -0400149}
150
151inline int File::getc()
152{
153 if (!m_isOpened || m_mode != File::Read) {
José Fonseca2d0d8382011-08-26 11:38:36 +0100154 return -1;
Zack Rusin124cd342011-08-24 21:54:56 -0400155 }
156 return rawGetc();
157}
158
José Fonseca46c0d852011-09-03 13:45:52 +0100159inline bool File::skip(size_t length)
Zack Rusin46c4a322011-09-02 01:08:49 -0400160{
161 if (!m_isOpened || m_mode != File::Read) {
162 return false;
163 }
164 return rawSkip(length);
165}
166
Zack Rusin5ce45e72011-08-05 13:43:46 -0400167
Zack Rusine0df9522011-09-01 01:50:56 -0400168inline bool
169operator<(const File::Offset &one, const File::Offset &two)
170{
171 return one.chunk < two.chunk ||
172 (one.chunk == two.chunk && one.offsetInChunk < two.offsetInChunk);
173}
174
175inline bool
176operator==(const File::Offset &one, const File::Offset &two)
177{
178 return one.chunk == two.chunk &&
179 one.offsetInChunk == two.offsetInChunk;
180}
181
182inline bool
183operator>=(const File::Offset &one, const File::Offset &two)
184{
185 return one.chunk > two.chunk ||
186 (one.chunk == two.chunk && one.offsetInChunk >= two.offsetInChunk);
187}
188
189inline bool
190operator>(const File::Offset &one, const File::Offset &two)
191{
192 return two < one;
193}
194
195inline bool
196operator<=(const File::Offset &one, const File::Offset &two)
197{
198 return two >= one;
199}
200
201
Zack Rusin5ce45e72011-08-05 13:43:46 -0400202}
203
204#endif