blob: 4926411b87aca0b10ee66692cdcfd71dcf8c5bf6 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2009 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
Andrew de los Reyes80061062010-02-04 14:25:00 -080016
Alex Deymo39910dc2015-11-09 17:04:30 -080017#ifndef UPDATE_ENGINE_PAYLOAD_CONSUMER_BZIP_EXTENT_WRITER_H_
18#define UPDATE_ENGINE_PAYLOAD_CONSUMER_BZIP_EXTENT_WRITER_H_
Andrew de los Reyes80061062010-02-04 14:25:00 -080019
Andrew de los Reyes80061062010-02-04 14:25:00 -080020#include <bzlib.h>
Alex Deymo05322872015-09-30 09:50:24 -070021#include <memory>
Amin Hassanicd7edbe2017-09-18 17:05:02 -070022#include <utility>
Alex Vakulenkof68bbbc2015-02-09 12:53:18 -080023
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070024#include <brillo/secure_blob.h>
Alex Vakulenkof68bbbc2015-02-09 12:53:18 -080025
Alex Deymo39910dc2015-11-09 17:04:30 -080026#include "update_engine/payload_consumer/extent_writer.h"
Andrew de los Reyes80061062010-02-04 14:25:00 -080027
28// BzipExtentWriter is a concrete ExtentWriter subclass that bzip-decompresses
29// what it's given in Write. It passes the decompressed data to an underlying
30// ExtentWriter.
31
32namespace chromeos_update_engine {
33
34class BzipExtentWriter : public ExtentWriter {
35 public:
Alex Deymo05322872015-09-30 09:50:24 -070036 explicit BzipExtentWriter(std::unique_ptr<ExtentWriter> next)
37 : next_(std::move(next)) {
Andrew de los Reyes80061062010-02-04 14:25:00 -080038 memset(&stream_, 0, sizeof(stream_));
39 }
Sen Jiangac773de2018-04-26 15:50:13 -070040 ~BzipExtentWriter() override;
Andrew de los Reyes80061062010-02-04 14:25:00 -080041
Kelvin Zhang4d22ca22021-02-09 14:06:25 -050042 bool Init(const google::protobuf::RepeatedPtrField<Extent>& extents,
Alex Deymo05322872015-09-30 09:50:24 -070043 uint32_t block_size) override;
44 bool Write(const void* bytes, size_t count) override;
Andrew de los Reyes80061062010-02-04 14:25:00 -080045
46 private:
Alex Deymo05322872015-09-30 09:50:24 -070047 std::unique_ptr<ExtentWriter> next_; // The underlying ExtentWriter.
Kelvin Zhange47767a2023-05-16 13:00:58 -070048 bz_stream stream_{}; // the libbz2 stream
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070049 brillo::Blob input_buffer_;
Andrew de los Reyes80061062010-02-04 14:25:00 -080050};
51
52} // namespace chromeos_update_engine
53
Alex Deymo39910dc2015-11-09 17:04:30 -080054#endif // UPDATE_ENGINE_PAYLOAD_CONSUMER_BZIP_EXTENT_WRITER_H_