OLD | NEW |
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 #ifndef BASE_I18N_FILE_UTIL_ICU_H_ | 5 #ifndef BASE_I18N_FILE_UTIL_ICU_H_ |
6 #define BASE_I18N_FILE_UTIL_ICU_H_ | 6 #define BASE_I18N_FILE_UTIL_ICU_H_ |
7 | 7 |
8 // File utilities that use the ICU library go in this file. | 8 // File utilities that use the ICU library go in this file. |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/i18n/base_i18n_export.h" | 11 #include "base/i18n/base_i18n_export.h" |
12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
13 | 13 |
14 namespace file_util { | 14 namespace base { |
| 15 namespace i18n { |
15 | 16 |
16 // Returns true if file_name does not have any illegal character. The input | 17 // Returns true if file_name does not have any illegal character. The input |
17 // param has the same restriction as that for ReplaceIllegalCharacters. | 18 // param has the same restriction as that for ReplaceIllegalCharacters. |
18 BASE_I18N_EXPORT bool IsFilenameLegal(const base::string16& file_name); | 19 BASE_I18N_EXPORT bool IsFilenameLegal(const string16& file_name); |
19 | 20 |
20 // Replaces characters in 'file_name' that are illegal for file names with | 21 // Replaces characters in 'file_name' that are illegal for file names with |
21 // 'replace_char'. 'file_name' must not be a full or relative path, but just the | 22 // 'replace_char'. 'file_name' must not be a full or relative path, but just the |
22 // file name component (since slashes are considered illegal). Any leading or | 23 // file name component (since slashes are considered illegal). Any leading or |
23 // trailing whitespace in 'file_name' is removed. | 24 // trailing whitespace in 'file_name' is removed. |
24 // Example: | 25 // Example: |
25 // file_name == "bad:file*name?.txt", changed to: "bad-file-name-.txt" when | 26 // file_name == "bad:file*name?.txt", changed to: "bad-file-name-.txt" when |
26 // 'replace_char' is '-'. | 27 // 'replace_char' is '-'. |
27 BASE_I18N_EXPORT void ReplaceIllegalCharactersInPath( | 28 BASE_I18N_EXPORT void ReplaceIllegalCharactersInPath( |
28 base::FilePath::StringType* file_name, | 29 FilePath::StringType* file_name, |
29 char replace_char); | 30 char replace_char); |
30 | 31 |
31 // Compares two filenames using the current locale information. This can be | 32 // Compares two filenames using the current locale information. This can be |
32 // used to sort directory listings. It behaves like "operator<" for use in | 33 // used to sort directory listings. It behaves like "operator<" for use in |
33 // std::sort. | 34 // std::sort. |
34 BASE_I18N_EXPORT bool LocaleAwareCompareFilenames(const base::FilePath& a, | 35 BASE_I18N_EXPORT bool LocaleAwareCompareFilenames(const FilePath& a, |
35 const base::FilePath& b); | 36 const FilePath& b); |
36 | 37 |
37 // Calculates the canonical file-system representation of |file_name| base name. | 38 // Calculates the canonical file-system representation of |file_name| base name. |
38 // Modifies |file_name| in place. No-op if not on ChromeOS. | 39 // Modifies |file_name| in place. No-op if not on ChromeOS. |
39 BASE_I18N_EXPORT void NormalizeFileNameEncoding(base::FilePath* file_name); | 40 BASE_I18N_EXPORT void NormalizeFileNameEncoding(FilePath* file_name); |
40 | 41 |
41 } // namespace file_util | 42 } // namespace i18n |
| 43 } // namespace base |
42 | 44 |
43 #endif // BASE_I18N_FILE_UTIL_ICU_H_ | 45 #endif // BASE_I18N_FILE_UTIL_ICU_H_ |
OLD | NEW |