]> git.cworth.org Git - apitrace/blob - trace_snappyfile.hpp
List GL_TEXTURE_xxx and GL_TEXTURE_BINDING_xxx params per texture unit.
[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 protected:
56     virtual bool rawOpen(const std::string &filename, File::Mode mode);
57     virtual bool rawWrite(const void *buffer, int length);
58     virtual bool rawRead(void *buffer, int length);
59     virtual int rawGetc();
60     virtual void rawClose();
61     virtual void rawFlush();
62
63 private:
64     inline int freeCacheSize() const
65     {
66         if (m_cacheSize > 0)
67             return m_cacheSize - (m_cachePtr - m_cache);
68         else
69             return 0;
70     }
71     inline bool endOfData() const
72     {
73         return m_stream.eof() && freeCacheSize() == 0;
74     }
75     void flushCache();
76     void createCache(size_t size);
77     void writeCompressedLength(uint32_t  num);
78     uint32_t readCompressedLength();
79 private:
80     std::fstream m_stream;
81     char *m_cache;
82     char *m_cachePtr;
83     size_t m_cacheSize;
84
85     char *m_compressedCache;
86 };
87
88 }
89
90 #endif // TRACE_SNAPPYFILE_HPP