RLMEvent.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 <Realm/RLMConstants.h>
  19. #ifdef __cplusplus
  20. #include <memory>
  21. namespace realm {
  22. struct AuditConfig;
  23. }
  24. #endif
  25. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  26. @class RLMRealm, RLMUser, RLMRealmConfiguration;
  27. typedef RLM_CLOSED_ENUM(NSUInteger, RLMSyncLogLevel);
  28. struct RLMEventContext;
  29. typedef void (^RLMEventCompletion)(NSError *_Nullable);
  30. FOUNDATION_EXTERN struct RLMEventContext *_Nullable RLMEventGetContext(RLMRealm *realm);
  31. FOUNDATION_EXTERN uint64_t RLMEventBeginScope(struct RLMEventContext *context, NSString *activity);
  32. FOUNDATION_EXTERN void RLMEventCommitScope(struct RLMEventContext *context, uint64_t scope_id,
  33. RLMEventCompletion _Nullable completion);
  34. FOUNDATION_EXTERN void RLMEventCancelScope(struct RLMEventContext *context, uint64_t scope_id);
  35. FOUNDATION_EXTERN bool RLMEventIsActive(struct RLMEventContext *context, uint64_t scope_id);
  36. FOUNDATION_EXTERN void RLMEventRecordEvent(struct RLMEventContext *context, NSString *activity,
  37. NSString *_Nullable event, NSString *_Nullable data,
  38. RLMEventCompletion _Nullable completion);
  39. FOUNDATION_EXTERN void RLMEventUpdateMetadata(struct RLMEventContext *context,
  40. NSDictionary<NSString *, NSString *> *newMetadata);
  41. @interface RLMEventConfiguration : NSObject
  42. @property (nonatomic) NSString *partitionPrefix;
  43. @property (nonatomic, nullable) RLMUser *syncUser;
  44. @property (nonatomic, nullable) NSDictionary<NSString *, NSString *> *metadata;
  45. @property (nonatomic, nullable) void (^logger)(RLMSyncLogLevel, NSString *);
  46. @property (nonatomic, nullable) void (^errorHandler)(NSError *);
  47. #ifdef __cplusplus
  48. - (std::shared_ptr<realm::AuditConfig>)auditConfigWithRealmConfiguration:(RLMRealmConfiguration *)realmConfig;
  49. #endif
  50. @end
  51. RLM_HEADER_AUDIT_END(nullability, sendability)