Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 1 | // 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 Arnold | 41e3474 | 2015-05-11 11:31:50 -0700 | [diff] [blame] | 11 | #include "update_engine/utils.h" |
| 12 | |
Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 13 | using std::string; |
| 14 | |
| 15 | namespace chromeos_update_engine { |
| 16 | |
| 17 | namespace { |
| 18 | // Output the list of extents as (start_block, num_blocks) in the passed output |
| 19 | // stream. |
| 20 | void 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 | |
Sen Jiang | 8cc502d | 2015-08-10 10:04:54 -0700 | [diff] [blame] | 28 | bool AnnotatedOperation::SetOperationBlob(chromeos::Blob* blob, |
| 29 | BlobFileWriter* blob_file) { |
Gilad Arnold | 41e3474 | 2015-05-11 11:31:50 -0700 | [diff] [blame] | 30 | op.set_data_length(blob->size()); |
Sen Jiang | 8cc502d | 2015-08-10 10:04:54 -0700 | [diff] [blame] | 31 | off_t data_offset = blob_file->StoreBlob(*blob); |
| 32 | if (data_offset == -1) |
| 33 | return false; |
| 34 | op.set_data_offset(data_offset); |
Gilad Arnold | 41e3474 | 2015-05-11 11:31:50 -0700 | [diff] [blame] | 35 | return true; |
| 36 | } |
| 37 | |
Alex Deymo | a12ee11 | 2015-08-12 22:19:32 -0700 | [diff] [blame^] | 38 | string InstallOperationTypeName(InstallOperation_Type op_type) { |
Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 39 | switch (op_type) { |
Alex Deymo | a12ee11 | 2015-08-12 22:19:32 -0700 | [diff] [blame^] | 40 | case InstallOperation::BSDIFF: |
Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 41 | return "BSDIFF"; |
Alex Deymo | a12ee11 | 2015-08-12 22:19:32 -0700 | [diff] [blame^] | 42 | case InstallOperation::MOVE: |
Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 43 | return "MOVE"; |
Alex Deymo | a12ee11 | 2015-08-12 22:19:32 -0700 | [diff] [blame^] | 44 | case InstallOperation::REPLACE: |
Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 45 | return "REPLACE"; |
Alex Deymo | a12ee11 | 2015-08-12 22:19:32 -0700 | [diff] [blame^] | 46 | case InstallOperation::REPLACE_BZ: |
Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 47 | return "REPLACE_BZ"; |
Alex Deymo | a12ee11 | 2015-08-12 22:19:32 -0700 | [diff] [blame^] | 48 | case InstallOperation::SOURCE_COPY: |
Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 49 | return "SOURCE_COPY"; |
Alex Deymo | a12ee11 | 2015-08-12 22:19:32 -0700 | [diff] [blame^] | 50 | case InstallOperation::SOURCE_BSDIFF: |
Alex Deymo | 477aec2 | 2015-03-24 23:40:48 -0700 | [diff] [blame] | 51 | return "SOURCE_BSDIFF"; |
| 52 | } |
| 53 | return "UNK"; |
| 54 | } |
| 55 | |
| 56 | std::ostream& operator<<(std::ostream& os, const AnnotatedOperation& aop) { |
| 57 | // For example, this prints: |
| 58 | // REPLACE_BZ 500 @3000 |
| 59 | // name: /foo/bar |
| 60 | // dst: (123, 3) (127, 2) |
| 61 | os << InstallOperationTypeName(aop.op.type()) << " " << aop.op.data_length(); |
| 62 | if (aop.op.data_length() > 0) |
| 63 | os << " @" << aop.op.data_offset(); |
| 64 | if (!aop.name.empty()) { |
| 65 | os << std::endl << " name: " << aop.name; |
| 66 | } |
| 67 | if (aop.op.src_extents_size() != 0) { |
| 68 | os << std::endl << " src:"; |
| 69 | OutputExtents(&os, aop.op.src_extents()); |
| 70 | } |
| 71 | if (aop.op.dst_extents_size() != 0) { |
| 72 | os << std::endl << " dst:"; |
| 73 | OutputExtents(&os, aop.op.dst_extents()); |
| 74 | } |
| 75 | return os; |
| 76 | } |
| 77 | |
| 78 | } // namespace chromeos_update_engine |