]> git.cworth.org Git - apitrace/blob - trace_snappyfile.hpp
Merge remote-tracking branch 'origin/master' into on-demand-loading
[apitrace] / trace_snappyfile.hpp
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 #ifndef TRACE_SNAPPYFILE_HPP
28 #define TRACE_SNAPPYFILE_HPP
29
30 #include <assert.h>
31
32 #include "trace_file.hpp"
33
34 #include <string>
35 #include <fstream>
36
37 namespace snappy {
38     class File;
39 }
40
41 namespace Trace {
42
43 #define SNAPPY_CHUNK_SIZE (1 * 1024 * 1024)
44
45 #define SNAPPY_BYTE1 'a'
46 #define SNAPPY_BYTE2 't'
47
48
49 class SnappyFile : public File {
50 public:
51     SnappyFile(const std::string &filename = std::string(),
52                File::Mode mode = File::Read);
53     virtual ~SnappyFile();
54
55     virtual bool supportsOffsets() const;
56     virtual File::Offset currentOffset();
57     virtual void setCurrentOffset(const File::Offset &offset);
58 protected:
59     virtual bool rawOpen(const std::string &filename, File::Mode mode);
60     virtual bool rawWrite(const void *buffer, size_t length);
61     virtual bool rawRead(void *buffer, size_t length);
62     virtual int rawGetc();
63     virtual void rawClose();
64     virtual void rawFlush();
65     virtual bool rawSkip(unsigned length);
66
67 private:
68     inline size_t usedCacheSize() const
69     {
70         assert(m_cachePtr >= m_cache);
71         return m_cachePtr - m_cache;
72     }
73     inline size_t freeCacheSize() const
74     {
75         assert(m_cacheSize >= usedCacheSize());
76         if (m_cacheSize > 0) {
77             return m_cacheSize - usedCacheSize();
78         } else {
79             return 0;
80         }
81     }
82     inline bool endOfData() const
83     {
84         return m_stream.eof() && freeCacheSize() == 0;
85     }
86     void flushCache();
87     void createCache(size_t size);
88     void writeCompressedLength(size_t length);
89     size_t readCompressedLength();
90 private:
91     std::fstream m_stream;
92     char *m_cache;
93     char *m_cachePtr;
94     size_t m_cacheSize;
95
96     char *m_compressedCache;
97
98     File::Offset m_currentOffset;
99 };
100
101 }
102
103 #endif // TRACE_SNAPPYFILE_HPP