]> git.cworth.org Git - apitrace/blob - trace_snappyfile.hpp
Merge branch '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 "trace_file.hpp"
31
32 #include <string>
33 #include <fstream>
34
35 #include <stdint.h>
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, int length);
61     virtual bool rawRead(void *buffer, int length);
62     virtual int rawGetc();
63     virtual void rawClose();
64     virtual void rawFlush();
65
66 private:
67     inline int freeCacheSize() const
68     {
69         if (m_cacheSize > 0)
70             return m_cacheSize - (m_cachePtr - m_cache);
71         else
72             return 0;
73     }
74     inline bool endOfData() const
75     {
76         return m_stream.eof() && freeCacheSize() == 0;
77     }
78     void flushCache();
79     void createCache(size_t size);
80     void writeCompressedLength(uint32_t  num);
81     uint32_t readCompressedLength();
82 private:
83     std::fstream m_stream;
84     char *m_cache;
85     char *m_cachePtr;
86     size_t m_cacheSize;
87
88     char *m_compressedCache;
89
90     File::Offset m_currentOffset;
91 };
92
93 }
94
95 #endif // TRACE_SNAPPYFILE_HPP