RLMUtil.hpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2014 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. #import <Realm/RLMSwiftValueStorage.h>
  20. #import <Realm/RLMValue.h>
  21. #import <objc/runtime.h>
  22. #import <realm/array.hpp>
  23. #import <realm/binary_data.hpp>
  24. #import <realm/object-store/object.hpp>
  25. #import <realm/string_data.hpp>
  26. #import <realm/timestamp.hpp>
  27. #import <realm/util/file.hpp>
  28. namespace realm {
  29. class Decimal128;
  30. class Mixed;
  31. class RealmFileException;
  32. }
  33. class RLMClassInfo;
  34. @class RLMObjectSchema;
  35. @class RLMProperty;
  36. __attribute__((format(NSString, 1, 2)))
  37. NSException *RLMException(NSString *fmt, ...);
  38. NSException *RLMException(std::exception const& exception);
  39. NSError *RLMMakeError(RLMError code, std::exception const& exception);
  40. NSError *RLMMakeError(RLMError code, const realm::util::File::AccessError&);
  41. NSError *RLMMakeError(RLMError code, const realm::RealmFileException&);
  42. NSError *RLMMakeError(std::system_error const& exception);
  43. void RLMSetErrorOrThrow(NSError *error, NSError **outError);
  44. // returns if the object can be inserted as the given type
  45. BOOL RLMIsObjectValidForProperty(id obj, RLMProperty *prop);
  46. // throw an exception if the object is not a valid value for the property
  47. void RLMValidateValueForProperty(id obj, RLMObjectSchema *objectSchema,
  48. RLMProperty *prop, bool validateObjects=false);
  49. id RLMValidateValue(id value, RLMPropertyType type, bool optional, bool collection,
  50. NSString *objectClassName);
  51. void RLMThrowTypeError(id obj, RLMObjectSchema *objectSchema, RLMProperty *prop);
  52. // gets default values for the given schema (+defaultPropertyValues)
  53. // merges with native property defaults if Swift class
  54. NSDictionary *RLMDefaultValuesForObjectSchema(RLMObjectSchema *objectSchema);
  55. BOOL RLMIsDebuggerAttached();
  56. BOOL RLMIsRunningInPlayground();
  57. // C version of isKindOfClass
  58. static inline BOOL RLMIsKindOfClass(Class class1, Class class2) {
  59. while (class1) {
  60. if (class1 == class2) return YES;
  61. class1 = class_getSuperclass(class1);
  62. }
  63. return NO;
  64. }
  65. template<typename T>
  66. static inline T *RLMDynamicCast(__unsafe_unretained id obj) {
  67. if ([obj isKindOfClass:[T class]]) {
  68. return obj;
  69. }
  70. return nil;
  71. }
  72. static inline id RLMCoerceToNil(__unsafe_unretained id obj) {
  73. if (static_cast<id>(obj) == NSNull.null) {
  74. return nil;
  75. }
  76. else if (__unsafe_unretained auto optional = RLMDynamicCast<RLMSwiftValueStorage>(obj)) {
  77. return RLMCoerceToNil(RLMGetSwiftValueStorage(optional));
  78. }
  79. return obj;
  80. }
  81. template<typename T>
  82. static inline T RLMCoerceToNil(__unsafe_unretained T obj) {
  83. return RLMCoerceToNil(static_cast<id>(obj));
  84. }
  85. id<NSFastEnumeration> RLMAsFastEnumeration(id obj);
  86. id RLMBridgeSwiftValue(id obj);
  87. bool RLMIsSwiftObjectClass(Class cls);
  88. // String conversion utilities
  89. static inline NSString * RLMStringDataToNSString(realm::StringData stringData) {
  90. static_assert(sizeof(NSUInteger) >= sizeof(size_t),
  91. "Need runtime overflow check for size_t to NSUInteger conversion");
  92. if (stringData.is_null()) {
  93. return nil;
  94. }
  95. else {
  96. return [[NSString alloc] initWithBytes:stringData.data()
  97. length:stringData.size()
  98. encoding:NSUTF8StringEncoding];
  99. }
  100. }
  101. static inline realm::StringData RLMStringDataWithNSString(__unsafe_unretained NSString *const string) {
  102. static_assert(sizeof(size_t) >= sizeof(NSUInteger),
  103. "Need runtime overflow check for NSUInteger to size_t conversion");
  104. return realm::StringData(string.UTF8String,
  105. [string lengthOfBytesUsingEncoding:NSUTF8StringEncoding]);
  106. }
  107. // Binary conversion utilities
  108. static inline NSData *RLMBinaryDataToNSData(realm::BinaryData binaryData) {
  109. return binaryData ? [NSData dataWithBytes:binaryData.data() length:binaryData.size()] : nil;
  110. }
  111. static inline realm::BinaryData RLMBinaryDataForNSData(__unsafe_unretained NSData *const data) {
  112. // this is necessary to ensure that the empty NSData isn't treated by core as the null realm::BinaryData
  113. // because data.bytes == 0 when data.length == 0
  114. // the casting bit ensures that we create a data with a non-null pointer
  115. auto bytes = static_cast<const char *>(data.bytes) ?: static_cast<char *>((__bridge void *)data);
  116. return realm::BinaryData(bytes, data.length);
  117. }
  118. // Date conversion utilities
  119. // These use the reference date and shift the seconds rather than just getting
  120. // the time interval since the epoch directly to avoid losing sub-second precision
  121. static inline NSDate *RLMTimestampToNSDate(realm::Timestamp ts) NS_RETURNS_RETAINED {
  122. if (ts.is_null())
  123. return nil;
  124. auto timeInterval = ts.get_seconds() - NSTimeIntervalSince1970 + ts.get_nanoseconds() / 1'000'000'000.0;
  125. return [[NSDate alloc] initWithTimeIntervalSinceReferenceDate:timeInterval];
  126. }
  127. static inline realm::Timestamp RLMTimestampForNSDate(__unsafe_unretained NSDate *const date) {
  128. if (!date)
  129. return {};
  130. auto timeInterval = date.timeIntervalSinceReferenceDate;
  131. if (isnan(timeInterval))
  132. return {0, 0}; // Arbitrary choice
  133. // Clamp dates that we can't represent as a Timestamp to the maximum value
  134. if (timeInterval >= std::numeric_limits<int64_t>::max() - NSTimeIntervalSince1970)
  135. return {std::numeric_limits<int64_t>::max(), 1'000'000'000 - 1};
  136. if (timeInterval - NSTimeIntervalSince1970 < std::numeric_limits<int64_t>::min())
  137. return {std::numeric_limits<int64_t>::min(), -1'000'000'000 + 1};
  138. auto seconds = static_cast<int64_t>(timeInterval);
  139. auto nanoseconds = static_cast<int32_t>((timeInterval - seconds) * 1'000'000'000.0);
  140. seconds += static_cast<int64_t>(NSTimeIntervalSince1970);
  141. // Seconds and nanoseconds have to have the same sign
  142. if (nanoseconds < 0 && seconds > 0) {
  143. nanoseconds += 1'000'000'000;
  144. --seconds;
  145. }
  146. return {seconds, nanoseconds};
  147. }
  148. static inline NSUInteger RLMConvertNotFound(size_t index) {
  149. return index == realm::not_found ? NSNotFound : index;
  150. }
  151. static inline void RLMNSStringToStdString(std::string &out, NSString *in) {
  152. if (!in)
  153. return;
  154. out.resize([in maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding]);
  155. if (out.empty()) {
  156. return;
  157. }
  158. NSUInteger size = out.size();
  159. [in getBytes:&out[0]
  160. maxLength:size
  161. usedLength:&size
  162. encoding:NSUTF8StringEncoding
  163. options:0 range:{0, in.length} remainingRange:nullptr];
  164. out.resize(size);
  165. }
  166. realm::Mixed RLMObjcToMixed(__unsafe_unretained id value,
  167. __unsafe_unretained RLMRealm *realm=nil,
  168. realm::CreatePolicy createPolicy={});
  169. id RLMMixedToObjc(realm::Mixed const& value,
  170. __unsafe_unretained RLMRealm *realm=nil,
  171. RLMClassInfo *classInfo=nullptr);
  172. realm::Decimal128 RLMObjcToDecimal128(id value);
  173. realm::UUID RLMObjcToUUID(__unsafe_unretained id const value);
  174. // Given a bundle identifier, return the base directory on the disk within which Realm database and support files should
  175. // be stored.
  176. NSString *RLMDefaultDirectoryForBundleIdentifier(NSString *bundleIdentifier);
  177. // Get a NSDateFormatter for ISO8601-formatted strings
  178. NSDateFormatter *RLMISO8601Formatter();
  179. template<typename Fn>
  180. static auto RLMTranslateError(Fn&& fn) {
  181. try {
  182. return fn();
  183. }
  184. catch (std::exception const& e) {
  185. @throw RLMException(e);
  186. }
  187. }
  188. static inline bool numberIsInteger(__unsafe_unretained NSNumber *const obj) {
  189. char data_type = [obj objCType][0];
  190. return data_type == *@encode(bool) ||
  191. data_type == *@encode(char) ||
  192. data_type == *@encode(short) ||
  193. data_type == *@encode(int) ||
  194. data_type == *@encode(long) ||
  195. data_type == *@encode(long long) ||
  196. data_type == *@encode(unsigned short) ||
  197. data_type == *@encode(unsigned int) ||
  198. data_type == *@encode(unsigned long) ||
  199. data_type == *@encode(unsigned long long);
  200. }
  201. static inline bool numberIsBool(__unsafe_unretained NSNumber *const obj) {
  202. // @encode(BOOL) is 'B' on iOS 64 and 'c'
  203. // objcType is always 'c'. Therefore compare to "c".
  204. if ([obj objCType][0] == 'c') {
  205. return true;
  206. }
  207. if (numberIsInteger(obj)) {
  208. int value = [obj intValue];
  209. return value == 0 || value == 1;
  210. }
  211. return false;
  212. }
  213. static inline bool numberIsFloat(__unsafe_unretained NSNumber *const obj) {
  214. char data_type = [obj objCType][0];
  215. return data_type == *@encode(float) ||
  216. data_type == *@encode(short) ||
  217. data_type == *@encode(int) ||
  218. data_type == *@encode(long) ||
  219. data_type == *@encode(long long) ||
  220. data_type == *@encode(unsigned short) ||
  221. data_type == *@encode(unsigned int) ||
  222. data_type == *@encode(unsigned long) ||
  223. data_type == *@encode(unsigned long long) ||
  224. // A double is like float if it fits within float bounds or is NaN.
  225. (data_type == *@encode(double) && (ABS([obj doubleValue]) <= FLT_MAX || isnan([obj doubleValue])));
  226. }
  227. static inline bool numberIsDouble(__unsafe_unretained NSNumber *const obj) {
  228. char data_type = [obj objCType][0];
  229. return data_type == *@encode(double) ||
  230. data_type == *@encode(float) ||
  231. data_type == *@encode(short) ||
  232. data_type == *@encode(int) ||
  233. data_type == *@encode(long) ||
  234. data_type == *@encode(long long) ||
  235. data_type == *@encode(unsigned short) ||
  236. data_type == *@encode(unsigned int) ||
  237. data_type == *@encode(unsigned long) ||
  238. data_type == *@encode(unsigned long long);
  239. }