query_value.hpp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*************************************************************************
  2. *
  3. * Copyright 2021 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_QUERY_VALUE_HPP
  19. #define REALM_QUERY_VALUE_HPP
  20. #include <string>
  21. #include <realm/data_type.hpp>
  22. #include <realm/mixed.hpp>
  23. namespace realm {
  24. class TypeOfValue {
  25. public:
  26. enum Attribute {
  27. Null = 1,
  28. Int = 2,
  29. Double = 4,
  30. Float = 8,
  31. Bool = 16,
  32. Timestamp = 32,
  33. String = 64,
  34. Binary = 128,
  35. UUID = 256,
  36. ObjectId = 512,
  37. Decimal128 = 1024,
  38. ObjectLink = 2048,
  39. Numeric = Int + Double + Float + Decimal128,
  40. };
  41. explicit TypeOfValue(int64_t attributes);
  42. explicit TypeOfValue(const std::string& attribute_tags);
  43. explicit TypeOfValue(const class Mixed& value);
  44. explicit TypeOfValue(const ColKey& col_key);
  45. explicit TypeOfValue(const DataType& data_type);
  46. bool matches(const class Mixed& value) const;
  47. bool matches(const TypeOfValue& other) const
  48. {
  49. return (m_attributes & other.m_attributes) != 0;
  50. }
  51. int64_t get_attributes() const
  52. {
  53. return m_attributes;
  54. }
  55. std::string to_string() const;
  56. private:
  57. int64_t m_attributes;
  58. };
  59. class QueryValue : public Mixed {
  60. public:
  61. using Mixed::Mixed;
  62. QueryValue(const Mixed& other)
  63. : Mixed(other)
  64. {
  65. }
  66. QueryValue(TypeOfValue v) noexcept
  67. {
  68. m_type = int(type_TypeOfValue) + 1;
  69. int_val = v.get_attributes();
  70. }
  71. TypeOfValue get_type_of_value() const noexcept
  72. {
  73. REALM_ASSERT(get_type() == type_TypeOfValue);
  74. return TypeOfValue(int_val);
  75. }
  76. };
  77. } // namespace realm
  78. #endif // REALM_QUERY_VALUE_HPP