query_state.hpp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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_STATE_HPP
  19. #define REALM_QUERY_STATE_HPP
  20. #include <cstdlib> // size_t
  21. #include <cstdint> // unint8_t etc
  22. namespace realm {
  23. enum Action { act_ReturnFirst, act_Sum, act_Max, act_Min, act_Count, act_FindAll, act_CallbackIdx, act_Average };
  24. // Array::VTable only uses the first 4 conditions (enums) in an array of function pointers
  25. enum { cond_Equal, cond_NotEqual, cond_Greater, cond_Less, cond_VTABLE_FINDER_COUNT, cond_None, cond_LeftNotNull };
  26. class ClusterKeyArray;
  27. class Mixed;
  28. class QueryStateBase {
  29. public:
  30. int64_t m_minmax_key = -1; // used only for min/max, to save index of current min/max value
  31. uint64_t m_key_offset = 0;
  32. const ClusterKeyArray* m_key_values = nullptr;
  33. QueryStateBase(size_t limit = -1)
  34. : m_limit(limit)
  35. {
  36. }
  37. virtual ~QueryStateBase() {}
  38. // Called when we have a match.
  39. // The return value indicates if the query should continue.
  40. virtual bool match(size_t, Mixed) noexcept = 0;
  41. virtual bool match_pattern(size_t, uint64_t)
  42. {
  43. return false;
  44. }
  45. inline size_t match_count() const noexcept
  46. {
  47. return m_match_count;
  48. }
  49. inline size_t limit() const noexcept
  50. {
  51. return m_limit;
  52. }
  53. protected:
  54. size_t m_match_count = 0;
  55. size_t m_limit;
  56. private:
  57. virtual void dyncast();
  58. };
  59. template <class>
  60. class QueryStateMin;
  61. template <class>
  62. class QueryStateMax;
  63. class QueryStateCount : public QueryStateBase {
  64. public:
  65. QueryStateCount(size_t limit = -1)
  66. : QueryStateBase(limit)
  67. {
  68. }
  69. bool match(size_t, Mixed) noexcept final;
  70. size_t get_count() const noexcept
  71. {
  72. return m_match_count;
  73. }
  74. };
  75. } // namespace realm
  76. #endif /* REALM_QUERY_STATE_HPP */