Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: third_party/WebKit/Source/platform/UUID.cpp

Issue 1906723003: Unify UUID/GUID generation code across base and blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove ASSERT, use StringPiece Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/platform/DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be
3 * 3 // found in the LICENSE file.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30 4
31 #include "platform/UUID.h" 5 #include "platform/UUID.h"
32 6
33 #include "wtf/CryptographicallyRandomNumber.h" 7 #include "base/guid.h"
34 #include "wtf/HexNumber.h" 8 #include "wtf/text/StringUTF8Adaptor.h"
35 #include "wtf/text/StringBuilder.h"
36 9
37 namespace blink { 10 namespace blink {
38 11
39 String createCanonicalUUIDString() 12 String createCanonicalUUIDString()
40 { 13 {
41 unsigned randomData[4]; 14 std::string uuid = base::GenerateGUID();
42 cryptographicallyRandomValues(reinterpret_cast<unsigned char*>(randomData), sizeof(randomData)); 15 return String::fromUTF8(uuid.data(), uuid.length());
43
44 // Format as Version 4 UUID.
45 StringBuilder builder;
46 builder.reserveCapacity(36);
47 appendUnsignedAsHexFixedSize(randomData[0], builder, 8, Lowercase);
48 builder.append('-');
49 appendUnsignedAsHexFixedSize(randomData[1] >> 16, builder, 4, Lowercase);
50 builder.appendLiteral("-4");
51 appendUnsignedAsHexFixedSize(randomData[1] & 0x00000fff, builder, 3, Lowerca se);
52 builder.append('-');
53 appendUnsignedAsHexFixedSize((randomData[2] >> 30) | 0x8, builder, 1, Lowerc ase);
54 appendUnsignedAsHexFixedSize((randomData[2] >> 16) & 0x00000fff, builder, 3, Lowercase);
55 builder.append('-');
56 appendUnsignedAsHexFixedSize(randomData[2] & 0x0000ffff, builder, 4, Lowerca se);
57 appendUnsignedAsHexFixedSize(randomData[3], builder, 8, Lowercase);
58 return builder.toString();
59 }
60
61 static bool isLowercaseHex(char c)
62 {
63 return (('0' <= c && c <= '9') || ('a' <= c && c <= 'f'));
64 } 16 }
65 17
66 bool isValidUUID(const String& uuid) 18 bool isValidUUID(const String& uuid)
67 { 19 {
68 // 32 digits + 4 hyphens = 36 characters. 20 // In most (if not all) cases the given uuid should be utf-8, so this
69 if (uuid.length() != 36) 21 // conversion should be almost no-op.
70 return false; 22 StringUTF8Adaptor utf8(uuid);
71 23 return base::IsValidGUIDOutputString(utf8.asStringPiece());
esprehn 2016/04/27 09:00:59 Can this take a StringPiece so we can avoid the co
kinuko 2016/04/27 09:21:19 It does now =)
72 for (size_t i = 0; i < uuid.length(); i++) {
73 if (i == 8 || i == 13 || i == 18 || i == 23) {
74 if (uuid[i] != '-')
75 return false;
76 } else {
77 if (!isLowercaseHex(uuid[i]))
78 return false;
79 }
80 }
81
82 return true;
83 } 24 }
84 25
85 } // namespace blink 26 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698