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

Side by Side Diff: base/files/file_util_posix.cc

Issue 614893004: Refactor AppendToFile and WriteFileDescriptor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/files/file_util.h" 5 #include "base/files/file_util.h"
6 6
7 #include <dirent.h> 7 #include <dirent.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <fcntl.h> 9 #include <fcntl.h>
10 #include <libgen.h> 10 #include <libgen.h>
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 return -1; 675 return -1;
676 return bytes_read; 676 return bytes_read;
677 } 677 }
678 678
679 int WriteFile(const FilePath& filename, const char* data, int size) { 679 int WriteFile(const FilePath& filename, const char* data, int size) {
680 ThreadRestrictions::AssertIOAllowed(); 680 ThreadRestrictions::AssertIOAllowed();
681 int fd = HANDLE_EINTR(creat(filename.value().c_str(), 0640)); 681 int fd = HANDLE_EINTR(creat(filename.value().c_str(), 0640));
682 if (fd < 0) 682 if (fd < 0)
683 return -1; 683 return -1;
684 684
685 int bytes_written = WriteFileDescriptor(fd, data, size); 685 int bytes_written = WriteFileDescriptor(fd, data, size) ? size : -1;
686 if (IGNORE_EINTR(close(fd)) < 0) 686 if (IGNORE_EINTR(close(fd)) < 0)
687 return -1; 687 return -1;
688 return bytes_written; 688 return bytes_written;
689 } 689 }
690 690
691 int WriteFileDescriptor(const int fd, const char* data, int size) { 691 bool WriteFileDescriptor(const int fd, const char* data, int size) {
692 // Allow for partial writes. 692 // Allow for partial writes.
693 ssize_t bytes_written_total = 0; 693 ssize_t bytes_written_total = 0;
694 for (ssize_t bytes_written_partial = 0; bytes_written_total < size; 694 for (ssize_t bytes_written_partial = 0; bytes_written_total < size;
695 bytes_written_total += bytes_written_partial) { 695 bytes_written_total += bytes_written_partial) {
696 bytes_written_partial = 696 bytes_written_partial =
697 HANDLE_EINTR(write(fd, data + bytes_written_total, 697 HANDLE_EINTR(write(fd, data + bytes_written_total,
698 size - bytes_written_total)); 698 size - bytes_written_total));
699 if (bytes_written_partial < 0) 699 if (bytes_written_partial < 0)
700 return -1; 700 return false;
701 } 701 }
702 702
703 return bytes_written_total; 703 return true;
704 } 704 }
705 705
706 int AppendToFile(const FilePath& filename, const char* data, int size) { 706 bool AppendToFile(const FilePath& filename, const char* data, int size) {
707 ThreadRestrictions::AssertIOAllowed(); 707 ThreadRestrictions::AssertIOAllowed();
708 int saved_errno = 0;
708 int fd = HANDLE_EINTR(open(filename.value().c_str(), O_WRONLY | O_APPEND)); 709 int fd = HANDLE_EINTR(open(filename.value().c_str(), O_WRONLY | O_APPEND));
709 if (fd < 0) 710 if (fd < 0)
710 return -1; 711 return false;
711 712
712 int bytes_written = WriteFileDescriptor(fd, data, size); 713 // This call will either write all of the data or return false.
713 if (IGNORE_EINTR(close(fd)) < 0) 714 if (!WriteFileDescriptor(fd, data, size))
714 return -1; 715 saved_errno = errno;
715 return bytes_written; 716
717 if (IGNORE_EINTR(close(fd)) < 0 && saved_errno == 0) {
718 // An error occurred while closing the file but the data was written
719 // successfully so it's ok to return here.
720 return false;
721 }
722
723 // Restore any error that occurred while writing the data. This takes
724 // precedence over any error that occurred while closing the file.
725 if (saved_errno != 0) {
726 errno = saved_errno;
727 return false;
728 }
729
730 return true;
716 } 731 }
717 732
718 // Gets the current working directory for the process. 733 // Gets the current working directory for the process.
719 bool GetCurrentDirectory(FilePath* dir) { 734 bool GetCurrentDirectory(FilePath* dir) {
720 // getcwd can return ENOENT, which implies it checks against the disk. 735 // getcwd can return ENOENT, which implies it checks against the disk.
721 ThreadRestrictions::AssertIOAllowed(); 736 ThreadRestrictions::AssertIOAllowed();
722 737
723 char system_buffer[PATH_MAX] = ""; 738 char system_buffer[PATH_MAX] = "";
724 if (!getcwd(system_buffer, sizeof(system_buffer))) { 739 if (!getcwd(system_buffer, sizeof(system_buffer))) {
725 NOTREACHED(); 740 NOTREACHED();
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 result = false; 918 result = false;
904 if (IGNORE_EINTR(close(outfile)) < 0) 919 if (IGNORE_EINTR(close(outfile)) < 0)
905 result = false; 920 result = false;
906 921
907 return result; 922 return result;
908 } 923 }
909 #endif // !defined(OS_MACOSX) 924 #endif // !defined(OS_MACOSX)
910 925
911 } // namespace internal 926 } // namespace internal
912 } // namespace base 927 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698