1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/**************************************************************************
*
* Copyright 2016 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
**************************************************************************/
#include "trace_file.hpp"
#include <assert.h>
#include <string.h>
#include <iostream>
#include <brotli/decode.h>
#include "os.hpp"
using namespace trace;
class BrotliFile : public File {
public:
BrotliFile(void);
virtual ~BrotliFile();
protected:
virtual bool rawOpen(const char *filename) override;
virtual size_t rawRead(void *buffer, size_t length) override;
virtual int rawGetc(void) override;
virtual void rawClose(void) override;
virtual bool rawSkip(size_t length) override;
size_t containerSizeInBytes(void) const override;
size_t containerBytesRead(void) const override;
size_t dataBytesRead(void) const override;
const char *containerType(void) const override;
private:
BrotliDecoderState *state;
mutable std::ifstream m_stream;
static const size_t kFileBufferSize = 65536;
uint8_t input[kFileBufferSize];
const uint8_t* next_in;
size_t available_in;
std::streampos m_endPos = 0;
size_t m_dataBytesRead = 0;
};
BrotliFile::BrotliFile(void)
{
state = BrotliDecoderCreateInstance(nullptr, nullptr, nullptr);
available_in = 0;
next_in = input;
}
BrotliFile::~BrotliFile()
{
close();
BrotliDecoderDestroyInstance(state);
}
bool BrotliFile::rawOpen(const char *filename)
{
std::ios_base::openmode fmode = std::fstream::binary
| std::fstream::in;
m_stream.open(filename, fmode);
if (m_stream.is_open()) {
m_stream.seekg(0, std::ios::end);
m_endPos = m_stream.tellg();
m_stream.seekg(0, std::ios::beg);
m_dataBytesRead = 0;
}
return m_stream.is_open();
}
size_t BrotliFile::rawRead(void *buffer, size_t length)
{
uint8_t* output = (uint8_t *)buffer;
size_t total_out;
size_t available_out = length;
uint8_t* next_out = output;
while (true) {
BrotliDecoderResult result;
result = BrotliDecoderDecompressStream(state,
&available_in, &next_in,
&available_out, &next_out, &total_out);
if (result == BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT) {
if (m_stream.fail()) {
break;
}
m_stream.read((char *)input, kFileBufferSize);
available_in = kFileBufferSize;
if (m_stream.fail()) {
available_in = m_stream.gcount();
if (!available_in) {
break;
}
}
next_in = input;
} else {
assert(result == BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT ||
result == BROTLI_DECODER_RESULT_SUCCESS);
break;
}
}
assert(next_out - output <= length);
m_dataBytesRead += static_cast<size_t>(next_out - output);
return next_out - output;
}
int BrotliFile::rawGetc()
{
unsigned char c;
if (rawRead(&c, 1) != 1) {
return -1;
}
return c;
}
void BrotliFile::rawClose()
{
m_stream.close();
}
bool BrotliFile::rawSkip(size_t)
{
return false;
}
size_t BrotliFile::containerSizeInBytes(void) const {
return static_cast<size_t>(m_endPos);
}
size_t BrotliFile::containerBytesRead(void) const {
return static_cast<size_t>(m_stream.tellg());
}
size_t BrotliFile::dataBytesRead(void) const {
return m_dataBytesRead;
}
const char *BrotliFile::containerType(void) const {
return "Brotli";
}
File * File::createBrotli(void) {
return new BrotliFile;
}
|