uuid.hpp 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*************************************************************************
  2. *
  3. * Copyright 2020 Realm Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. **************************************************************************/
  18. #ifndef REALM_UUID_HPP
  19. #define REALM_UUID_HPP
  20. #include <realm/string_data.hpp>
  21. namespace realm {
  22. struct InvalidUUIDString : std::logic_error {
  23. using std::logic_error::logic_error;
  24. };
  25. /// A UUID is a sequence of 16 bytes (128 bits)
  26. class UUID {
  27. public:
  28. static constexpr size_t num_bytes = 16;
  29. using UUIDBytes = std::array<uint8_t, num_bytes>;
  30. /// A string is considered valid if it contains only hex [a-f, 0-9]
  31. /// and hyphens in the correct sequence, case insensitive. For
  32. /// example: "01234567-9abc-4def-9012-3456789abcde" is valid.
  33. /// Other than the above, this function does not check the validity
  34. /// of the bits according to the rfc spec in order to allow for any
  35. /// user defined bit pattern and future compatibility.
  36. static bool is_valid_string(StringData) noexcept;
  37. /// This constructor may throw InvalidUUIDString if the format
  38. /// of the parameter is invalid according to `is_valid_string`
  39. explicit UUID(StringData);
  40. /// Constructs a UUID with all zero bytes
  41. UUID()
  42. noexcept
  43. : m_bytes{}
  44. {
  45. }
  46. explicit UUID(const UUIDBytes& raw) noexcept
  47. : m_bytes(raw)
  48. {
  49. }
  50. bool operator==(const UUID& other) const
  51. {
  52. return m_bytes == other.m_bytes;
  53. }
  54. bool operator!=(const UUID& other) const
  55. {
  56. return m_bytes != other.m_bytes;
  57. }
  58. bool operator>(const UUID& other) const
  59. {
  60. return m_bytes > other.m_bytes;
  61. }
  62. bool operator<(const UUID& other) const
  63. {
  64. return m_bytes < other.m_bytes;
  65. }
  66. bool operator>=(const UUID& other) const
  67. {
  68. return m_bytes >= other.m_bytes;
  69. }
  70. bool operator<=(const UUID& other) const
  71. {
  72. return m_bytes <= other.m_bytes;
  73. }
  74. std::string to_string() const;
  75. std::string to_base64() const;
  76. UUIDBytes to_bytes() const
  77. {
  78. return m_bytes;
  79. }
  80. inline size_t hash() const noexcept
  81. {
  82. return murmur2_or_cityhash(m_bytes.data(), sizeof(m_bytes));
  83. }
  84. private:
  85. UUIDBytes m_bytes = {};
  86. };
  87. inline std::ostream& operator<<(std::ostream& ostr, const UUID& id)
  88. {
  89. ostr << id.to_string();
  90. return ostr;
  91. }
  92. } // namespace realm
  93. namespace std {
  94. template <>
  95. struct hash<realm::UUID> {
  96. size_t operator()(const realm::UUID& uuid) const noexcept
  97. {
  98. return uuid.hash();
  99. }
  100. };
  101. } // namespace std
  102. #endif /* REALM_UUID_HPP */