owned_data.hpp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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_OWNED_DATA_HPP
  19. #define REALM_OWNED_DATA_HPP
  20. #include <realm/util/assert.hpp>
  21. #include <cstring>
  22. #include <memory>
  23. namespace realm {
  24. /// A chunk of owned data.
  25. class OwnedData {
  26. public:
  27. /// Construct a null reference.
  28. OwnedData() noexcept
  29. {
  30. }
  31. /// If \a data_to_copy is 'null', \a data_size must be zero.
  32. OwnedData(const char* data_to_copy, size_t data_size)
  33. : m_size(data_size)
  34. {
  35. REALM_ASSERT_DEBUG(data_to_copy || data_size == 0);
  36. if (data_to_copy) {
  37. m_data = std::unique_ptr<char[]>(new char[data_size]);
  38. memcpy(m_data.get(), data_to_copy, data_size);
  39. }
  40. }
  41. /// If \a unique_data is 'null', \a data_size must be zero.
  42. OwnedData(std::unique_ptr<char[]> unique_data, size_t data_size) noexcept
  43. : m_data(std::move(unique_data))
  44. , m_size(data_size)
  45. {
  46. REALM_ASSERT_DEBUG(m_data || m_size == 0);
  47. }
  48. OwnedData(const OwnedData& other)
  49. : OwnedData(other.m_data.get(), other.m_size)
  50. {
  51. }
  52. OwnedData& operator=(const OwnedData& other);
  53. OwnedData(OwnedData&&) = default;
  54. OwnedData& operator=(OwnedData&&) = default;
  55. const char* data() const
  56. {
  57. return m_data.get();
  58. }
  59. size_t size() const
  60. {
  61. return m_size;
  62. }
  63. private:
  64. std::unique_ptr<char[]> m_data;
  65. size_t m_size = 0;
  66. };
  67. inline OwnedData& OwnedData::operator=(const OwnedData& other)
  68. {
  69. if (this != &other) {
  70. if (other.m_data) {
  71. m_data = std::unique_ptr<char[]>(new char[other.m_size]);
  72. memcpy(m_data.get(), other.m_data.get(), other.m_size);
  73. }
  74. else {
  75. m_data = nullptr;
  76. }
  77. m_size = other.m_size;
  78. }
  79. return *this;
  80. }
  81. } // namespace realm
  82. #endif // REALM_OWNED_DATA_HPP