RLMResults_Private.hpp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2017 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 "RLMResults_Private.h"
  19. #import "RLMCollection_Private.hpp"
  20. #import <realm/object-store/results.hpp>
  21. class RLMClassInfo;
  22. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  23. @interface RLMResults () <RLMCollectionPrivate> {
  24. @public
  25. realm::Results _results;
  26. }
  27. /**
  28. Initialize a 'raw' `RLMResults` using only an object store level Results.
  29. This is only meant for applications where a results collection is being backed
  30. by an object store object class that has no binding-level equivalent. The
  31. consumer is responsible for bridging between the underlying objects and whatever
  32. binding-level class is being vended out.
  33. */
  34. - (instancetype)initWithResults:(realm::Results)results;
  35. - (instancetype)initWithObjectInfo:(RLMClassInfo&)info results:(realm::Results&&)results;
  36. + (instancetype)resultsWithObjectInfo:(RLMClassInfo&)info results:(realm::Results&&)results;
  37. - (instancetype)subresultsWithResults:(realm::Results)results;
  38. - (RLMClassInfo *)objectInfo;
  39. - (void)deleteObjectsFromRealm;
  40. @end
  41. // Utility functions
  42. [[gnu::noinline]]
  43. [[noreturn]]
  44. void RLMThrowCollectionException(NSString *collectionName);
  45. template<typename Function>
  46. static auto translateCollectionError(Function&& f, NSString *collectionName) {
  47. try {
  48. return f();
  49. }
  50. catch (...) {
  51. RLMThrowCollectionException(collectionName);
  52. }
  53. }
  54. RLM_HEADER_AUDIT_END(nullability, sendability)