blob: caf34ec8e9b5633ca5135c6de2eaef18556a33ca [file] [log] [blame]
Alex Deymo2e71f902015-09-30 01:25:48 -07001//
2// Copyright (C) 2015 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//
16
Alex Deymo39910dc2015-11-09 17:04:30 -080017#ifndef UPDATE_ENGINE_PAYLOAD_CONSUMER_XZ_EXTENT_WRITER_H_
18#define UPDATE_ENGINE_PAYLOAD_CONSUMER_XZ_EXTENT_WRITER_H_
Alex Deymo2e71f902015-09-30 01:25:48 -070019
20#include <xz.h>
21
22#include <memory>
Amin Hassanicd7edbe2017-09-18 17:05:02 -070023#include <utility>
Alex Deymo2e71f902015-09-30 01:25:48 -070024
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070025#include <brillo/secure_blob.h>
Alex Deymo2e71f902015-09-30 01:25:48 -070026
Alex Deymo39910dc2015-11-09 17:04:30 -080027#include "update_engine/payload_consumer/extent_writer.h"
Alex Deymo2e71f902015-09-30 01:25:48 -070028
29// XzExtentWriter is a concrete ExtentWriter subclass that xz-decompresses
30// what it's given in Write using xz-embedded. Note that xz-embedded only
31// supports files with either no CRC or CRC-32. It passes the decompressed data
32// to an underlying ExtentWriter.
33
34namespace chromeos_update_engine {
35
36class XzExtentWriter : public ExtentWriter {
Kelvin Zhangcc04de72021-10-05 14:43:02 -070037 struct xz_deleter {
38 constexpr void operator()(xz_dec* p) { xz_dec_end(p); }
39 };
40
Alex Deymo2e71f902015-09-30 01:25:48 -070041 public:
42 explicit XzExtentWriter(std::unique_ptr<ExtentWriter> underlying_writer)
43 : underlying_writer_(std::move(underlying_writer)) {}
44 ~XzExtentWriter() override;
45
Kelvin Zhang4d22ca22021-02-09 14:06:25 -050046 bool Init(const google::protobuf::RepeatedPtrField<Extent>& extents,
Alex Deymo2e71f902015-09-30 01:25:48 -070047 uint32_t block_size) override;
48 bool Write(const void* bytes, size_t count) override;
Alex Deymo2e71f902015-09-30 01:25:48 -070049
50 private:
51 // The underlying ExtentWriter.
52 std::unique_ptr<ExtentWriter> underlying_writer_;
53 // The opaque xz decompressor struct.
Kelvin Zhangcc04de72021-10-05 14:43:02 -070054 std::unique_ptr<xz_dec, xz_deleter> stream_{nullptr};
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070055 brillo::Blob input_buffer_;
Alex Deymo2e71f902015-09-30 01:25:48 -070056
57 DISALLOW_COPY_AND_ASSIGN(XzExtentWriter);
58};
59
60} // namespace chromeos_update_engine
61
Alex Deymo39910dc2015-11-09 17:04:30 -080062#endif // UPDATE_ENGINE_PAYLOAD_CONSUMER_XZ_EXTENT_WRITER_H_