Imported Upstream version 4.0
[platform/upstream/ccache.git] / src / NullCompressor.hpp
1 // Copyright (C) 2019 Joel Rosdahl and other contributors
2 //
3 // See doc/AUTHORS.adoc for a complete list of contributors.
4 //
5 // This program is free software; you can redistribute it and/or modify it
6 // under the terms of the GNU General Public License as published by the Free
7 // Software Foundation; either version 3 of the License, or (at your option)
8 // any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but WITHOUT
11 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 // more details.
14 //
15 // You should have received a copy of the GNU General Public License along with
16 // this program; if not, write to the Free Software Foundation, Inc., 51
17 // Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
19 #pragma once
20
21 #include "system.hpp"
22
23 #include "Compressor.hpp"
24 #include "NonCopyable.hpp"
25
26 // A compressor of an uncompressed stream.
27 class NullCompressor : public Compressor, NonCopyable
28 {
29 public:
30   // Parameters:
31   // - stream: The file to write data to.
32   explicit NullCompressor(FILE* stream);
33
34   int8_t actual_compression_level() const override;
35   void write(const void* data, size_t count) override;
36   void finalize() override;
37
38 private:
39   FILE* m_stream;
40 };