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