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 // Md5sum implementation for Android. This version handles files as well as | 5 // Md5sum implementation for Android. This version handles files as well as |
6 // directories. Its output is sorted by file path. | 6 // directories. Its output is sorted by file path. |
7 | 7 |
8 #include <fstream> | 8 #include <fstream> |
9 #include <iostream> | 9 #include <iostream> |
10 #include <set> | 10 #include <set> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/file_util.h" | 13 #include "base/file_util.h" |
14 #include "base/files/file_enumerator.h" | |
15 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
16 #include "base/logging.h" | 15 #include "base/logging.h" |
17 #include "base/md5.h" | 16 #include "base/md5.h" |
18 | 17 |
19 namespace { | 18 namespace { |
20 | 19 |
21 const int kBufferSize = 1024; | 20 const int kBufferSize = 1024; |
22 | 21 |
23 // Returns whether |path|'s MD5 was successfully written to |digest_string|. | 22 // Returns whether |path|'s MD5 was successfully written to |digest_string|. |
24 bool MD5Sum(const char* path, std::string* digest_string) { | 23 bool MD5Sum(const char* path, std::string* digest_string) { |
(...skipping 22 matching lines...) Expand all Loading... |
47 } | 46 } |
48 | 47 |
49 // Returns the set of all files contained in |files|. This handles directories | 48 // Returns the set of all files contained in |files|. This handles directories |
50 // by walking them recursively. Excludes, .svn directories and file under them. | 49 // by walking them recursively. Excludes, .svn directories and file under them. |
51 std::set<std::string> MakeFileSet(const char** files) { | 50 std::set<std::string> MakeFileSet(const char** files) { |
52 const std::string svn_dir_component = FILE_PATH_LITERAL("/.svn/"); | 51 const std::string svn_dir_component = FILE_PATH_LITERAL("/.svn/"); |
53 std::set<std::string> file_set; | 52 std::set<std::string> file_set; |
54 for (const char** file = files; *file; ++file) { | 53 for (const char** file = files; *file; ++file) { |
55 base::FilePath file_path(*file); | 54 base::FilePath file_path(*file); |
56 if (file_util::DirectoryExists(file_path)) { | 55 if (file_util::DirectoryExists(file_path)) { |
57 base::FileEnumerator file_enumerator( | 56 file_util::FileEnumerator file_enumerator( |
58 file_path, true /* recurse */, base::FileEnumerator::FILES); | 57 file_path, true /* recurse */, file_util::FileEnumerator::FILES); |
59 for (base::FilePath child, empty; | 58 for (base::FilePath child, empty; |
60 (child = file_enumerator.Next()) != empty; ) { | 59 (child = file_enumerator.Next()) != empty; ) { |
61 // If the path contains /.svn/, ignore it. | 60 // If the path contains /.svn/, ignore it. |
62 if (child.value().find(svn_dir_component) == std::string::npos) { | 61 if (child.value().find(svn_dir_component) == std::string::npos) { |
63 child = base::MakeAbsoluteFilePath(child); | 62 child = base::MakeAbsoluteFilePath(child); |
64 file_set.insert(child.value()); | 63 file_set.insert(child.value()); |
65 } | 64 } |
66 } | 65 } |
67 } else { | 66 } else { |
68 file_set.insert(*file); | 67 file_set.insert(*file); |
(...skipping 15 matching lines...) Expand all Loading... |
84 for (std::set<std::string>::const_iterator it = files.begin(); | 83 for (std::set<std::string>::const_iterator it = files.begin(); |
85 it != files.end(); ++it) { | 84 it != files.end(); ++it) { |
86 if (!MD5Sum(it->c_str(), &digest)) | 85 if (!MD5Sum(it->c_str(), &digest)) |
87 failed = true; | 86 failed = true; |
88 base::FilePath file_path(*it); | 87 base::FilePath file_path(*it); |
89 std::cout << digest << " " | 88 std::cout << digest << " " |
90 << base::MakeAbsoluteFilePath(file_path).value() << std::endl; | 89 << base::MakeAbsoluteFilePath(file_path).value() << std::endl; |
91 } | 90 } |
92 return failed; | 91 return failed; |
93 } | 92 } |
OLD | NEW |