array_ref.hpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_ARRAY_REF_HPP_
  19. #define REALM_ARRAY_REF_HPP_
  20. #include <realm/array.hpp>
  21. namespace realm {
  22. class ArrayRef : public Array {
  23. public:
  24. using value_type = ref_type;
  25. explicit ArrayRef(Allocator& allocator) noexcept
  26. : Array(allocator)
  27. {
  28. }
  29. void create(size_t sz = 0)
  30. {
  31. Array::create(type_HasRefs, false, sz, 0);
  32. }
  33. void add(ref_type value)
  34. {
  35. Array::add(from_ref(value));
  36. }
  37. void set(size_t ndx, ref_type value)
  38. {
  39. Array::set(ndx, from_ref(value));
  40. }
  41. void insert(size_t ndx, ref_type value)
  42. {
  43. Array::insert(ndx, from_ref(value));
  44. }
  45. ref_type get(size_t ndx) const noexcept
  46. {
  47. return to_ref(Array::get(ndx));
  48. }
  49. void verify() const
  50. {
  51. #ifdef REALM_DEBUG
  52. Array::verify();
  53. REALM_ASSERT(has_refs());
  54. #endif
  55. }
  56. };
  57. } // namespace realm
  58. #endif /* REALM_ARRAY_REF_HPP_ */