blob: ca713cb3a5af51103c02fb327ea2251105ed767c [file] [log] [blame]
Alex Deymoa28e0192017-09-08 14:21:05 +02001// Copyright 2017 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef _BSDIFF_PATCH_WRITER_H_
6#define _BSDIFF_PATCH_WRITER_H_
7
Tianjie Xu1c26e2e2017-10-26 17:19:41 -07008#include <memory>
Alex Deymoa28e0192017-09-08 14:21:05 +02009#include <string>
10#include <vector>
11
Tianjie Xu1c26e2e2017-10-26 17:19:41 -070012#include "bsdiff/compressor_interface.h"
Alex Deymo538a75d2017-09-27 15:34:59 +020013#include "bsdiff/patch_writer_interface.h"
Alex Deymoa28e0192017-09-08 14:21:05 +020014
15namespace bsdiff {
16
Alex Deymo538a75d2017-09-27 15:34:59 +020017// A PatchWriterInterface class using the upstream's BSDIFF40 format: three
18// BZ2-compressors and a 32-byte header.
19class BsdiffPatchWriter : public PatchWriterInterface {
Alex Deymoa28e0192017-09-08 14:21:05 +020020 public:
Tianjie Xu1c26e2e2017-10-26 17:19:41 -070021 // Create the patch writer using |type| as the compression algorithm and the
22 // file |patch_filename| to write the patch data.
Tianjie Xub4cba642017-11-14 22:46:38 -080023 BsdiffPatchWriter(const std::string& patch_filename, BsdiffFormat format);
Alex Deymoa28e0192017-09-08 14:21:05 +020024
Alex Deymo538a75d2017-09-27 15:34:59 +020025 // PatchWriterInterface overrides.
Alex Deymo4dadd8b2017-10-26 16:19:33 +020026 bool Init(size_t new_size) override;
Alex Deymo68c0e7f2017-10-02 20:38:12 +020027 bool WriteDiffStream(const uint8_t* data, size_t size) override;
28 bool WriteExtraStream(const uint8_t* data, size_t size) override;
Alex Deymo538a75d2017-09-27 15:34:59 +020029 bool AddControlEntry(const ControlEntry& entry) override;
30 bool Close() override;
Alex Deymoa28e0192017-09-08 14:21:05 +020031
32 private:
33 // Write the BSDIFF patch header to the |fp_| given the size of the compressed
34 // control block and the compressed diff block.
35 bool WriteHeader(uint64_t ctrl_size, uint64_t diff_size);
36
Alex Deymo68c0e7f2017-10-02 20:38:12 +020037 // Bytes of the new files already written. Needed to store the new length in
38 // the header of the file.
Alex Deymoa28e0192017-09-08 14:21:05 +020039 uint64_t written_output_{0};
40
Alex Deymoa28e0192017-09-08 14:21:05 +020041 // The current file we are writing to.
42 FILE* fp_{nullptr};
Alex Deymo538a75d2017-09-27 15:34:59 +020043 std::string patch_filename_;
Alex Deymoa28e0192017-09-08 14:21:05 +020044
Tianjie Xub4cba642017-11-14 22:46:38 -080045 // The format of bsdiff we're using.
46 BsdiffFormat format_;
47
Alex Deymoa28e0192017-09-08 14:21:05 +020048 // The three internal compressed streams.
Tianjie Xu1c26e2e2017-10-26 17:19:41 -070049 std::unique_ptr<CompressorInterface> ctrl_stream_{nullptr};
50 std::unique_ptr<CompressorInterface> diff_stream_{nullptr};
51 std::unique_ptr<CompressorInterface> extra_stream_{nullptr};
Alex Deymoa28e0192017-09-08 14:21:05 +020052};
53
54} // namespace bsdiff
55
56#endif // _BSDIFF_PATCH_WRITER_H_