version_id.hpp 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*************************************************************************
  2. *
  3. * Copyright 2016 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_VERSION_ID_HPP
  19. #define REALM_VERSION_ID_HPP
  20. #if defined(_WIN32) && !defined(__STDC_LIMIT_MACROS)
  21. #define __STDC_LIMIT_MACROS
  22. #endif
  23. #include <cstdint>
  24. #include <limits>
  25. #include <ostream>
  26. namespace realm {
  27. struct VersionID {
  28. using version_type = uint_fast64_t;
  29. version_type version = std::numeric_limits<version_type>::max();
  30. uint_fast32_t index = 0;
  31. constexpr VersionID() = default;
  32. constexpr VersionID(version_type initial_version, uint_fast32_t initial_index) noexcept
  33. {
  34. version = initial_version;
  35. index = initial_index;
  36. }
  37. constexpr bool operator==(const VersionID& other) const noexcept
  38. {
  39. return version == other.version;
  40. }
  41. constexpr bool operator!=(const VersionID& other) const noexcept
  42. {
  43. return version != other.version;
  44. }
  45. constexpr bool operator<(const VersionID& other) const noexcept
  46. {
  47. return version < other.version;
  48. }
  49. constexpr bool operator<=(const VersionID& other) const noexcept
  50. {
  51. return version <= other.version;
  52. }
  53. constexpr bool operator>(const VersionID& other) const noexcept
  54. {
  55. return version > other.version;
  56. }
  57. constexpr bool operator>=(const VersionID& other) const noexcept
  58. {
  59. return version >= other.version;
  60. }
  61. };
  62. inline std::ostream& operator<<(std::ostream& os, VersionID id)
  63. {
  64. os << "VersionID(" << id.version << ", " << id.index << ")";
  65. return os;
  66. }
  67. } // namespace realm
  68. #endif // REALM_VERSION_ID_HPP