mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
erikkay@google.com | e05e3c6 | 2009-01-30 04:18:57 +0900 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
erikkay@google.com | e05e3c6 | 2009-01-30 04:18:57 +0900 | [diff] [blame] | 5 | #include "base/version.h" |
| 6 | |
mostynb@opera.com | f29dd61 | 2013-09-04 08:29:12 +0900 | [diff] [blame] | 7 | #include <stddef.h> |
| 8 | |
jkummerow@chromium.org | df3e671 | 2010-12-21 17:27:25 +0900 | [diff] [blame] | 9 | #include <algorithm> |
| 10 | |
akalin@chromium.org | 2659ef1 | 2010-03-26 07:19:04 +0900 | [diff] [blame] | 11 | #include "base/logging.h" |
brettw@chromium.org | abcde5c | 2013-02-07 11:57:22 +0900 | [diff] [blame] | 12 | #include "base/strings/string_number_conversions.h" |
tfarina@chromium.org | 63aaf3f | 2013-02-08 08:01:39 +0900 | [diff] [blame] | 13 | #include "base/strings/string_split.h" |
avi@chromium.org | 68a745c | 2013-06-11 05:11:14 +0900 | [diff] [blame] | 14 | #include "base/strings/string_util.h" |
akalin@chromium.org | 2659ef1 | 2010-03-26 07:19:04 +0900 | [diff] [blame] | 15 | |
xhwang@chromium.org | 993e506 | 2013-04-22 16:35:50 +0900 | [diff] [blame] | 16 | namespace base { |
| 17 | |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 18 | namespace { |
| 19 | |
| 20 | // Parses the |numbers| vector representing the different numbers |
| 21 | // inside the version string and constructs a vector of valid integers. It stops |
| 22 | // when it reaches an invalid item (including the wildcard character). |parsed| |
| 23 | // is the resulting integer vector. Function returns true if all numbers were |
| 24 | // parsed successfully, false otherwise. |
| 25 | bool ParseVersionNumbers(const std::string& version_str, |
wfh | 79716bc | 2015-03-10 10:32:59 +0900 | [diff] [blame] | 26 | std::vector<uint32_t>* parsed) { |
brettw | e1daa97 | 2015-06-16 14:52:47 +0900 | [diff] [blame] | 27 | std::vector<StringPiece> numbers = |
| 28 | SplitStringPiece(version_str, ".", KEEP_WHITESPACE, SPLIT_WANT_ALL); |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 29 | if (numbers.empty()) |
| 30 | return false; |
| 31 | |
brettw | e1daa97 | 2015-06-16 14:52:47 +0900 | [diff] [blame] | 32 | for (auto it = numbers.begin(); it != numbers.end(); ++it) { |
| 33 | if (StartsWith(*it, "+", CompareCase::SENSITIVE)) |
wfh | b3f3e4d | 2015-02-22 14:41:39 +0900 | [diff] [blame] | 34 | return false; |
brettw | e1daa97 | 2015-06-16 14:52:47 +0900 | [diff] [blame] | 35 | |
wfh | 79716bc | 2015-03-10 10:32:59 +0900 | [diff] [blame] | 36 | unsigned int num; |
| 37 | if (!StringToUint(*it, &num)) |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 38 | return false; |
| 39 | |
wfh | b3f3e4d | 2015-02-22 14:41:39 +0900 | [diff] [blame] | 40 | // This throws out leading zeros for the first item only. |
wfh | 79716bc | 2015-03-10 10:32:59 +0900 | [diff] [blame] | 41 | if (it == numbers.begin() && UintToString(num) != *it) |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 42 | return false; |
| 43 | |
wfh | 79716bc | 2015-03-10 10:32:59 +0900 | [diff] [blame] | 44 | // StringToUint returns unsigned int but Version fields are uint32_t. |
| 45 | static_assert(sizeof (uint32_t) == sizeof (unsigned int), |
| 46 | "uint32_t must be same as unsigned int"); |
| 47 | parsed->push_back(num); |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 48 | } |
| 49 | return true; |
| 50 | } |
| 51 | |
| 52 | // Compares version components in |components1| with components in |
waffles@chromium.org | be67211 | 2013-06-21 14:00:30 +0900 | [diff] [blame] | 53 | // |components2|. Returns -1, 0 or 1 if |components1| is less than, equal to, |
| 54 | // or greater than |components2|, respectively. |
wfh | 79716bc | 2015-03-10 10:32:59 +0900 | [diff] [blame] | 55 | int CompareVersionComponents(const std::vector<uint32_t>& components1, |
| 56 | const std::vector<uint32_t>& components2) { |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 57 | const size_t count = std::min(components1.size(), components2.size()); |
| 58 | for (size_t i = 0; i < count; ++i) { |
| 59 | if (components1[i] > components2[i]) |
| 60 | return 1; |
| 61 | if (components1[i] < components2[i]) |
| 62 | return -1; |
| 63 | } |
| 64 | if (components1.size() > components2.size()) { |
| 65 | for (size_t i = count; i < components1.size(); ++i) { |
| 66 | if (components1[i] > 0) |
| 67 | return 1; |
| 68 | } |
| 69 | } else if (components1.size() < components2.size()) { |
| 70 | for (size_t i = count; i < components2.size(); ++i) { |
| 71 | if (components2[i] > 0) |
| 72 | return -1; |
| 73 | } |
| 74 | } |
| 75 | return 0; |
| 76 | } |
| 77 | |
| 78 | } // namespace |
| 79 | |
cpu@chromium.org | fa761a3 | 2011-06-08 02:21:30 +0900 | [diff] [blame] | 80 | Version::Version() { |
| 81 | } |
erg@google.com | 67a2543 | 2011-01-08 05:23:43 +0900 | [diff] [blame] | 82 | |
vmpstr | c8651bf | 2016-02-25 09:50:31 +0900 | [diff] [blame] | 83 | Version::Version(const Version& other) = default; |
| 84 | |
cpu@chromium.org | 331e27b | 2011-06-08 02:43:20 +0900 | [diff] [blame] | 85 | Version::~Version() { |
| 86 | } |
| 87 | |
cpu@chromium.org | fa761a3 | 2011-06-08 02:21:30 +0900 | [diff] [blame] | 88 | Version::Version(const std::string& version_str) { |
wfh | 79716bc | 2015-03-10 10:32:59 +0900 | [diff] [blame] | 89 | std::vector<uint32_t> parsed; |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 90 | if (!ParseVersionNumbers(version_str, &parsed)) |
| 91 | return; |
| 92 | |
cpu@chromium.org | fa761a3 | 2011-06-08 02:21:30 +0900 | [diff] [blame] | 93 | components_.swap(parsed); |
| 94 | } |
erg@google.com | 67a2543 | 2011-01-08 05:23:43 +0900 | [diff] [blame] | 95 | |
cpu@chromium.org | fa761a3 | 2011-06-08 02:21:30 +0900 | [diff] [blame] | 96 | bool Version::IsValid() const { |
| 97 | return (!components_.empty()); |
| 98 | } |
| 99 | |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 100 | // static |
| 101 | bool Version::IsValidWildcardString(const std::string& wildcard_string) { |
| 102 | std::string version_string = wildcard_string; |
brettw | e1daa97 | 2015-06-16 14:52:47 +0900 | [diff] [blame] | 103 | if (EndsWith(version_string, ".*", CompareCase::SENSITIVE)) |
| 104 | version_string.resize(version_string.size() - 2); |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 105 | |
| 106 | Version version(version_string); |
| 107 | return version.IsValid(); |
| 108 | } |
| 109 | |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 110 | int Version::CompareToWildcardString(const std::string& wildcard_string) const { |
| 111 | DCHECK(IsValid()); |
| 112 | DCHECK(Version::IsValidWildcardString(wildcard_string)); |
| 113 | |
| 114 | // Default behavior if the string doesn't end with a wildcard. |
brettw | e1daa97 | 2015-06-16 14:52:47 +0900 | [diff] [blame] | 115 | if (!EndsWith(wildcard_string, ".*", CompareCase::SENSITIVE)) { |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 116 | Version version(wildcard_string); |
| 117 | DCHECK(version.IsValid()); |
| 118 | return CompareTo(version); |
| 119 | } |
| 120 | |
wfh | 79716bc | 2015-03-10 10:32:59 +0900 | [diff] [blame] | 121 | std::vector<uint32_t> parsed; |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 122 | const bool success = ParseVersionNumbers( |
| 123 | wildcard_string.substr(0, wildcard_string.length() - 2), &parsed); |
| 124 | DCHECK(success); |
| 125 | const int comparison = CompareVersionComponents(components_, parsed); |
| 126 | // If the version is smaller than the wildcard version's |parsed| vector, |
| 127 | // then the wildcard has no effect (e.g. comparing 1.2.3 and 1.3.*) and the |
| 128 | // version is still smaller. Same logic for equality (e.g. comparing 1.2.2 to |
| 129 | // 1.2.2.* is 0 regardless of the wildcard). Under this logic, |
| 130 | // 1.2.0.0.0.0 compared to 1.2.* is 0. |
| 131 | if (comparison == -1 || comparison == 0) |
| 132 | return comparison; |
| 133 | |
| 134 | // Catch the case where the digits of |parsed| are found in |components_|, |
| 135 | // which means that the two are equal since |parsed| has a trailing "*". |
| 136 | // (e.g. 1.2.3 vs. 1.2.* will return 0). All other cases return 1 since |
| 137 | // components is greater (e.g. 3.2.3 vs 1.*). |
| 138 | DCHECK_GT(parsed.size(), 0UL); |
| 139 | const size_t min_num_comp = std::min(components_.size(), parsed.size()); |
| 140 | for (size_t i = 0; i < min_num_comp; ++i) { |
| 141 | if (components_[i] != parsed[i]) |
| 142 | return 1; |
| 143 | } |
| 144 | return 0; |
| 145 | } |
| 146 | |
erikkay@google.com | e05e3c6 | 2009-01-30 04:18:57 +0900 | [diff] [blame] | 147 | int Version::CompareTo(const Version& other) const { |
cpu@chromium.org | fa761a3 | 2011-06-08 02:21:30 +0900 | [diff] [blame] | 148 | DCHECK(IsValid()); |
| 149 | DCHECK(other.IsValid()); |
mathp@google.com | 1088cfd | 2012-07-05 01:22:48 +0900 | [diff] [blame] | 150 | return CompareVersionComponents(components_, other.components_); |
erikkay@google.com | e05e3c6 | 2009-01-30 04:18:57 +0900 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | const std::string Version::GetString() const { |
cpu@chromium.org | fa761a3 | 2011-06-08 02:21:30 +0900 | [diff] [blame] | 154 | DCHECK(IsValid()); |
erikkay@google.com | e05e3c6 | 2009-01-30 04:18:57 +0900 | [diff] [blame] | 155 | std::string version_str; |
robertshield@chromium.org | a9914a3 | 2010-11-11 02:02:19 +0900 | [diff] [blame] | 156 | size_t count = components_.size(); |
| 157 | for (size_t i = 0; i < count - 1; ++i) { |
ricea | cb27fe0 | 2015-07-28 04:08:46 +0900 | [diff] [blame] | 158 | version_str.append(UintToString(components_[i])); |
erikkay@google.com | e05e3c6 | 2009-01-30 04:18:57 +0900 | [diff] [blame] | 159 | version_str.append("."); |
| 160 | } |
ricea | cb27fe0 | 2015-07-28 04:08:46 +0900 | [diff] [blame] | 161 | version_str.append(UintToString(components_[count - 1])); |
erikkay@google.com | e05e3c6 | 2009-01-30 04:18:57 +0900 | [diff] [blame] | 162 | return version_str; |
| 163 | } |
xhwang@chromium.org | 993e506 | 2013-04-22 16:35:50 +0900 | [diff] [blame] | 164 | |
robpercival | c43ce17 | 2016-01-26 04:39:00 +0900 | [diff] [blame] | 165 | bool operator==(const Version& v1, const Version& v2) { |
| 166 | return v1.CompareTo(v2) == 0; |
| 167 | } |
| 168 | |
| 169 | bool operator!=(const Version& v1, const Version& v2) { |
| 170 | return !(v1 == v2); |
| 171 | } |
| 172 | |
| 173 | bool operator<(const Version& v1, const Version& v2) { |
| 174 | return v1.CompareTo(v2) < 0; |
| 175 | } |
| 176 | |
| 177 | bool operator<=(const Version& v1, const Version& v2) { |
| 178 | return v1.CompareTo(v2) <= 0; |
| 179 | } |
| 180 | |
| 181 | bool operator>(const Version& v1, const Version& v2) { |
| 182 | return v1.CompareTo(v2) > 0; |
| 183 | } |
| 184 | |
| 185 | bool operator>=(const Version& v1, const Version& v2) { |
| 186 | return v1.CompareTo(v2) >= 0; |
| 187 | } |
| 188 | |
| 189 | std::ostream& operator<<(std::ostream& stream, const Version& v) { |
| 190 | return stream << v.GetString(); |
| 191 | } |
| 192 | |
xhwang@chromium.org | 993e506 | 2013-04-22 16:35:50 +0900 | [diff] [blame] | 193 | } // namespace base |