Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 1 | // Copyright 2014 The Chromium OS 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. |
| 4 | |
| 5 | #include "buffet/string_utils.h" |
| 6 | |
| 7 | #include <algorithm> |
| 8 | #include <string.h> |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 9 | #include <utility> |
| 10 | |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 11 | #include <base/strings/string_util.h> |
Alex Vakulenko | 96c84d3 | 2014-06-06 11:07:32 -0700 | [diff] [blame] | 12 | #include <base/strings/stringprintf.h> |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 13 | |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 14 | namespace buffet { |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 15 | namespace string_utils { |
| 16 | |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 17 | std::vector<std::string> Split(const std::string& str, |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 18 | char delimiter, |
| 19 | bool trim_whitespaces, |
| 20 | bool purge_empty_strings) { |
| 21 | std::vector<std::string> tokens; |
| 22 | if (delimiter == 0) |
| 23 | return tokens; |
| 24 | |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 25 | const char* sz = str.c_str(); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 26 | if (sz) { |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 27 | const char* szNext = strchr(sz, delimiter); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 28 | while (szNext) { |
| 29 | if (szNext != sz || !purge_empty_strings) |
| 30 | tokens.emplace_back(sz, szNext - sz); |
| 31 | sz = szNext + 1; |
| 32 | szNext = strchr(sz, delimiter); |
| 33 | } |
| 34 | if (*sz != 0 || !purge_empty_strings) |
| 35 | tokens.emplace_back(sz); |
| 36 | } |
| 37 | |
| 38 | if (trim_whitespaces) { |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 39 | std::for_each(tokens.begin(), tokens.end(), |
Alex Vakulenko | 96c84d3 | 2014-06-06 11:07:32 -0700 | [diff] [blame] | 40 | [](std::string& str) { |
Ben Chan | d2070a7 | 2014-05-19 21:26:41 -0700 | [diff] [blame] | 41 | base::TrimWhitespaceASCII(str, base::TRIM_ALL, &str); }); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | return tokens; |
| 45 | } |
| 46 | |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 47 | std::pair<std::string, std::string> SplitAtFirst(const std::string& str, |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 48 | char delimiter, |
| 49 | bool trim_whitespaces) { |
| 50 | std::pair<std::string, std::string> pair; |
| 51 | if (delimiter == 0) |
| 52 | return pair; |
| 53 | |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 54 | const char* sz = str.c_str(); |
| 55 | const char* szNext = strchr(sz, delimiter); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 56 | if (szNext) { |
| 57 | pair.first = std::string(sz, szNext); |
| 58 | pair.second = std::string(szNext + 1); |
| 59 | } else { |
| 60 | pair.first = str; |
| 61 | } |
| 62 | |
| 63 | if (trim_whitespaces) { |
Ben Chan | d2070a7 | 2014-05-19 21:26:41 -0700 | [diff] [blame] | 64 | base::TrimWhitespaceASCII(pair.first, base::TRIM_ALL, &pair.first); |
| 65 | base::TrimWhitespaceASCII(pair.second, base::TRIM_ALL, &pair.second); |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | return pair; |
| 69 | } |
| 70 | |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 71 | std::string Join(char delimiter, const std::vector<std::string>& strings) { |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 72 | return JoinString(strings, delimiter); |
| 73 | } |
| 74 | |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 75 | std::string Join(const std::string& delimiter, |
| 76 | const std::vector<std::string>& strings) { |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 77 | return JoinString(strings, delimiter); |
| 78 | } |
| 79 | |
| 80 | std::string Join(char delimiter, |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 81 | const std::string& str1, const std::string& str2) { |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 82 | return str1 + delimiter + str2; |
| 83 | } |
| 84 | |
Alex Vakulenko | b8ba595 | 2014-04-17 11:35:56 -0700 | [diff] [blame] | 85 | std::string Join(const std::string& delimiter, |
| 86 | const std::string& str1, const std::string& str2) { |
Chris Sosa | 45d9f10 | 2014-03-24 11:18:54 -0700 | [diff] [blame] | 87 | return str1 + delimiter + str2; |
| 88 | } |
| 89 | |
Alex Vakulenko | 96c84d3 | 2014-06-06 11:07:32 -0700 | [diff] [blame] | 90 | std::string ToString(double value) { |
| 91 | return base::StringPrintf("%g", value); |
| 92 | } |
| 93 | |
| 94 | std::string ToString(bool value) { |
| 95 | return value ? "true" : "false"; |
| 96 | } |
| 97 | |
Alex Vakulenko | af23b32 | 2014-05-08 16:25:45 -0700 | [diff] [blame] | 98 | } // namespace string_utils |
| 99 | } // namespace buffet |