Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: src/platform/update_engine/file_writer.cc

Issue 465067: Missed new files in last commit
Patch Set: Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2009 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/file_writer.h"
6 #include <errno.h>
7
8 namespace chromeos_update_engine {
9
10 int DirectFileWriter::Open(const char* path, int flags, mode_t mode) {
11 CHECK_EQ(fd_, -1);
12 fd_ = open(path, flags, mode);
13 if (fd_ < 0)
14 return -errno;
15 return 0;
16 }
17
18 int DirectFileWriter::Write(const void* bytes, size_t count) {
19 CHECK_GE(fd_, 0);
20 const char* char_bytes = reinterpret_cast<const char*>(bytes);
21
22 size_t bytes_written = 0;
23 while (bytes_written < count) {
24 ssize_t rc = write(fd_, char_bytes + bytes_written,
25 count - bytes_written);
26 if (rc < 0)
27 return -errno;
28 bytes_written += rc;
29 }
30 CHECK_EQ(bytes_written, count);
31 return bytes_written;
32 }
33
34 int DirectFileWriter::Close() {
35 CHECK_GE(fd_, 0);
36 int rc = close(fd_);
37
38 // This can be any negative number that's not -1. This way, this FileWriter
39 // won't be used again for another file.
40 fd_ = -2;
41
42 if (rc < 0)
43 return -errno;
44 return rc;
45 }
46
47 } // namespace chromeos_update_engine
OLDNEW
« no previous file with comments | « src/platform/update_engine/delta_diff_parser_unittest.cc ('k') | src/platform/update_engine/filesystem_copier_action.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698