summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-07-25 01:01:53 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-07-25 01:01:53 +0000
commitd218647d3d30643b6dec9bc1e478d0cbe78d22c2 (patch)
tree7a09dff0a55fec57ae1ba55d023b5deae612d4fb
parent9aa4b9a16e2bc741a102d14ee2f59368d029d427 (diff)
parent4349aecd759267e3b37bf7dd828e143016c03e43 (diff)
downloadbsdiff-d218647d3d30643b6dec9bc1e478d0cbe78d22c2.tar.gz
Snap for 7580956 from 4349aecd759267e3b37bf7dd828e143016c03e43 to tm-release
Change-Id: I4576748625154b5f474f7d25aa68b1d94966652c
-rw-r--r--include/bsdiff/compressor_interface.h (renamed from compressor_interface.h)0
-rw-r--r--include/bsdiff/control_entry.h15
-rw-r--r--include/bsdiff/patch_writer.h (renamed from patch_writer.h)9
-rw-r--r--patch_writer.cc7
4 files changed, 17 insertions, 14 deletions
diff --git a/compressor_interface.h b/include/bsdiff/compressor_interface.h
index c0ff18d..c0ff18d 100644
--- a/compressor_interface.h
+++ b/include/bsdiff/compressor_interface.h
diff --git a/include/bsdiff/control_entry.h b/include/bsdiff/control_entry.h
index 2c849f6..3d2d96c 100644
--- a/include/bsdiff/control_entry.h
+++ b/include/bsdiff/control_entry.h
@@ -8,23 +8,24 @@
#include <stdint.h>
struct ControlEntry {
- ControlEntry(uint64_t diff_size,
- uint64_t extra_size,
- int64_t offset_increment)
+ constexpr ControlEntry(uint64_t diff_size,
+ uint64_t extra_size,
+ int64_t offset_increment)
: diff_size(diff_size),
extra_size(extra_size),
offset_increment(offset_increment) {}
+ constexpr ControlEntry() = default;
// The number of bytes to copy from the source and diff stream.
- uint64_t diff_size;
+ uint64_t diff_size{0};
// The number of bytes to copy from the extra stream.
- uint64_t extra_size;
+ uint64_t extra_size{0};
// The value to add to the source pointer after patching from the diff stream.
- int64_t offset_increment;
+ int64_t offset_increment{0};
- bool operator==(const ControlEntry& o) const {
+ [[nodiscard]] bool operator==(const ControlEntry& o) const {
return diff_size == o.diff_size && extra_size == o.extra_size &&
offset_increment == o.offset_increment;
}
diff --git a/patch_writer.h b/include/bsdiff/patch_writer.h
index 8ad4cde..6d2bcf5 100644
--- a/patch_writer.h
+++ b/include/bsdiff/patch_writer.h
@@ -14,6 +14,15 @@
namespace bsdiff {
+
+constexpr void EncodeInt64(int64_t x, uint8_t* buf) {
+ uint64_t y = x < 0 ? (1ULL << 63ULL) - x : x;
+ for (int i = 0; i < 8; ++i) {
+ buf[i] = y & 0xff;
+ y /= 256;
+ }
+}
+
// A PatchWriterInterface class with three compressors and a 32-byte header.
class BsdiffPatchWriter : public PatchWriterInterface {
public:
diff --git a/patch_writer.cc b/patch_writer.cc
index 52982e0..b7d9b08 100644
--- a/patch_writer.cc
+++ b/patch_writer.cc
@@ -15,13 +15,6 @@
namespace {
-void EncodeInt64(int64_t x, uint8_t* buf) {
- uint64_t y = x < 0 ? (1ULL << 63ULL) - x : x;
- for (int i = 0; i < 8; ++i) {
- buf[i] = y & 0xff;
- y /= 256;
- }
-}
} // namespace