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 #include "chromeos/system/name_value_pairs_parser.h" | 5 #include "chromeos/system/name_value_pairs_parser.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 return all_valid; | 106 return all_valid; |
107 } | 107 } |
108 | 108 |
109 bool NameValuePairsParser::GetSingleValueFromTool(int argc, | 109 bool NameValuePairsParser::GetSingleValueFromTool(int argc, |
110 const char* argv[], | 110 const char* argv[], |
111 const std::string& key) { | 111 const std::string& key) { |
112 std::string output_string; | 112 std::string output_string; |
113 if (!GetToolOutput(argc, argv, output_string)) | 113 if (!GetToolOutput(argc, argv, output_string)) |
114 return false; | 114 return false; |
115 | 115 |
116 TrimWhitespaceASCII(output_string, TRIM_ALL, &output_string); | 116 base::TrimWhitespaceASCII(output_string, base::TRIM_ALL, &output_string); |
117 AddNameValuePair(key, output_string); | 117 AddNameValuePair(key, output_string); |
118 return true; | 118 return true; |
119 } | 119 } |
120 | 120 |
121 bool NameValuePairsParser::GetNameValuePairsFromFile( | 121 bool NameValuePairsParser::GetNameValuePairsFromFile( |
122 const base::FilePath& file_path, | 122 const base::FilePath& file_path, |
123 const std::string& eq, | 123 const std::string& eq, |
124 const std::string& delim) { | 124 const std::string& delim) { |
125 std::string contents; | 125 std::string contents; |
126 if (base::ReadFileToString(file_path, &contents)) { | 126 if (base::ReadFileToString(file_path, &contents)) { |
(...skipping 13 matching lines...) Expand all Loading... |
140 std::string output_string; | 140 std::string output_string; |
141 if (!GetToolOutput(argc, argv, output_string)) | 141 if (!GetToolOutput(argc, argv, output_string)) |
142 return false; | 142 return false; |
143 | 143 |
144 return ParseNameValuePairsWithComments( | 144 return ParseNameValuePairsWithComments( |
145 output_string, eq, delim, comment_delim); | 145 output_string, eq, delim, comment_delim); |
146 } | 146 } |
147 | 147 |
148 } // namespace system | 148 } // namespace system |
149 } // namespace chromeos | 149 } // namespace chromeos |
OLD | NEW |