blob: 0bf26dfed530fe7ddc775e4ef8cc69a450d9292f (
plain) (
blame)
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
|
// GZipFile.cpp
// Implements the cGZipFile class representing a RAII wrapper over zlib's GZip file routines
#include "Globals.h"
#include "File.h"
#include "GZipFile.h"
Compression::Result GZipFile::ReadRestOfFile(const std::string & a_FileName)
{
InputFileStream File(a_FileName, InputFileStream::binary);
const std::string Input{ std::istreambuf_iterator<char>(File), std::istreambuf_iterator<char>() };
const ContiguousByteBufferView Data{ reinterpret_cast<const std::byte *>(Input.data()), Input.size() };
return Compression::Extractor().ExtractGZip(Data);
}
void GZipFile::Write(const std::string & a_FileName, ContiguousByteBufferView a_Contents)
{
OutputFileStream(a_FileName, OutputFileStream::binary) << Compression::Compressor().CompressGZip(a_Contents).GetStringView();
}
|