blob: 2aa79fc7bc8d8794de52ee5406eb5d6c94194719 [file] [log] [blame]
Alex Deymo477aec22015-03-24 23:40:48 -07001// Copyright 2015 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#include "update_engine/payload_generator/annotated_operation.h"
6
7#include <base/format_macros.h>
8#include <base/strings/string_number_conversions.h>
9#include <base/strings/stringprintf.h>
10
Gilad Arnold41e34742015-05-11 11:31:50 -070011#include "update_engine/utils.h"
12
Alex Deymo477aec22015-03-24 23:40:48 -070013using std::string;
14
15namespace chromeos_update_engine {
16
17namespace {
18// Output the list of extents as (start_block, num_blocks) in the passed output
19// stream.
20void OutputExtents(std::ostream* os,
21 const google::protobuf::RepeatedPtrField<Extent>& extents) {
22 for (const auto& extent : extents) {
23 *os << " (" << extent.start_block() << ", " << extent.num_blocks() << ")";
24 }
25}
26} // namespace
27
Gilad Arnold41e34742015-05-11 11:31:50 -070028bool AnnotatedOperation::SetOperationBlob(chromeos::Blob* blob, int data_fd,
29 off_t* data_file_size) {
30 TEST_AND_RETURN_FALSE(utils::PWriteAll(data_fd,
31 blob->data(),
32 blob->size(),
33 *data_file_size));
34 op.set_data_length(blob->size());
35 op.set_data_offset(*data_file_size);
36 *data_file_size += blob->size();
37 return true;
38}
39
Alex Deymo477aec22015-03-24 23:40:48 -070040string InstallOperationTypeName(
41 DeltaArchiveManifest_InstallOperation_Type op_type) {
42 switch (op_type) {
43 case DeltaArchiveManifest_InstallOperation_Type_BSDIFF:
44 return "BSDIFF";
45 case DeltaArchiveManifest_InstallOperation_Type_MOVE:
46 return "MOVE";
47 case DeltaArchiveManifest_InstallOperation_Type_REPLACE:
48 return "REPLACE";
49 case DeltaArchiveManifest_InstallOperation_Type_REPLACE_BZ:
50 return "REPLACE_BZ";
51 case DeltaArchiveManifest_InstallOperation_Type_SOURCE_COPY:
52 return "SOURCE_COPY";
53 case DeltaArchiveManifest_InstallOperation_Type_SOURCE_BSDIFF:
54 return "SOURCE_BSDIFF";
55 }
56 return "UNK";
57}
58
59std::ostream& operator<<(std::ostream& os, const AnnotatedOperation& aop) {
60 // For example, this prints:
61 // REPLACE_BZ 500 @3000
62 // name: /foo/bar
63 // dst: (123, 3) (127, 2)
64 os << InstallOperationTypeName(aop.op.type()) << " " << aop.op.data_length();
65 if (aop.op.data_length() > 0)
66 os << " @" << aop.op.data_offset();
67 if (!aop.name.empty()) {
68 os << std::endl << " name: " << aop.name;
69 }
70 if (aop.op.src_extents_size() != 0) {
71 os << std::endl << " src:";
72 OutputExtents(&os, aop.op.src_extents());
73 }
74 if (aop.op.dst_extents_size() != 0) {
75 os << std::endl << " dst:";
76 OutputExtents(&os, aop.op.dst_extents());
77 }
78 return os;
79}
80
81} // namespace chromeos_update_engine