RLMBSON.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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/RLMObjectId.h>
  19. #import <Realm/RLMDecimal128.h>
  20. #pragma mark RLMBSONType
  21. /**
  22. Allowed BSON types.
  23. */
  24. typedef NS_ENUM(NSUInteger, RLMBSONType) {
  25. /// BSON Null type
  26. RLMBSONTypeNull,
  27. /// BSON Int32 type
  28. RLMBSONTypeInt32,
  29. /// BSON Int64 type
  30. RLMBSONTypeInt64,
  31. /// BSON Bool type
  32. RLMBSONTypeBool,
  33. /// BSON Double type
  34. RLMBSONTypeDouble,
  35. /// BSON String type
  36. RLMBSONTypeString,
  37. /// BSON Binary type
  38. RLMBSONTypeBinary,
  39. /// BSON Timestamp type
  40. RLMBSONTypeTimestamp,
  41. /// BSON Datetime type
  42. RLMBSONTypeDatetime,
  43. /// BSON ObjectId type
  44. RLMBSONTypeObjectId,
  45. /// BSON Decimal128 type
  46. RLMBSONTypeDecimal128,
  47. /// BSON RegularExpression type
  48. RLMBSONTypeRegularExpression,
  49. /// BSON MaxKey type
  50. RLMBSONTypeMaxKey,
  51. /// BSON MinKey type
  52. RLMBSONTypeMinKey,
  53. /// BSON Document type
  54. RLMBSONTypeDocument,
  55. /// BSON Array type
  56. RLMBSONTypeArray,
  57. /// BSON UUID type
  58. RLMBSONTypeUUID
  59. };
  60. #pragma mark RLMBSON
  61. /**
  62. Protocol representing a BSON value. BSON is a computer data interchange format.
  63. The name "BSON" is based on the term JSON and stands for "Binary JSON".
  64. The following types conform to RLMBSON:
  65. `NSNull`
  66. `NSNumber`
  67. `NSString`
  68. `NSData`
  69. `NSDateInterval`
  70. `NSDate`
  71. `RLMObjectId`
  72. `RLMDecimal128`
  73. `NSRegularExpression`
  74. `RLMMaxKey`
  75. `RLMMinKey`
  76. `NSDictionary`
  77. `NSArray`
  78. `NSUUID`
  79. @see RLMBSONType
  80. @see bsonspec.org
  81. */
  82. @protocol RLMBSON
  83. /**
  84. The BSON type for the conforming interface.
  85. */
  86. @property (readonly) RLMBSONType bsonType NS_REFINED_FOR_SWIFT;
  87. /**
  88. Whether or not this BSON is equal to another.
  89. @param other The BSON to compare to
  90. */
  91. - (BOOL)isEqual:(_Nullable id)other;
  92. @end
  93. /// :nodoc:
  94. @interface NSNull (RLMBSON)<RLMBSON>
  95. @end
  96. /// :nodoc:
  97. @interface NSNumber (RLMBSON)<RLMBSON>
  98. @end
  99. /// :nodoc:
  100. @interface NSString (RLMBSON)<RLMBSON>
  101. @end
  102. /// :nodoc:
  103. @interface NSData (RLMBSON)<RLMBSON>
  104. @end
  105. /// :nodoc:
  106. @interface NSDateInterval (RLMBSON)<RLMBSON>
  107. @end
  108. /// :nodoc:
  109. @interface NSDate (RLMBSON)<RLMBSON>
  110. @end
  111. /// :nodoc:
  112. @interface RLMObjectId (RLMBSON)<RLMBSON>
  113. @end
  114. /// :nodoc:
  115. @interface RLMDecimal128 (RLMBSON)<RLMBSON>
  116. @end
  117. /// :nodoc:
  118. @interface NSRegularExpression (RLMBSON)<RLMBSON>
  119. @end
  120. /// MaxKey will always be the greatest value when comparing to other BSON types
  121. @interface RLMMaxKey : NSObject
  122. @end
  123. /// MinKey will always be the smallest value when comparing to other BSON types
  124. @interface RLMMinKey : NSObject
  125. @end
  126. /// :nodoc:
  127. @interface RLMMaxKey (RLMBSON)<RLMBSON>
  128. @end
  129. /// :nodoc:
  130. @interface RLMMinKey (RLMBSON)<RLMBSON>
  131. @end
  132. /// :nodoc:
  133. @interface NSDictionary (RLMBSON)<RLMBSON>
  134. @end
  135. /// :nodoc:
  136. @interface NSMutableArray (RLMBSON)<RLMBSON>
  137. @end
  138. /// :nodoc:
  139. @interface NSArray (RLMBSON)<RLMBSON>
  140. @end
  141. /// :nodoc:
  142. @interface NSUUID (RLMBSON)<RLMBSON>
  143. @end