[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | d3d728e9 | 2010-10-20 03:24:55 | [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 | |||||
[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 5 | #include "base/guid.h" |
[email protected] | d3d728e9 | 2010-10-20 03:24:55 | [diff] [blame] | 6 | |
benchan | 57d121ac | 2014-09-05 05:08:32 | [diff] [blame] | 7 | #include "base/strings/string_util.h" |
8 | |||||
[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 9 | namespace base { |
[email protected] | d3d728e9 | 2010-10-20 03:24:55 | [diff] [blame] | 10 | |
11 | bool IsValidGUID(const std::string& guid) { | ||||
12 | const size_t kGUIDLength = 36U; | ||||
13 | if (guid.length() != kGUIDLength) | ||||
14 | return false; | ||||
15 | |||||
benchan | 57d121ac | 2014-09-05 05:08:32 | [diff] [blame] | 16 | for (size_t i = 0; i < guid.length(); ++i) { |
[email protected] | d3d728e9 | 2010-10-20 03:24:55 | [diff] [blame] | 17 | char current = guid[i]; |
18 | if (i == 8 || i == 13 || i == 18 || i == 23) { | ||||
19 | if (current != '-') | ||||
20 | return false; | ||||
21 | } else { | ||||
benchan | 57d121ac | 2014-09-05 05:08:32 | [diff] [blame] | 22 | if (!IsHexDigit(current)) |
[email protected] | d3d728e9 | 2010-10-20 03:24:55 | [diff] [blame] | 23 | return false; |
24 | } | ||||
25 | } | ||||
26 | |||||
27 | return true; | ||||
28 | } | ||||
29 | |||||
[email protected] | 4461e9ad | 2013-09-27 08:52:29 | [diff] [blame] | 30 | } // namespace base |