1 //
2 // Copyright (C) 2020 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 
17 #include <cstddef>
18 #include <memory>
19 
20 #include <base/logging.h>
21 
22 #include "update_engine/payload_consumer/partition_writer.h"
23 
24 namespace chromeos_update_engine::partition_writer {
CreatePartitionWriter(const PartitionUpdate & partition_update,const InstallPlan::Partition & install_part,DynamicPartitionControlInterface * dynamic_control,size_t block_size,bool is_interactive,bool is_dynamic_partition)25 std::unique_ptr<PartitionWriter> CreatePartitionWriter(
26     const PartitionUpdate& partition_update,
27     const InstallPlan::Partition& install_part,
28     DynamicPartitionControlInterface* dynamic_control,
29     size_t block_size,
30     bool is_interactive,
31     bool is_dynamic_partition) {
32   return std::make_unique<PartitionWriter>(partition_update,
33                                            install_part,
34                                            dynamic_control,
35                                            block_size,
36                                            is_interactive);
37 }
38 }  // namespace chromeos_update_engine::partition_writer
39