array_bool.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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_BOOL_HPP
  19. #define REALM_ARRAY_BOOL_HPP
  20. #include <realm/array.hpp>
  21. namespace realm {
  22. /// ArrayBool supports both nullable and non-nullable arrays with respect to
  23. /// adding and inserting values. In this way we don't need to distinguish
  24. /// between the two type when adding a row and when adding a column.
  25. /// add, insert and getting of non-nullable values are taken care of by the
  26. /// respective functions in Array.
  27. class ArrayBool : public Array, public ArrayPayload {
  28. public:
  29. using value_type = bool;
  30. using Array::Array;
  31. using Array::init_from_ref;
  32. using Array::init_from_parent;
  33. using Array::update_parent;
  34. using Array::get_ref;
  35. using Array::size;
  36. using Array::erase;
  37. using Array::truncate_and_destroy_children;
  38. static bool default_value(bool)
  39. {
  40. return false;
  41. }
  42. void create()
  43. {
  44. Array::create(type_Normal);
  45. }
  46. void init_from_ref(ref_type ref) noexcept override
  47. {
  48. Array::init_from_ref(ref);
  49. }
  50. void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
  51. {
  52. Array::set_parent(parent, ndx_in_parent);
  53. }
  54. bool is_null(size_t) const
  55. {
  56. return false;
  57. }
  58. void set(size_t ndx, bool value)
  59. {
  60. Array::set(ndx, value ? 1 : 0);
  61. }
  62. bool get(size_t ndx) const
  63. {
  64. return Array::get(ndx) != 0;
  65. }
  66. Mixed get_any(size_t ndx) const override
  67. {
  68. return Mixed(get(ndx));
  69. }
  70. void add(bool value)
  71. {
  72. Array::add(value);
  73. }
  74. void insert(size_t ndx, bool value)
  75. {
  76. Array::insert(ndx, value);
  77. }
  78. size_t find_first(util::Optional<bool> value, size_t begin = 0, size_t end = npos) const noexcept
  79. {
  80. if (value) {
  81. return Array::find_first(*value, begin, end);
  82. }
  83. else {
  84. return Array::find_first(null_value, begin, end);
  85. }
  86. }
  87. protected:
  88. // We can still be in two bits as small values are considered unsigned
  89. static constexpr int null_value = 3;
  90. };
  91. class ArrayBoolNull : public ArrayBool {
  92. public:
  93. using value_type = util::Optional<bool>;
  94. using ArrayBool::ArrayBool;
  95. static util::Optional<bool> default_value(bool nullable)
  96. {
  97. return nullable ? util::none : util::some<bool>(false);
  98. }
  99. void set(size_t ndx, util::Optional<bool> value)
  100. {
  101. if (value) {
  102. Array::set(ndx, *value);
  103. }
  104. else {
  105. Array::set(ndx, null_value);
  106. }
  107. }
  108. void add(util::Optional<bool> value)
  109. {
  110. if (value) {
  111. Array::add(*value);
  112. }
  113. else {
  114. Array::add(null_value);
  115. }
  116. }
  117. void insert(size_t ndx, util::Optional<bool> value)
  118. {
  119. if (value) {
  120. Array::insert(ndx, *value);
  121. }
  122. else {
  123. Array::insert(ndx, null_value);
  124. }
  125. }
  126. Mixed get_any(size_t ndx) const override
  127. {
  128. return Mixed(get(ndx));
  129. }
  130. void set_null(size_t ndx)
  131. {
  132. Array::set(ndx, null_value);
  133. }
  134. bool is_null(size_t ndx) const
  135. {
  136. return Array::get(ndx) == null_value;
  137. }
  138. util::Optional<bool> get(size_t ndx) const
  139. {
  140. int64_t val = Array::get(ndx);
  141. return (val == null_value) ? util::none : util::make_optional(val != 0);
  142. }
  143. };
  144. }
  145. #endif /* REALM_ARRAY_BOOL_HPP */