]> git.cworth.org Git - apitrace/blob - trace_file.cpp
Document the major user-visible developments.
[apitrace] / trace_file.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 #include "trace_snappyfile.hpp"
30
31 #include <assert.h>
32 #include <string.h>
33
34 #include <zlib.h>
35
36 #include "os.hpp"
37
38 #include <iostream>
39
40 using namespace Trace;
41
42
43 File::File(const std::string &filename,
44            File::Mode mode)
45     : m_mode(mode),
46       m_isOpened(false)
47 {
48     if (!filename.empty()) {
49         open(filename, m_mode);
50     }
51 }
52
53 File::~File()
54 {
55     close();
56 }
57
58 bool File::isZLibCompressed(const std::string &filename)
59 {
60     std::fstream stream(filename.c_str(),
61                         std::fstream::binary | std::fstream::in);
62     if (!stream.is_open())
63         return false;
64
65     unsigned char byte1, byte2;
66     stream >> byte1;
67     stream >> byte2;
68     stream.close();
69
70     return (byte1 == 0x1f && byte2 == 0x8b);
71 }
72
73
74 bool File::isSnappyCompressed(const std::string &filename)
75 {
76     std::fstream stream(filename.c_str(),
77                         std::fstream::binary | std::fstream::in);
78     if (!stream.is_open())
79         return false;
80
81     unsigned char byte1, byte2;
82     stream >> byte1;
83     stream >> byte2;
84     stream.close();
85
86     return (byte1 == SNAPPY_BYTE1 && byte2 == SNAPPY_BYTE2);
87 }
88
89
90 ZLibFile::ZLibFile(const std::string &filename,
91                    File::Mode mode)
92     : File(filename, mode),
93       m_gzFile(NULL)
94 {
95 }
96
97 ZLibFile::~ZLibFile()
98 {
99 }
100
101 bool ZLibFile::rawOpen(const std::string &filename, File::Mode mode)
102 {
103     m_gzFile = gzopen(filename.c_str(),
104                       (mode == File::Write) ? "wb" : "rb");
105     return m_gzFile != NULL;
106 }
107
108 bool ZLibFile::rawWrite(const void *buffer, size_t length)
109 {
110     return gzwrite(m_gzFile, buffer, length) != -1;
111 }
112
113 bool ZLibFile::rawRead(void *buffer, size_t length)
114 {
115     return gzread(m_gzFile, buffer, length) != -1;
116 }
117
118 int ZLibFile::rawGetc()
119 {
120     return gzgetc(m_gzFile);
121 }
122
123 void ZLibFile::rawClose()
124 {
125     if (m_gzFile) {
126         gzclose(m_gzFile);
127         m_gzFile = NULL;
128     }
129 }
130
131 void ZLibFile::rawFlush()
132 {
133     gzflush(m_gzFile, Z_SYNC_FLUSH);
134 }