array_timestamp.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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_ARRAY_TIMESTAMP_HPP
  19. #define REALM_ARRAY_TIMESTAMP_HPP
  20. #include <realm/array_integer.hpp>
  21. #include <realm/timestamp.hpp>
  22. #include <realm/query_conditions.hpp>
  23. namespace realm {
  24. class ArrayTimestamp : public ArrayPayload, private Array {
  25. public:
  26. using value_type = Timestamp;
  27. explicit ArrayTimestamp(Allocator&);
  28. using Array::update_parent;
  29. using Array::get_parent;
  30. using Array::get_ndx_in_parent;
  31. using Array::get_ref;
  32. static Timestamp default_value(bool nullable)
  33. {
  34. return nullable ? Timestamp{} : Timestamp{0, 0};
  35. }
  36. void create();
  37. void init_from_mem(MemRef mem) noexcept;
  38. void init_from_ref(ref_type ref) noexcept override
  39. {
  40. init_from_mem(MemRef(m_alloc.translate(ref), ref, m_alloc));
  41. }
  42. void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
  43. {
  44. Array::set_parent(parent, ndx_in_parent);
  45. }
  46. void init_from_parent()
  47. {
  48. init_from_ref(Array::get_ref_from_parent());
  49. }
  50. size_t size() const
  51. {
  52. return m_seconds.size();
  53. }
  54. void add(Timestamp value)
  55. {
  56. insert(m_seconds.size(), value);
  57. }
  58. void set(size_t ndx, Timestamp value);
  59. void set_null(size_t ndx)
  60. {
  61. // Value in m_nanoseconds is irrelevant if m_seconds is null
  62. m_seconds.set_null(ndx); // Throws
  63. }
  64. void insert(size_t ndx, Timestamp value);
  65. Timestamp get(size_t ndx) const
  66. {
  67. util::Optional<int64_t> seconds = m_seconds.get(ndx);
  68. return seconds ? Timestamp(*seconds, int32_t(m_nanoseconds.get(ndx))) : Timestamp{};
  69. }
  70. Mixed get_any(size_t ndx) const final
  71. {
  72. return Mixed(get(ndx));
  73. }
  74. bool is_null(size_t ndx) const
  75. {
  76. return m_seconds.is_null(ndx);
  77. }
  78. void erase(size_t ndx)
  79. {
  80. m_seconds.erase(ndx);
  81. m_nanoseconds.erase(ndx);
  82. }
  83. void move(ArrayTimestamp& dst, size_t ndx)
  84. {
  85. m_seconds.move(dst.m_seconds, ndx);
  86. m_nanoseconds.move(dst.m_nanoseconds, ndx);
  87. }
  88. void clear()
  89. {
  90. m_seconds.clear();
  91. m_nanoseconds.clear();
  92. }
  93. template <class Condition>
  94. size_t find_first(Timestamp value, size_t begin, size_t end) const noexcept;
  95. size_t find_first(Timestamp value, size_t begin, size_t end) const noexcept;
  96. void verify() const;
  97. private:
  98. ArrayIntNull m_seconds;
  99. ArrayInteger m_nanoseconds;
  100. };
  101. template <>
  102. size_t ArrayTimestamp::find_first<Equal>(Timestamp value, size_t begin, size_t end) const noexcept;
  103. template <>
  104. size_t ArrayTimestamp::find_first<NotEqual>(Timestamp value, size_t begin, size_t end) const noexcept;
  105. template <>
  106. size_t ArrayTimestamp::find_first<Less>(Timestamp value, size_t begin, size_t end) const noexcept;
  107. template <>
  108. size_t ArrayTimestamp::find_first<LessEqual>(Timestamp value, size_t begin, size_t end) const noexcept;
  109. template <>
  110. size_t ArrayTimestamp::find_first<GreaterEqual>(Timestamp value, size_t begin, size_t end) const noexcept;
  111. template <>
  112. size_t ArrayTimestamp::find_first<Greater>(Timestamp value, size_t begin, size_t end) const noexcept;
  113. inline size_t ArrayTimestamp::find_first(Timestamp value, size_t begin, size_t end) const noexcept
  114. {
  115. return find_first<Equal>(value, begin, end);
  116. }
  117. }
  118. #endif /* SRC_REALM_ARRAY_BINARY_HPP_ */