1 // 2 // Copyright (C) 2009 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 "update_engine/payload_consumer/file_writer.h" 18 19 #include <errno.h> 20 21 namespace chromeos_update_engine { 22 23 int DirectFileWriter::Open(const char* path, int flags, mode_t mode) { 24 CHECK_EQ(fd_, -1); 25 fd_ = open(path, flags, mode); 26 if (fd_ < 0) 27 return -errno; 28 return 0; 29 } 30 31 bool DirectFileWriter::Write(const void* bytes, size_t count) { 32 CHECK_GE(fd_, 0); 33 const char* char_bytes = reinterpret_cast<const char*>(bytes); 34 35 size_t bytes_written = 0; 36 while (bytes_written < count) { 37 ssize_t rc = write(fd_, char_bytes + bytes_written, count - bytes_written); 38 if (rc < 0) 39 return false; 40 bytes_written += rc; 41 } 42 CHECK_EQ(bytes_written, count); 43 return bytes_written == count; 44 } 45 46 int DirectFileWriter::Close() { 47 CHECK_GE(fd_, 0); 48 int rc = close(fd_); 49 50 // This can be any negative number that's not -1. This way, this FileWriter 51 // won't be used again for another file. 52 fd_ = -2; 53 54 if (rc < 0) 55 return -errno; 56 return rc; 57 } 58 59 } // namespace chromeos_update_engine 60