blob: f0e183d70693912b9feb176e5ecc9c8fb35136ef [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 Rusin5ce45e72011-08-05 13:43:46 -040032
33namespace Trace {
34
35class File {
36public:
37 enum Mode {
38 Read,
39 Write
40 };
Zack Rusince040472011-08-23 00:37:07 -040041 enum FlushType {
42 FlushShallow,
43 FlushDeep
44 };
Zack Rusin5ce45e72011-08-05 13:43:46 -040045public:
Zack Rusin14b78f82011-08-06 19:26:46 -040046 static bool isZLibCompressed(const std::string &filename);
Zack Rusin6dce37c2011-08-08 09:59:58 -040047 static bool isSnappyCompressed(const std::string &filename);
Zack Rusin14b78f82011-08-06 19:26:46 -040048public:
Zack Rusin5ce45e72011-08-05 13:43:46 -040049 File(const std::string &filename = std::string(),
50 File::Mode mode = File::Read);
51 virtual ~File();
52
53 bool isOpened() const;
54 File::Mode mode() const;
Zack Rusin124cd342011-08-24 21:54:56 -040055
Zack Rusin5ce45e72011-08-05 13:43:46 -040056 std::string filename() const;
57
58 bool open(const std::string &filename, File::Mode mode);
59 bool write(const void *buffer, int length);
60 bool read(void *buffer, int length);
61 void close();
Zack Rusince040472011-08-23 00:37:07 -040062 void flush(FlushType type = FlushShallow);
Zack Rusinbb130e52011-08-06 18:58:39 -040063 int getc();
Zack Rusin5ce45e72011-08-05 13:43:46 -040064
65protected:
66 virtual bool rawOpen(const std::string &filename, File::Mode mode) = 0;
67 virtual bool rawWrite(const void *buffer, int length) = 0;
68 virtual bool rawRead(void *buffer, int length) = 0;
Zack Rusinbb130e52011-08-06 18:58:39 -040069 virtual int rawGetc() = 0;
Zack Rusin5ce45e72011-08-05 13:43:46 -040070 virtual void rawClose() = 0;
Zack Rusince040472011-08-23 00:37:07 -040071 virtual void rawFlush(FlushType type) = 0;
Zack Rusin5ce45e72011-08-05 13:43:46 -040072
73protected:
74 std::string m_filename;
75 File::Mode m_mode;
76 bool m_isOpened;
77};
78
Zack Rusin124cd342011-08-24 21:54:56 -040079inline bool File::isOpened() const
80{
81 return m_isOpened;
82}
83
84inline File::Mode File::mode() const
85{
86 return m_mode;
87}
88
89inline std::string File::filename() const
90{
91 return m_filename;
92}
93
94inline bool File::open(const std::string &filename, File::Mode mode)
95{
96 if (m_isOpened) {
97 close();
98 }
99 m_isOpened = rawOpen(filename, mode);
100 m_mode = mode;
101
102 return m_isOpened;
103}
104
105inline bool File::write(const void *buffer, int length)
106{
107 if (!m_isOpened || m_mode != File::Write) {
108 return false;
109 }
110 return rawWrite(buffer, length);
111}
112
113inline bool File::read(void *buffer, int length)
114{
115 if (!m_isOpened || m_mode != File::Read) {
116 return false;
117 }
118 return rawRead(buffer, length);
119}
120
121inline void File::close()
122{
123 if (m_isOpened) {
124 rawClose();
125 m_isOpened = false;
126 }
127}
128
129inline void File::flush(File::FlushType type)
130{
131 rawFlush(type);
132}
133
134inline int File::getc()
135{
136 if (!m_isOpened || m_mode != File::Read) {
137 return 0;
138 }
139 return rawGetc();
140}
141
Zack Rusin5ce45e72011-08-05 13:43:46 -0400142class ZLibFile : public File {
143public:
144 ZLibFile(const std::string &filename = std::string(),
145 File::Mode mode = File::Read);
146 virtual ~ZLibFile();
147
148protected:
149 virtual bool rawOpen(const std::string &filename, File::Mode mode);
150 virtual bool rawWrite(const void *buffer, int length);
151 virtual bool rawRead(void *buffer, int length);
Zack Rusinbb130e52011-08-06 18:58:39 -0400152 virtual int rawGetc();
Zack Rusin5ce45e72011-08-05 13:43:46 -0400153 virtual void rawClose();
Zack Rusince040472011-08-23 00:37:07 -0400154 virtual void rawFlush(FlushType type);
Zack Rusin5ce45e72011-08-05 13:43:46 -0400155private:
156 void *m_gzFile;
157};
158
Zack Rusin5ce45e72011-08-05 13:43:46 -0400159}
160
161#endif