RLMSectionedResults_Private.hpp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2022 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. #import "RLMClassInfo.hpp"
  19. #import "RLMSectionedResults.h"
  20. #import <realm/object-store/results.hpp>
  21. #import <realm/object-store/sectioned_results.hpp>
  22. @protocol RLMValue;
  23. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  24. @interface RLMSectionedResultsChange ()
  25. - (instancetype)initWithChanges:(realm::SectionedResultsChangeSet)indices;
  26. @end
  27. @interface RLMSectionedResultsEnumerator : NSObject
  28. - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state
  29. count:(NSUInteger)len;
  30. - (instancetype)initWithSectionedResults:(RLMSectionedResults *)sectionedResults;
  31. - (instancetype)initWithResultsSection:(RLMSection *)resultsSection;
  32. @end
  33. @interface RLMSectionedResults()
  34. - (instancetype)initWithResults:(RLMResults *)results
  35. keyBlock:(RLMSectionedResultsKeyBlock)keyBlock;
  36. - (RLMSectionedResultsEnumerator *)fastEnumerator;
  37. - (RLMClassInfo *)objectInfo;
  38. - (RLMSectionedResults *)snapshot;
  39. NSUInteger RLMFastEnumerate(NSFastEnumerationState *state,
  40. NSUInteger len,
  41. RLMSectionedResults *collection);
  42. @end
  43. @interface RLMSection ()
  44. - (instancetype)initWithResultsSection:(realm::ResultsSection&&)resultsSection
  45. parent:(RLMSectionedResults *)parent;
  46. - (RLMSectionedResultsEnumerator *)fastEnumerator;
  47. - (RLMClassInfo *)objectInfo;
  48. NSUInteger RLMFastEnumerate(NSFastEnumerationState *state,
  49. NSUInteger len,
  50. RLMSection *collection);
  51. @end
  52. RLM_HEADER_AUDIT_END(nullability, sendability)