RLMUtil.hpp 11 KB

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