RLMObjectId.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 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. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. /**
  21. A 12-byte (probably) unique object identifier.
  22. ObjectIds are similar to a GUID or a UUID, and can be used to uniquely identify
  23. objects without a centralized ID generator. An ObjectID consists of:
  24. 1. A 4 byte timestamp measuring the creation time of the ObjectId in seconds
  25. since the Unix epoch.
  26. 2. A 5 byte random value
  27. 3. A 3 byte counter, initialized to a random value.
  28. ObjectIds are intended to be fast to generate. Sorting by an ObjectId field
  29. will typically result in the objects being sorted in creation order.
  30. */
  31. RLM_SWIFT_SENDABLE // immutable
  32. @interface RLMObjectId : NSObject <NSCopying>
  33. /// Creates a new randomly-initialized ObjectId.
  34. + (nonnull instancetype)objectId NS_SWIFT_NAME(generate());
  35. /// Creates a new zero-initialized ObjectId.
  36. - (instancetype)init;
  37. /// Creates a new ObjectId from the given 24-byte hexadecimal string.
  38. ///
  39. /// Returns `nil` and sets `error` if the string is not 24 characters long or
  40. /// contains any characters other than 0-9a-fA-F.
  41. ///
  42. /// @param string The string to parse.
  43. - (nullable instancetype)initWithString:(NSString *)string
  44. error:(NSError **)error;
  45. /// Creates a new ObjectId using the given date, machine identifier, process identifier.
  46. ///
  47. /// @param timestamp A timestamp as NSDate.
  48. /// @param machineIdentifier The machine identifier.
  49. /// @param processIdentifier The process identifier.
  50. - (instancetype)initWithTimestamp:(NSDate *)timestamp
  51. machineIdentifier:(int)machineIdentifier
  52. processIdentifier:(int)processIdentifier;
  53. /// Comparision operator to check if the right hand side is greater than the current value.
  54. - (BOOL)isGreaterThan:(nullable RLMObjectId *)objectId;
  55. /// Comparision operator to check if the right hand side is greater than or equal to the current value.
  56. - (BOOL)isGreaterThanOrEqualTo:(nullable RLMObjectId *)objectId;
  57. /// Comparision operator to check if the right hand side is less than the current value.
  58. - (BOOL)isLessThan:(nullable RLMObjectId *)objectId;
  59. /// Comparision operator to check if the right hand side is less than or equal to the current value.
  60. - (BOOL)isLessThanOrEqualTo:(nullable RLMObjectId *)objectId;
  61. /// Get the ObjectId as a 24-character hexadecimal string.
  62. @property (nonatomic, readonly) NSString *stringValue;
  63. /// Get the timestamp for the RLMObjectId
  64. @property (nonatomic, readonly) NSDate *timestamp;
  65. @end
  66. RLM_HEADER_AUDIT_END(nullability, sendability)