]> git.cworth.org Git - apitrace/blob - common/trace_snappyfile.hpp
Merge branch 'master' into d3d10
[apitrace] / common / 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(size_t length);
66     virtual int rawPercentRead();
67
68 private:
69     inline size_t usedCacheSize() const
70     {
71         assert(m_cachePtr >= m_cache);
72         return m_cachePtr - m_cache;
73     }
74     inline size_t freeCacheSize() const
75     {
76         assert(m_cacheSize >= usedCacheSize());
77         if (m_cacheSize > 0) {
78             return m_cacheSize - usedCacheSize();
79         } else {
80             return 0;
81         }
82     }
83     inline bool endOfData() const
84     {
85         return m_stream.eof() && freeCacheSize() == 0;
86     }
87     void flushWriteCache();
88     void flushReadCache(size_t skipLength = 0);
89     void createCache(size_t size);
90     void writeCompressedLength(size_t length);
91     size_t readCompressedLength();
92 private:
93     std::fstream m_stream;
94     char *m_cache;
95     char *m_cachePtr;
96     size_t m_cacheSize;
97
98     char *m_compressedCache;
99
100     File::Offset m_currentOffset;
101     std::streampos m_endPos;
102 };
103
104 }
105
106 #endif // TRACE_SNAPPYFILE_HPP