object_id.hpp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*************************************************************************
  2. *
  3. * Copyright 2019 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_OBJECT_ID_HPP
  19. #define REALM_OBJECT_ID_HPP
  20. #include <array>
  21. #include <cstdint>
  22. #include <cstring>
  23. #include <realm/timestamp.hpp>
  24. namespace realm {
  25. class ObjectId {
  26. public:
  27. static constexpr size_t num_bytes = 12;
  28. using ObjectIdBytes = std::array<uint8_t, num_bytes>;
  29. /**
  30. * Constructs an ObjectId with all bytes 0x00.
  31. */
  32. ObjectId() noexcept = default;
  33. /**
  34. * Checks if the given string is a valid object id.
  35. */
  36. static bool is_valid_str(StringData) noexcept;
  37. /**
  38. * Constructs an ObjectId from 24 hex characters.
  39. */
  40. ObjectId(const char* init) noexcept;
  41. /**
  42. * Constructs an ObjectID from an array of 12 unsigned bytes
  43. */
  44. ObjectId(const ObjectIdBytes& init) noexcept;
  45. /**
  46. * Constructs an ObjectId with the specified inputs, and a random number
  47. */
  48. ObjectId(Timestamp d, int machine_id, int process_id) noexcept;
  49. /**
  50. * Generates a new ObjectId using the algorithm to attempt to avoid collisions.
  51. */
  52. static ObjectId gen();
  53. bool operator==(const ObjectId& other) const
  54. {
  55. return m_bytes == other.m_bytes;
  56. }
  57. bool operator!=(const ObjectId& other) const
  58. {
  59. return m_bytes != other.m_bytes;
  60. }
  61. bool operator>(const ObjectId& other) const
  62. {
  63. return m_bytes > other.m_bytes;
  64. }
  65. bool operator<(const ObjectId& other) const
  66. {
  67. return m_bytes < other.m_bytes;
  68. }
  69. bool operator>=(const ObjectId& other) const
  70. {
  71. return m_bytes >= other.m_bytes;
  72. }
  73. bool operator<=(const ObjectId& other) const
  74. {
  75. return m_bytes <= other.m_bytes;
  76. }
  77. explicit operator Timestamp() const
  78. {
  79. return get_timestamp();
  80. }
  81. Timestamp get_timestamp() const;
  82. std::string to_string() const;
  83. ObjectIdBytes to_bytes() const;
  84. size_t hash() const noexcept;
  85. private:
  86. ObjectIdBytes m_bytes = {};
  87. };
  88. inline std::ostream& operator<<(std::ostream& ostr, const ObjectId& id)
  89. {
  90. ostr << id.to_string();
  91. return ostr;
  92. }
  93. } // namespace realm
  94. namespace std {
  95. template <>
  96. struct hash<realm::ObjectId> {
  97. size_t operator()(const realm::ObjectId& oid) const noexcept
  98. {
  99. return oid.hash();
  100. }
  101. };
  102. } // namespace std
  103. #endif /* REALM_OBJECT_ID_HPP */