RLMObjectId.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 <Foundation/Foundation.h>
  19. NS_ASSUME_NONNULL_BEGIN
  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. @interface RLMObjectId : NSObject
  32. /// Creates a new randomly-initialized ObjectId.
  33. + (nonnull instancetype)objectId NS_SWIFT_NAME(generate());
  34. /// Creates a new zero-initialized ObjectId.
  35. - (instancetype)init;
  36. /// Creates a new ObjectId from the given 24-byte hexadecimal string.
  37. ///
  38. /// Returns `nil` and sets `error` if the string is not 24 characters long or
  39. /// contains any characters other than 0-9a-fA-F.
  40. ///
  41. /// @param string The string to parse.
  42. - (nullable instancetype)initWithString:(NSString *)string
  43. error:(NSError **)error;
  44. /// Creates a new ObjectId using the given date, machine identifier, process identifier.
  45. ///
  46. /// @param timestamp A timestamp as NSDate.
  47. /// @param machineIdentifier The machine identifier.
  48. /// @param processIdentifier The process identifier.
  49. - (instancetype)initWithTimestamp:(NSDate *)timestamp
  50. machineIdentifier:(int)machineIdentifier
  51. processIdentifier:(int)processIdentifier;
  52. /// Comparision operator to check if the right hand side is greater than the current value.
  53. - (BOOL)isGreaterThan:(nullable RLMObjectId *)objectId;
  54. /// Comparision operator to check if the right hand side is greater than or equal to the current value.
  55. - (BOOL)isGreaterThanOrEqualTo:(nullable RLMObjectId *)objectId;
  56. /// Comparision operator to check if the right hand side is less than the current value.
  57. - (BOOL)isLessThan:(nullable RLMObjectId *)objectId;
  58. /// Comparision operator to check if the right hand side is less than or equal to the current value.
  59. - (BOOL)isLessThanOrEqualTo:(nullable RLMObjectId *)objectId;
  60. /// Get the ObjectId as a 24-character hexadecimal string.
  61. @property (nonatomic, readonly) NSString *stringValue;
  62. /// Get the timestamp for the RLMObjectId
  63. @property (nonatomic, readonly) NSDate *timestamp;
  64. @end
  65. NS_ASSUME_NONNULL_END