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
3 // found in the LICENSE file.
5 #include "base/file_util.h"
14 #include "base/file_path.h"
15 #include "base/logging.h"
16 #include "base/stringprintf.h"
17 #include "base/string_piece.h"
18 #include "base/string_util.h"
19 #include "base/utf_string_conversions.h"
23 const FilePath::CharType kExtensionSeparator
= FILE_PATH_LITERAL('.');
25 // The maximum number of 'uniquified' files we will try to create.
26 // This is used when the filename we're trying to download is already in use,
27 // so we create a new unique filename by appending " (nnn)" before the
28 // extension, where 1 <= nnn <= kMaxUniqueFiles.
29 // Also used by code that cleans up said files.
30 static const int kMaxUniqueFiles
= 100;
36 bool g_bug108724_debug
= false;
38 bool EndsWithSeparator(const FilePath
& path
) {
39 FilePath::StringType value
= path
.value();
43 return FilePath::IsSeparator(value
[value
.size() - 1]);
46 bool EnsureEndsWithSeparator(FilePath
* path
) {
47 if (!DirectoryExists(*path
))
50 if (EndsWithSeparator(*path
))
53 FilePath::StringType
& path_str
=
54 const_cast<FilePath::StringType
&>(path
->value());
55 path_str
.append(&FilePath::kSeparators
[0], 1);
60 void InsertBeforeExtension(FilePath
* path
, const FilePath::StringType
& suffix
) {
61 FilePath::StringType
& value
=
62 const_cast<FilePath::StringType
&>(path
->value());
64 const FilePath::StringType::size_type last_dot
=
65 value
.rfind(kExtensionSeparator
);
66 const FilePath::StringType::size_type last_separator
=
67 value
.find_last_of(FilePath::StringType(FilePath::kSeparators
));
69 if (last_dot
== FilePath::StringType::npos
||
70 (last_separator
!= std::wstring::npos
&& last_dot
< last_separator
)) {
71 // The path looks something like "C:\pics.old\jojo" or "C:\pics\jojo".
72 // We should just append the suffix to the entire path.
77 value
.insert(last_dot
, suffix
);
80 bool ContentsEqual(const FilePath
& filename1
, const FilePath
& filename2
) {
81 // We open the file in binary format even if they are text files because
82 // we are just comparing that bytes are exactly same in both files and not
83 // doing anything smart with text formatting.
84 std::ifstream
file1(filename1
.value().c_str(),
85 std::ios::in
| std::ios::binary
);
86 std::ifstream
file2(filename2
.value().c_str(),
87 std::ios::in
| std::ios::binary
);
89 // Even if both files aren't openable (and thus, in some sense, "equal"),
90 // any unusable file yields a result of "false".
91 if (!file1
.is_open() || !file2
.is_open())
94 const int BUFFER_SIZE
= 2056;
95 char buffer1
[BUFFER_SIZE
], buffer2
[BUFFER_SIZE
];
97 file1
.read(buffer1
, BUFFER_SIZE
);
98 file2
.read(buffer2
, BUFFER_SIZE
);
100 if ((file1
.eof() != file2
.eof()) ||
101 (file1
.gcount() != file2
.gcount()) ||
102 (memcmp(buffer1
, buffer2
, file1
.gcount()))) {
107 } while (!file1
.eof() || !file2
.eof());
114 bool TextContentsEqual(const FilePath
& filename1
, const FilePath
& filename2
) {
115 std::ifstream
file1(filename1
.value().c_str(), std::ios::in
);
116 std::ifstream
file2(filename2
.value().c_str(), std::ios::in
);
118 // Even if both files aren't openable (and thus, in some sense, "equal"),
119 // any unusable file yields a result of "false".
120 if (!file1
.is_open() || !file2
.is_open())
124 std::string line1
, line2
;
125 getline(file1
, line1
);
126 getline(file2
, line2
);
128 // Check for mismatched EOF states, or any error state.
129 if ((file1
.eof() != file2
.eof()) ||
130 file1
.bad() || file2
.bad()) {
134 // Trim all '\r' and '\n' characters from the end of the line.
135 std::string::size_type end1
= line1
.find_last_not_of("\r\n");
136 if (end1
== std::string::npos
)
138 else if (end1
+ 1 < line1
.length())
139 line1
.erase(end1
+ 1);
141 std::string::size_type end2
= line2
.find_last_not_of("\r\n");
142 if (end2
== std::string::npos
)
144 else if (end2
+ 1 < line2
.length())
145 line2
.erase(end2
+ 1);
149 } while (!file1
.eof() || !file2
.eof());
154 bool ReadFileToString(const FilePath
& path
, std::string
* contents
) {
155 FILE* file
= OpenFile(path
, "rb");
162 while ((len
= fread(buf
, 1, sizeof(buf
), file
)) > 0) {
164 contents
->append(buf
, len
);
171 bool IsDirectoryEmpty(const FilePath
& dir_path
) {
172 FileEnumerator
files(dir_path
, false,
173 FileEnumerator::FILES
| FileEnumerator::DIRECTORIES
);
174 if (files
.Next().value().empty())
179 FILE* CreateAndOpenTemporaryFile(FilePath
* path
) {
181 if (!GetTempDir(&directory
))
184 return CreateAndOpenTemporaryFileInDir(directory
, path
);
187 bool GetFileSize(const FilePath
& file_path
, int64
* file_size
) {
188 base::PlatformFileInfo info
;
189 if (!GetFileInfo(file_path
, &info
))
191 *file_size
= info
.size
;
195 bool IsDot(const FilePath
& path
) {
196 return FILE_PATH_LITERAL(".") == path
.BaseName().value();
199 bool IsDotDot(const FilePath
& path
) {
200 return FILE_PATH_LITERAL("..") == path
.BaseName().value();
203 bool TouchFile(const FilePath
& path
,
204 const base::Time
& last_accessed
,
205 const base::Time
& last_modified
) {
206 base::PlatformFile file
=
207 base::CreatePlatformFile(path
,
208 base::PLATFORM_FILE_OPEN
|
209 base::PLATFORM_FILE_WRITE_ATTRIBUTES
,
211 if (file
!= base::kInvalidPlatformFileValue
) {
212 bool result
= base::TouchPlatformFile(file
, last_accessed
, last_modified
);
213 base::ClosePlatformFile(file
);
220 bool SetLastModifiedTime(const FilePath
& path
,
221 const base::Time
& last_modified
) {
222 return TouchFile(path
, last_modified
, last_modified
);
225 bool CloseFile(FILE* file
) {
228 return fclose(file
) == 0;
231 bool TruncateFile(FILE* file
) {
234 long current_offset
= ftell(file
);
235 if (current_offset
== -1)
238 int fd
= _fileno(file
);
239 if (_chsize(fd
, current_offset
) != 0)
242 int fd
= fileno(file
);
243 if (ftruncate(fd
, current_offset
) != 0)
249 int GetUniquePathNumber(
250 const FilePath
& path
,
251 const FilePath::StringType
& suffix
) {
252 bool have_suffix
= !suffix
.empty();
253 if (!PathExists(path
) &&
254 (!have_suffix
|| !PathExists(FilePath(path
.value() + suffix
)))) {
259 for (int count
= 1; count
<= kMaxUniqueFiles
; ++count
) {
260 new_path
= path
.InsertBeforeExtensionASCII(StringPrintf(" (%d)", count
));
261 if (!PathExists(new_path
) &&
262 (!have_suffix
|| !PathExists(FilePath(new_path
.value() + suffix
)))) {
270 bool ContainsPath(const FilePath
&parent
, const FilePath
& child
) {
271 FilePath abs_parent
= FilePath(parent
);
272 FilePath abs_child
= FilePath(child
);
274 if (!file_util::AbsolutePath(&abs_parent
) ||
275 !file_util::AbsolutePath(&abs_child
))
279 // file_util::AbsolutePath() does not flatten case on Windows, so we must do
280 // a case-insensitive compare.
281 if (!StartsWith(abs_child
.value(), abs_parent
.value(), false))
283 if (!StartsWithASCII(abs_child
.value(), abs_parent
.value(), true))
287 // file_util::AbsolutePath() normalizes '/' to '\' on Windows, so we only need
288 // to check kSeparators[0].
289 if (abs_child
.value().length() <= abs_parent
.value().length() ||
290 abs_child
.value()[abs_parent
.value().length()] !=
291 FilePath::kSeparators
[0])
297 int64
ComputeDirectorySize(const FilePath
& root_path
) {
298 int64 running_size
= 0;
299 FileEnumerator
file_iter(root_path
, true, FileEnumerator::FILES
);
300 for (FilePath current
= file_iter
.Next(); !current
.empty();
301 current
= file_iter
.Next()) {
302 FileEnumerator::FindInfo info
;
303 file_iter
.GetFindInfo(&info
);
305 LARGE_INTEGER li
= { info
.nFileSizeLow
, info
.nFileSizeHigh
};
306 running_size
+= li
.QuadPart
;
308 running_size
+= info
.stat
.st_size
;
314 int64
ComputeFilesSize(const FilePath
& directory
,
315 const FilePath::StringType
& pattern
) {
316 int64 running_size
= 0;
317 FileEnumerator
file_iter(directory
, false, FileEnumerator::FILES
, pattern
);
318 for (FilePath current
= file_iter
.Next(); !current
.empty();
319 current
= file_iter
.Next()) {
320 FileEnumerator::FindInfo info
;
321 file_iter
.GetFindInfo(&info
);
323 LARGE_INTEGER li
= { info
.nFileSizeLow
, info
.nFileSizeHigh
};
324 running_size
+= li
.QuadPart
;
326 running_size
+= info
.stat
.st_size
;
332 ///////////////////////////////////////////////
335 MemoryMappedFile::~MemoryMappedFile() {
339 bool MemoryMappedFile::Initialize(const FilePath
& file_name
) {
343 if (!MapFileToMemory(file_name
)) {
351 bool MemoryMappedFile::Initialize(base::PlatformFile file
) {
357 if (!MapFileToMemoryInternal()) {
365 bool MemoryMappedFile::IsValid() const {
366 return data_
!= NULL
;
369 bool MemoryMappedFile::MapFileToMemory(const FilePath
& file_name
) {
370 file_
= base::CreatePlatformFile(
371 file_name
, base::PLATFORM_FILE_OPEN
| base::PLATFORM_FILE_READ
,
374 if (file_
== base::kInvalidPlatformFileValue
) {
375 DLOG(ERROR
) << "Couldn't open " << file_name
.value();
379 return MapFileToMemoryInternal();
382 ///////////////////////////////////////////////
385 // Note: the main logic is in file_util_<platform>.cc
387 bool FileEnumerator::ShouldSkip(const FilePath
& path
) {
388 FilePath::StringType basename
= path
.BaseName().value();
389 return IsDot(path
) || (IsDotDot(path
) && !(INCLUDE_DOT_DOT
& file_type_
));