realm.h 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839
  1. /*
  2. FIXME: License, since this header may be distributed independently from
  3. other headers.
  4. */
  5. #ifndef REALM_H
  6. #define REALM_H
  7. #include <stddef.h>
  8. #include <stdint.h>
  9. #include <stdbool.h>
  10. #if defined(_WIN32) || defined(__CYGWIN__)
  11. #if defined(Realm_EXPORTS)
  12. // Exporting Win32 symbols
  13. #define RLM_EXPORT __declspec(dllexport)
  14. #else
  15. // Importing Win32 symbols. Note: Clients linking statically should define
  16. // RLM_NO_DLLIMPORT.
  17. #if !defined(RLM_NO_DLLIMPORT)
  18. #define RLM_EXPORT __declspec(dllimport)
  19. #else
  20. #define RLM_EXPORT
  21. #endif // RLM_NO_DLLIMPORT
  22. #endif // Realm_EXPORTS
  23. #else
  24. // Not Win32
  25. #define RLM_EXPORT __attribute__((visibility("default")))
  26. #endif
  27. #ifdef __cplusplus
  28. #define RLM_API extern "C" RLM_EXPORT
  29. #else
  30. #define RLM_API RLM_EXPORT
  31. #endif // __cplusplus
  32. // Some platforms don't support anonymous unions in structs.
  33. // RLM_NO_ANON_UNIONS allows definining a member name for unions in structs where
  34. // RLM_ANON_UNION_MEMBER(name) is used.
  35. #ifdef RLM_NO_ANON_UNIONS
  36. #define RLM_ANON_UNION_MEMBER(name) name
  37. #else
  38. #define RLM_ANON_UNION_MEMBER(name)
  39. #endif
  40. typedef struct shared_realm realm_t;
  41. typedef struct realm_schema realm_schema_t;
  42. typedef struct realm_scheduler realm_scheduler_t;
  43. typedef struct realm_thread_safe_reference realm_thread_safe_reference_t;
  44. typedef void (*realm_free_userdata_func_t)(void*);
  45. typedef void* (*realm_clone_userdata_func_t)(const void*);
  46. /* Accessor types */
  47. typedef struct realm_object realm_object_t;
  48. typedef struct realm_list realm_list_t;
  49. typedef struct realm_set realm_set_t;
  50. typedef struct realm_dictionary realm_dictionary_t;
  51. /* Query types */
  52. typedef struct realm_query realm_query_t;
  53. typedef struct realm_results realm_results_t;
  54. /* Config types */
  55. typedef struct realm_config realm_config_t;
  56. typedef struct realm_sync_config realm_sync_config_t;
  57. typedef bool (*realm_migration_func_t)(void* userdata, realm_t* old_realm, realm_t* new_realm,
  58. const realm_schema_t* schema);
  59. typedef bool (*realm_data_initialization_func_t)(void* userdata, realm_t* realm);
  60. typedef bool (*realm_should_compact_on_launch_func_t)(void* userdata, uint64_t total_bytes, uint64_t used_bytes);
  61. typedef enum realm_schema_mode {
  62. RLM_SCHEMA_MODE_AUTOMATIC,
  63. RLM_SCHEMA_MODE_IMMUTABLE,
  64. RLM_SCHEMA_MODE_READ_ONLY_ALTERNATIVE,
  65. RLM_SCHEMA_MODE_RESET_FILE,
  66. RLM_SCHEMA_MODE_ADDITIVE_DISCOVERED,
  67. RLM_SCHEMA_MODE_ADDITIVE_EXPLICIT,
  68. RLM_SCHEMA_MODE_MANUAL,
  69. } realm_schema_mode_e;
  70. /* Key types */
  71. typedef uint32_t realm_class_key_t;
  72. typedef int64_t realm_property_key_t;
  73. typedef int64_t realm_object_key_t;
  74. typedef uint64_t realm_version_t;
  75. static const realm_class_key_t RLM_INVALID_CLASS_KEY = ((uint32_t)-1) >> 1;
  76. static const realm_property_key_t RLM_INVALID_PROPERTY_KEY = -1;
  77. static const realm_object_key_t RLM_INVALID_OBJECT_KEY = -1;
  78. /* Value types */
  79. typedef enum realm_value_type {
  80. RLM_TYPE_NULL,
  81. RLM_TYPE_INT,
  82. RLM_TYPE_BOOL,
  83. RLM_TYPE_STRING,
  84. RLM_TYPE_BINARY,
  85. RLM_TYPE_TIMESTAMP,
  86. RLM_TYPE_FLOAT,
  87. RLM_TYPE_DOUBLE,
  88. RLM_TYPE_DECIMAL128,
  89. RLM_TYPE_OBJECT_ID,
  90. RLM_TYPE_LINK,
  91. RLM_TYPE_UUID,
  92. } realm_value_type_e;
  93. typedef enum realm_schema_validation_mode {
  94. RLM_SCHEMA_VALIDATION_BASIC = 0,
  95. RLM_SCHEMA_VALIDATION_SYNC = 1,
  96. RLM_SCHEMA_VALIDATION_REJECT_EMBEDDED_ORPHANS = 2
  97. } realm_schema_validation_mode_e;
  98. typedef struct realm_string {
  99. const char* data;
  100. size_t size;
  101. } realm_string_t;
  102. typedef struct realm_binary {
  103. const uint8_t* data;
  104. size_t size;
  105. } realm_binary_t;
  106. typedef struct realm_timestamp {
  107. int64_t seconds;
  108. int32_t nanoseconds;
  109. } realm_timestamp_t;
  110. typedef struct realm_decimal128 {
  111. uint64_t w[2];
  112. } realm_decimal128_t;
  113. typedef struct realm_link {
  114. realm_class_key_t target_table;
  115. realm_object_key_t target;
  116. } realm_link_t;
  117. typedef struct realm_object_id {
  118. uint8_t bytes[12];
  119. } realm_object_id_t;
  120. typedef struct realm_uuid {
  121. uint8_t bytes[16];
  122. } realm_uuid_t;
  123. typedef struct realm_value {
  124. union {
  125. int64_t integer;
  126. bool boolean;
  127. realm_string_t string;
  128. realm_binary_t binary;
  129. realm_timestamp_t timestamp;
  130. float fnum;
  131. double dnum;
  132. realm_decimal128_t decimal128;
  133. realm_object_id_t object_id;
  134. realm_uuid_t uuid;
  135. realm_link_t link;
  136. char data[16];
  137. } RLM_ANON_UNION_MEMBER(values);
  138. realm_value_type_e type;
  139. } realm_value_t;
  140. typedef struct realm_version_id {
  141. uint64_t version;
  142. uint64_t index;
  143. } realm_version_id_t;
  144. /* Error types */
  145. typedef struct realm_async_error realm_async_error_t;
  146. typedef enum realm_errno {
  147. RLM_ERR_NONE = 0,
  148. RLM_ERR_UNKNOWN,
  149. RLM_ERR_OTHER_EXCEPTION,
  150. RLM_ERR_OUT_OF_MEMORY,
  151. RLM_ERR_NOT_CLONABLE,
  152. RLM_ERR_NOT_IN_A_TRANSACTION,
  153. RLM_ERR_WRONG_THREAD,
  154. RLM_ERR_INVALIDATED_OBJECT,
  155. RLM_ERR_INVALID_PROPERTY,
  156. RLM_ERR_MISSING_PROPERTY_VALUE,
  157. RLM_ERR_PROPERTY_TYPE_MISMATCH,
  158. RLM_ERR_MISSING_PRIMARY_KEY,
  159. RLM_ERR_UNEXPECTED_PRIMARY_KEY,
  160. RLM_ERR_WRONG_PRIMARY_KEY_TYPE,
  161. RLM_ERR_MODIFY_PRIMARY_KEY,
  162. RLM_ERR_READ_ONLY_PROPERTY,
  163. RLM_ERR_PROPERTY_NOT_NULLABLE,
  164. RLM_ERR_INVALID_ARGUMENT,
  165. RLM_ERR_LOGIC,
  166. RLM_ERR_NO_SUCH_TABLE,
  167. RLM_ERR_NO_SUCH_OBJECT,
  168. RLM_ERR_CROSS_TABLE_LINK_TARGET,
  169. RLM_ERR_UNSUPPORTED_FILE_FORMAT_VERSION,
  170. RLM_ERR_MULTIPLE_SYNC_AGENTS,
  171. RLM_ERR_ADDRESS_SPACE_EXHAUSTED,
  172. RLM_ERR_MAXIMUM_FILE_SIZE_EXCEEDED,
  173. RLM_ERR_OUT_OF_DISK_SPACE,
  174. RLM_ERR_KEY_NOT_FOUND,
  175. RLM_ERR_COLUMN_NOT_FOUND,
  176. RLM_ERR_COLUMN_ALREADY_EXISTS,
  177. RLM_ERR_KEY_ALREADY_USED,
  178. RLM_ERR_SERIALIZATION_ERROR,
  179. RLM_ERR_INVALID_PATH_ERROR,
  180. RLM_ERR_DUPLICATE_PRIMARY_KEY_VALUE,
  181. RLM_ERR_INDEX_OUT_OF_BOUNDS,
  182. RLM_ERR_INVALID_QUERY_STRING,
  183. RLM_ERR_INVALID_QUERY,
  184. RLM_ERR_CALLBACK = 1000000, /**< A user-provided callback failed. */
  185. } realm_errno_e;
  186. typedef enum realm_logic_error_kind {
  187. RLM_LOGIC_ERR_NONE = 0,
  188. RLM_LOGIC_ERR_STRING_TOO_BIG,
  189. // ...
  190. } realm_logic_error_kind_e;
  191. typedef struct realm_error {
  192. realm_errno_e error;
  193. const char* message;
  194. union {
  195. int code;
  196. realm_logic_error_kind_e logic_error_kind;
  197. } kind;
  198. } realm_error_t;
  199. /* Schema types */
  200. typedef enum realm_column_attr {
  201. // Values matching `realm::ColumnAttr`.
  202. RLM_COLUMN_ATTR_NONE = 0,
  203. RLM_COLUMN_ATTR_INDEXED = 1,
  204. RLM_COLUMN_ATTR_UNIQUE = 2,
  205. RLM_COLUMN_ATTR_RESERVED = 4,
  206. RLM_COLUMN_ATTR_STRONG_LINKS = 8,
  207. RLM_COLUMN_ATTR_NULLABLE = 16,
  208. RLM_COLUMN_ATTR_LIST = 32,
  209. RLM_COLUMN_ATTR_DICTIONARY = 64,
  210. RLM_COLUMN_ATTR_COLLECTION = 64 + 32,
  211. } realm_column_attr_e;
  212. typedef enum realm_property_type {
  213. // Values matching `realm::ColumnType`.
  214. RLM_PROPERTY_TYPE_INT = 0,
  215. RLM_PROPERTY_TYPE_BOOL = 1,
  216. RLM_PROPERTY_TYPE_STRING = 2,
  217. RLM_PROPERTY_TYPE_BINARY = 4,
  218. RLM_PROPERTY_TYPE_MIXED = 6,
  219. RLM_PROPERTY_TYPE_TIMESTAMP = 8,
  220. RLM_PROPERTY_TYPE_FLOAT = 9,
  221. RLM_PROPERTY_TYPE_DOUBLE = 10,
  222. RLM_PROPERTY_TYPE_DECIMAL128 = 11,
  223. RLM_PROPERTY_TYPE_OBJECT = 12,
  224. RLM_PROPERTY_TYPE_LINKING_OBJECTS = 14,
  225. RLM_PROPERTY_TYPE_OBJECT_ID = 15,
  226. RLM_PROPERTY_TYPE_UUID = 17,
  227. } realm_property_type_e;
  228. typedef enum realm_collection_type {
  229. RLM_COLLECTION_TYPE_NONE = 0,
  230. RLM_COLLECTION_TYPE_LIST = 1,
  231. RLM_COLLECTION_TYPE_SET = 2,
  232. RLM_COLLECTION_TYPE_DICTIONARY = 4,
  233. } realm_collection_type_e;
  234. typedef struct realm_property_info {
  235. const char* name;
  236. const char* public_name;
  237. realm_property_type_e type;
  238. realm_collection_type_e collection_type;
  239. const char* link_target;
  240. const char* link_origin_property_name;
  241. realm_property_key_t key;
  242. int flags;
  243. } realm_property_info_t;
  244. typedef struct realm_class_info {
  245. const char* name;
  246. const char* primary_key;
  247. size_t num_properties;
  248. size_t num_computed_properties;
  249. realm_class_key_t key;
  250. int flags;
  251. } realm_class_info_t;
  252. typedef enum realm_class_flags {
  253. RLM_CLASS_NORMAL = 0,
  254. RLM_CLASS_EMBEDDED = 1,
  255. } realm_class_flags_e;
  256. typedef enum realm_property_flags {
  257. RLM_PROPERTY_NORMAL = 0,
  258. RLM_PROPERTY_NULLABLE = 1,
  259. RLM_PROPERTY_PRIMARY_KEY = 2,
  260. RLM_PROPERTY_INDEXED = 4,
  261. } realm_property_flags_e;
  262. /* Notification types */
  263. typedef struct realm_notification_token realm_notification_token_t;
  264. typedef struct realm_object_changes realm_object_changes_t;
  265. typedef struct realm_collection_changes realm_collection_changes_t;
  266. typedef void (*realm_on_object_change_func_t)(void* userdata, const realm_object_changes_t*);
  267. typedef void (*realm_on_collection_change_func_t)(void* userdata, const realm_collection_changes_t*);
  268. typedef void (*realm_callback_error_func_t)(void* userdata, const realm_async_error_t*);
  269. /* Scheduler types */
  270. typedef void (*realm_scheduler_notify_func_t)(void* userdata);
  271. typedef bool (*realm_scheduler_is_on_thread_func_t)(void* userdata);
  272. typedef bool (*realm_scheduler_is_same_as_func_t)(const void* userdata1, const void* userdata2);
  273. typedef bool (*realm_scheduler_can_deliver_notifications_func_t)(void* userdata);
  274. typedef void (*realm_scheduler_set_notify_callback_func_t)(void* userdata, void* callback_userdata,
  275. realm_free_userdata_func_t, realm_scheduler_notify_func_t);
  276. typedef realm_scheduler_t* (*realm_scheduler_default_factory_func_t)(void* userdata);
  277. /* Sync types */
  278. typedef void (*realm_sync_upload_completion_func_t)(void* userdata, realm_async_error_t*);
  279. typedef void (*realm_sync_download_completion_func_t)(void* userdata, realm_async_error_t*);
  280. typedef void (*realm_sync_connection_state_changed_func_t)(void* userdata, int, int);
  281. typedef void (*realm_sync_session_state_changed_func_t)(void* userdata, int, int);
  282. typedef void (*realm_sync_progress_func_t)(void* userdata, size_t transferred, size_t total);
  283. /**
  284. * Get the VersionID of the current transaction.
  285. *
  286. * @param out_found True if version information is available. This requires an available Read or Write transaction.
  287. * @param out_version The version of the current transaction. If `out_found` returns False, this returns (0,0).
  288. * @return True if no exception occurred.
  289. */
  290. RLM_API bool realm_get_version_id(const realm_t*, bool* out_found, realm_version_id_t* out_version);
  291. /**
  292. * Get a string representing the version number of the Realm library.
  293. *
  294. * @return A null-terminated string.
  295. */
  296. RLM_API const char* realm_get_library_version(void);
  297. /**
  298. * Get individual components of the version number of the Realm library.
  299. *
  300. * @param out_major The major version number (X.0.0).
  301. * @param out_minor The minor version number (0.X.0).
  302. * @param out_patch The patch version number (0.0.X).
  303. * @param out_extra The extra version string (0.0.0-X).
  304. */
  305. RLM_API void realm_get_library_version_numbers(int* out_major, int* out_minor, int* out_patch,
  306. const char** out_extra);
  307. /**
  308. * Get the last error that happened on this thread.
  309. *
  310. * Errors are thread-local. Getting the error must happen on the same thread as
  311. * the call that caused the error to occur. The error is specific to the current
  312. * thread, and not the Realm instance for which the error occurred.
  313. *
  314. * Note: The error message in @a err will only be safe to use until the next API
  315. * call is made on the current thread.
  316. *
  317. * Note: The error is not cleared by subsequent successful calls to this
  318. * function, but it will be overwritten by subsequent failing calls to
  319. * other library functions.
  320. *
  321. * Note: Calling this function does not clear the current last error.
  322. *
  323. * This function does not allocate any memory.
  324. *
  325. * @param err A pointer to a `realm_error_t` struct that will be populated with
  326. * information about the last error, if there is one. May be NULL.
  327. * @return True if an error occurred.
  328. */
  329. RLM_API bool realm_get_last_error(realm_error_t* err);
  330. /**
  331. * Get information about an async error, potentially coming from another thread.
  332. *
  333. * This function does not allocate any memory.
  334. *
  335. * @param err A pointer to a `realm_error_t` struct that will be populated with
  336. * information about the error. May not be NULL.
  337. * @see realm_get_last_error()
  338. */
  339. RLM_API void realm_get_async_error(const realm_async_error_t* err, realm_error_t* out_err);
  340. /**
  341. * Convert the last error to `realm_async_error_t`, which can safely be passed
  342. * between threads.
  343. *
  344. * Note: This function does not clear the last error.
  345. *
  346. * @return A non-null pointer if there was an error on this thread.
  347. * @see realm_get_last_error()
  348. * @see realm_get_async_error()
  349. * @see realm_clear_last_error()
  350. */
  351. RLM_API realm_async_error_t* realm_get_last_error_as_async_error(void);
  352. #if defined(__cplusplus)
  353. /**
  354. * Rethrow the last exception.
  355. *
  356. * Note: This function does not have C linkage, because throwing across language
  357. * boundaries is undefined behavior. When called from C code, this should result
  358. * in a linker error. When called from C++, `std::rethrow_exception` will be
  359. * called to propagate the exception unchanged.
  360. */
  361. RLM_EXPORT void realm_rethrow_last_error(void);
  362. /**
  363. * Invoke a function that may throw an exception, and report that exception as
  364. * part of the C API error handling mechanism.
  365. *
  366. * This is used to test translation of exceptions to error codes.
  367. *
  368. * @return True if no exception was thrown.
  369. */
  370. RLM_EXPORT bool realm_wrap_exceptions(void (*)()) noexcept;
  371. #endif // __cplusplus
  372. /**
  373. * Clear the last error on the calling thread.
  374. *
  375. * Use this if the system has recovered from an error, e.g. by closing the
  376. * offending Realm and reopening it, freeing up resources, or similar.
  377. *
  378. * @return True if an error was cleared.
  379. */
  380. RLM_API bool realm_clear_last_error(void);
  381. /**
  382. * Free any Realm C Wrapper object.
  383. *
  384. * Note: Any pointer returned from a library function is owned by the caller.
  385. * The caller is responsible for calling `realm_release()`. The only
  386. * exception from this is C++ bridge functions that return `void*`, with
  387. * the prefix `_realm`.
  388. *
  389. * Note: C++ destructors are typically `noexcept`, so it is likely that an
  390. * exception will crash the process.
  391. *
  392. * @param ptr A pointer to a Realm C Wrapper object. May be NULL.
  393. */
  394. RLM_API void realm_release(void* ptr);
  395. /**
  396. * Clone a Realm C Wrapper object.
  397. *
  398. * If the object is not clonable, this function fails with RLM_ERR_NOT_CLONABLE.
  399. *
  400. * @return A pointer to an object of the same type as the input, or NULL if
  401. * cloning failed.
  402. */
  403. RLM_API void* realm_clone(const void*);
  404. /**
  405. * Return true if two API objects refer to the same underlying data. Objects
  406. * with different types are never equal.
  407. *
  408. * Note: This function cannot be used with types that have value semantics, only
  409. * opaque types that have object semantics.
  410. *
  411. * - `realm_t` objects are identical if they represent the same instance (not
  412. * just if they represent the same file).
  413. * - `realm_schema_t` objects are equal if the represented schemas are equal.
  414. * - `realm_config_t` objects are equal if the configurations are equal.
  415. * - `realm_object_t` objects are identical if they belong to the same realm
  416. * and class, and have the same object key.
  417. * - `realm_list_t` and other collection objects are identical if they come
  418. * from the same object and property.
  419. * - `realm_query_t` objects are never equal.
  420. * - `realm_scheduler_t` objects are equal if they represent the same
  421. * scheduler.
  422. * - Query descriptor objects are equal if they represent equivalent
  423. * descriptors.
  424. * - `realm_async_error_t` objects are equal if they represent the same
  425. * exception instance.
  426. *
  427. * This function cannot fail.
  428. */
  429. RLM_API bool realm_equals(const void*, const void*);
  430. /**
  431. * True if a Realm C Wrapper object is "frozen" (immutable).
  432. *
  433. * Objects, collections, and results can be frozen. For all other types, this
  434. * function always returns false.
  435. */
  436. RLM_API bool realm_is_frozen(const void*);
  437. /**
  438. * Get a thread-safe reference representing the same underlying object as some
  439. * API object.
  440. *
  441. * The thread safe reference can be passed to a different thread and resolved
  442. * against a different `realm_t` instance, which succeeds if the underlying
  443. * object still exists.
  444. *
  445. * The following types can produce thread safe references:
  446. *
  447. * - `realm_object_t`
  448. * - `realm_results_t`
  449. * - `realm_list_t`
  450. * - `realm_t`
  451. *
  452. * This does not assume ownership of the object, except for `realm_t`, where the
  453. * instance is transferred by value, and must be transferred back to the current
  454. * thread to be used. Note that the `realm_thread_safe_reference_t` object must
  455. * still be destroyed after having been converted into a `realm_t` object.
  456. *
  457. * @return A non-null pointer if no exception occurred.
  458. */
  459. RLM_API realm_thread_safe_reference_t* realm_create_thread_safe_reference(const void*);
  460. /**
  461. * Allocate a new configuration with default options.
  462. */
  463. RLM_API realm_config_t* realm_config_new(void);
  464. /**
  465. * Get the path of the realm being opened.
  466. *
  467. * This function cannot fail.
  468. */
  469. RLM_API const char* realm_config_get_path(const realm_config_t*);
  470. /**
  471. * Set the path of the realm being opened.
  472. *
  473. * This function aborts when out of memory, but otherwise cannot fail.
  474. */
  475. RLM_API void realm_config_set_path(realm_config_t*, const char* path);
  476. /**
  477. * Get the encryption key for the realm.
  478. *
  479. * The output buffer must be at least 64 bytes.
  480. *
  481. * @returns The length of the encryption key (0 or 64)
  482. */
  483. RLM_API size_t realm_config_get_encryption_key(const realm_config_t*, uint8_t* out_key);
  484. /**
  485. * Set the encryption key for the realm.
  486. *
  487. * The key must be either 64 bytes long or have length zero (in which case
  488. * encryption is disabled).
  489. *
  490. * This function may fail if the encryption key has the wrong length.
  491. */
  492. RLM_API bool realm_config_set_encryption_key(realm_config_t*, const uint8_t* key, size_t key_size);
  493. /**
  494. * Get the schema for this realm.
  495. *
  496. * Note: The caller obtains ownership of the returned value, and must manually
  497. * free it by calling `realm_release()`.
  498. *
  499. * @return A schema object, or NULL if the schema is not set (empty).
  500. */
  501. RLM_API realm_schema_t* realm_config_get_schema(const realm_config_t*);
  502. /**
  503. * Set the schema object for this realm.
  504. *
  505. * This does not take ownership of the schema object, and it should be released
  506. * afterwards.
  507. *
  508. * This function aborts when out of memory, but otherwise cannot fail.
  509. *
  510. * @param schema The schema object. May be NULL, which means an empty schema.
  511. */
  512. RLM_API void realm_config_set_schema(realm_config_t*, const realm_schema_t* schema);
  513. /**
  514. * Get the schema version of the schema.
  515. *
  516. * This function cannot fail.
  517. */
  518. RLM_API uint64_t realm_config_get_schema_version(const realm_config_t*);
  519. /**
  520. * Set the schema version of the schema.
  521. *
  522. * This function cannot fail.
  523. */
  524. RLM_API void realm_config_set_schema_version(realm_config_t*, uint64_t version);
  525. /**
  526. * Get the schema mode.
  527. *
  528. * This function cannot fail.
  529. */
  530. RLM_API realm_schema_mode_e realm_config_get_schema_mode(const realm_config_t*);
  531. /**
  532. * Set the schema mode.
  533. *
  534. * This function cannot fail.
  535. */
  536. RLM_API void realm_config_set_schema_mode(realm_config_t*, realm_schema_mode_e);
  537. /**
  538. * Set the migration callback.
  539. *
  540. * The migration function is called during a migration for schema modes
  541. * `RLM_SCHEMA_MODE_AUTOMATIC` and `RLM_SCHEMA_MODE_MANUAL`. The callback is
  542. * invoked with a realm instance before the migration and the realm instance
  543. * that is currently performing the migration.
  544. *
  545. * This function cannot fail.
  546. */
  547. RLM_API void realm_config_set_migration_function(realm_config_t*, realm_migration_func_t, void* userdata);
  548. /**
  549. * Set the data initialization function.
  550. *
  551. * The callback is invoked the first time the schema is created, such that the
  552. * user can perform one-time initialization of the data in the realm.
  553. *
  554. * The realm instance passed to the callback is in a write transaction.
  555. *
  556. * This function cannot fail.
  557. */
  558. RLM_API void realm_config_set_data_initialization_function(realm_config_t*, realm_data_initialization_func_t,
  559. void* userdata);
  560. /**
  561. * Set the should-compact-on-launch callback.
  562. *
  563. * The callback is invoked the first time a realm file is opened in this process
  564. * to decide whether the realm file should be compacted.
  565. *
  566. * Note: If another process has the realm file open, it will not be compacted.
  567. *
  568. * This function cannot fail.
  569. */
  570. RLM_API void realm_config_set_should_compact_on_launch_function(realm_config_t*,
  571. realm_should_compact_on_launch_func_t,
  572. void* userdata);
  573. /**
  574. * True if file format upgrades on open are disabled.
  575. *
  576. * This function cannot fail.
  577. */
  578. RLM_API bool realm_config_get_disable_format_upgrade(const realm_config_t*);
  579. /**
  580. * Disable file format upgrade on open (default: false).
  581. *
  582. * If a migration is needed to open the realm file with the provided schema, an
  583. * error is thrown rather than automatically performing the migration.
  584. *
  585. * This function cannot fail.
  586. */
  587. RLM_API void realm_config_set_disable_format_upgrade(realm_config_t*, bool);
  588. /**
  589. * True if automatic change notifications should be generated.
  590. *
  591. * This function cannot fail.
  592. */
  593. RLM_API bool realm_config_get_automatic_change_notifications(const realm_config_t*);
  594. /**
  595. * Automatically generated change notifications (default: true).
  596. *
  597. * This function cannot fail.
  598. */
  599. RLM_API void realm_config_set_automatic_change_notifications(realm_config_t*, bool);
  600. /**
  601. * The scheduler which this realm should be bound to (default: NULL).
  602. *
  603. * If NULL, the realm will be bound to the default scheduler for the current thread.
  604. *
  605. * This function aborts when out of memory, but otherwise cannot fail.
  606. */
  607. RLM_API void realm_config_set_scheduler(realm_config_t*, const realm_scheduler_t*);
  608. /**
  609. * Sync configuration for this realm (default: NULL).
  610. *
  611. * This function aborts when out of memory, but otherwise cannot fail.
  612. */
  613. RLM_API void realm_config_set_sync_config(realm_config_t*, realm_sync_config_t*);
  614. /**
  615. * Get whether the realm file should be forcibly initialized as a synchronized.
  616. *
  617. * This function cannot fail.
  618. */
  619. RLM_API bool realm_config_get_force_sync_history(const realm_config_t*);
  620. /**
  621. * Force the realm file to be initialized as a synchronized realm, even if no
  622. * sync config is provided (default: false).
  623. *
  624. * This function cannot fail.
  625. */
  626. RLM_API void realm_config_set_force_sync_history(realm_config_t*, bool);
  627. /**
  628. * Set the audit interface for the realm (unimplemented).
  629. */
  630. RLM_API bool realm_config_set_audit_factory(realm_config_t*, void*);
  631. /**
  632. * Get maximum number of active versions in the realm file allowed before an
  633. * exception is thrown.
  634. *
  635. * This function cannot fail.
  636. */
  637. RLM_API uint64_t realm_config_get_max_number_of_active_versions(const realm_config_t*);
  638. /**
  639. * Set maximum number of active versions in the realm file allowed before an
  640. * exception is thrown (default: UINT64_MAX).
  641. *
  642. * This function cannot fail.
  643. */
  644. RLM_API void realm_config_set_max_number_of_active_versions(realm_config_t*, uint64_t);
  645. /**
  646. * Create a custom scheduler object from callback functions.
  647. *
  648. * @param userdata Pointer passed to all callbacks.
  649. * @param notify Function to trigger a call to the registered callback on the
  650. * scheduler's event loop. This function must be thread-safe, or
  651. * NULL, in which case the scheduler is considered unable to
  652. * deliver notifications.
  653. * @param is_on_thread Function to return true if called from the same thread as
  654. * the scheduler. This function must be thread-safe.
  655. * @param can_deliver_notifications Function to return true if the scheduler can
  656. * support `notify()`. This function does not
  657. * need to be thread-safe.
  658. * @param set_notify_callback Function to accept a callback that will be invoked
  659. * by `notify()` on the scheduler's event loop. This
  660. * function does not need to be thread-safe.
  661. */
  662. RLM_API realm_scheduler_t*
  663. realm_scheduler_new(void* userdata, realm_free_userdata_func_t, realm_scheduler_notify_func_t notify,
  664. realm_scheduler_is_on_thread_func_t is_on_thread, realm_scheduler_is_same_as_func_t is_same_as,
  665. realm_scheduler_can_deliver_notifications_func_t can_deliver_notifications,
  666. realm_scheduler_set_notify_callback_func_t set_notify_callback);
  667. /**
  668. * Create an instance of the default scheduler for the current platform,
  669. * normally confined to the calling thread.
  670. */
  671. RLM_API realm_scheduler_t* realm_scheduler_make_default(void);
  672. /**
  673. * Get the scheduler used by frozen realms. This scheduler does not support
  674. * notifications, and does not perform any thread checking.
  675. *
  676. * This function is thread-safe, and cannot fail.
  677. */
  678. RLM_API const realm_scheduler_t* realm_scheduler_get_frozen(void);
  679. /**
  680. * Returns true if there is a default scheduler implementation for the current
  681. * platform, or one has been set with `realm_scheduler_set_default_factory()`.
  682. *
  683. * If there is no default factory, and no scheduler is provided in the config,
  684. * `realm_open()` will fail. Note that `realm_scheduler_get_frozen()` always
  685. * returns a valid scheduler.
  686. *
  687. * This function is thread-safe, and cannot fail.
  688. */
  689. RLM_API bool realm_scheduler_has_default_factory(void);
  690. /**
  691. * For platforms with no default scheduler implementation, register a factory
  692. * function which can produce custom schedulers. If there is a platform-specific
  693. * scheduler, this function will fail. If a custom scheduler is desired for
  694. * platforms that already have a default scheduler implementation, the caller
  695. * must call `realm_open()` with a config that indicates the desired scheduler.
  696. *
  697. * The provided callback may produce a scheduler by calling
  698. * `realm_scheduler_new()`.
  699. *
  700. * This function is thread-safe, but should generally only be called once.
  701. */
  702. RLM_API bool realm_scheduler_set_default_factory(void* userdata, realm_free_userdata_func_t,
  703. realm_scheduler_default_factory_func_t);
  704. /**
  705. * Trigger a call to the registered notifier callback on the scheduler's event loop.
  706. *
  707. * This function is thread-safe.
  708. */
  709. RLM_API void realm_scheduler_notify(realm_scheduler_t*);
  710. /**
  711. * Returns true if the caller is currently running on the scheduler's thread.
  712. *
  713. * This function is thread-safe.
  714. */
  715. RLM_API bool realm_scheduler_is_on_thread(const realm_scheduler_t*);
  716. /**
  717. * Returns true if the scheduler is able to deliver notifications.
  718. *
  719. * A false return value may indicate that notifications are not applicable for
  720. * the scheduler, not implementable, or a temporary inability to deliver
  721. * notifications.
  722. *
  723. * This function is not thread-safe.
  724. */
  725. RLM_API bool realm_scheduler_can_deliver_notifications(const realm_scheduler_t*);
  726. /**
  727. * Set the callback that will be invoked by `realm_scheduler_notify()`.
  728. *
  729. * This function is not thread-safe.
  730. */
  731. RLM_API bool realm_scheduler_set_notify_callback(realm_scheduler_t*, void* userdata, realm_free_userdata_func_t,
  732. realm_scheduler_notify_func_t);
  733. /**
  734. * Open a Realm file.
  735. *
  736. * @param config Realm configuration. If the Realm is already opened on another
  737. * thread, validate that the given configuration is compatible
  738. * with the existing one.
  739. * @return If successful, the Realm object. Otherwise, NULL.
  740. */
  741. RLM_API realm_t* realm_open(const realm_config_t* config);
  742. /**
  743. * Create a `realm_t` object from a thread-safe reference to the same realm.
  744. *
  745. * @param tsr Thread-safe reference object created by calling
  746. * `realm_get_thread_safe_reference()` with a `realm_t` instance.
  747. * @param scheduler The scheduler to use for the new `realm_t` instance. May be
  748. * NULL, in which case the default scheduler for the current
  749. * thread is used.
  750. * @return A non-null pointer if no error occurred.
  751. */
  752. RLM_API realm_t* realm_from_thread_safe_reference(realm_thread_safe_reference_t* tsr, realm_scheduler_t* scheduler);
  753. /**
  754. * Create a `realm_t*` from a `std::shared_ptr<Realm>*`.
  755. *
  756. * This is intended as a migration path for users of the C++ Object Store API.
  757. *
  758. * Call `realm_release()` on the returned `realm_t*` to decrement the refcount
  759. * on the inner `std::shared_ptr<Realm>`.
  760. *
  761. * @param pshared_ptr A pointer to an instance of `std::shared_ptr<Realm>`.
  762. * @param n Must be equal to `sizeof(std::shared_ptr<Realm>)`.
  763. * @return A `realm_t*` representing the same Realm object as the passed
  764. * `std::shared_ptr<Realm>`.
  765. */
  766. RLM_API realm_t* _realm_from_native_ptr(const void* pshared_ptr, size_t n);
  767. /**
  768. * Get a `std::shared_ptr<Realm>` from a `realm_t*`.
  769. *
  770. * This is intended as a migration path for users of the C++ Object Store API.
  771. *
  772. * @param pshared_ptr A pointer to an instance of `std::shared_ptr<Realm>`.
  773. * @param n Must be equal to `sizeof(std::shared_ptr<Realm>)`.
  774. */
  775. RLM_API void _realm_get_native_ptr(const realm_t*, void* pshared_ptr, size_t n);
  776. /**
  777. * Forcibly close a Realm file.
  778. *
  779. * Note that this invalidates all Realm instances for the same path.
  780. *
  781. * The Realm will be automatically closed when the last reference is released,
  782. * including references to objects within the Realm.
  783. *
  784. * @return True if no exception occurred.
  785. */
  786. RLM_API bool realm_close(realm_t*);
  787. /**
  788. * True if the Realm file is closed.
  789. *
  790. * This function cannot fail.
  791. */
  792. RLM_API bool realm_is_closed(realm_t*);
  793. /**
  794. * Begin a read transaction for the Realm file.
  795. *
  796. * @return True if no exception occurred.
  797. */
  798. RLM_API bool realm_begin_read(realm_t*);
  799. /**
  800. * Begin a write transaction for the Realm file.
  801. *
  802. * @return True if no exception occurred.
  803. */
  804. RLM_API bool realm_begin_write(realm_t*);
  805. /**
  806. * Return true if the realm is in a write transaction.
  807. *
  808. * This function cannot fail.
  809. */
  810. RLM_API bool realm_is_writable(const realm_t*);
  811. /**
  812. * Commit a write transaction.
  813. *
  814. * @return True if the commit succeeded and no exceptions were thrown.
  815. */
  816. RLM_API bool realm_commit(realm_t*);
  817. /**
  818. * Roll back a write transaction.
  819. *
  820. * @return True if the rollback succeeded and no exceptions were thrown.
  821. */
  822. RLM_API bool realm_rollback(realm_t*);
  823. /**
  824. * Refresh the view of the realm file.
  825. *
  826. * If another process or thread has made changes to the realm file, this causes
  827. * those changes to become visible in this realm instance.
  828. *
  829. * This calls `advance_read()` at the Core layer.
  830. *
  831. * @return True if the realm was successfully refreshed and no exceptions were
  832. * thrown.
  833. */
  834. RLM_API bool realm_refresh(realm_t*);
  835. /**
  836. * Produce a frozen view of this realm.
  837. *
  838. * @return A non-NULL realm instance representing the frozen state.
  839. */
  840. RLM_API realm_t* realm_freeze(realm_t*);
  841. /**
  842. * Vacuum the free space from the realm file, reducing its file size.
  843. *
  844. * @return True if compaction was successful and no exceptions were thrown.
  845. */
  846. RLM_API bool realm_compact(realm_t*, bool* did_compact);
  847. /**
  848. * Create a new schema from classes and their properties.
  849. *
  850. * Note: This function does not validate the schema.
  851. *
  852. * Note: `realm_class_key_t` and `realm_property_key_t` values inside
  853. * `realm_class_info_t` and `realm_property_info_t` are unused when
  854. * defining the schema. Call `realm_get_schema()` to obtain the values for
  855. * these fields in an open realm.
  856. *
  857. * @return True if allocation of the schema structure succeeded.
  858. */
  859. RLM_API realm_schema_t* realm_schema_new(const realm_class_info_t* classes, size_t num_classes,
  860. const realm_property_info_t** class_properties);
  861. /**
  862. * Get the schema for this realm.
  863. *
  864. * Note: The returned value is allocated by this function, so `realm_release()`
  865. * must be called on it.
  866. */
  867. RLM_API realm_schema_t* realm_get_schema(const realm_t*);
  868. /**
  869. * Update the schema of an open realm.
  870. *
  871. * This is equivalent to calling `realm_update_schema_advanced(realm, schema, 0,
  872. * NULL, NULL, NULL, NULL, false)`.
  873. */
  874. RLM_API bool realm_update_schema(realm_t* realm, const realm_schema_t* schema);
  875. /**
  876. * Update the schema of an open realm, with options to customize certain steps
  877. * of the process.
  878. *
  879. * @param realm The realm for which the schema should be updated.
  880. * @param schema The new schema for the realm. If the schema is the same the
  881. * existing schema, this function does nothing.
  882. * @param version The version of the new schema.
  883. * @param migration_func Callback to perform the migration. Has no effect if the
  884. * Realm is opened with `RLM_SCHEMA_MODE_ADDITIVE`.
  885. * @param migration_func_userdata Userdata pointer to pass to `migration_func`.
  886. * @param data_init_func Callback to perform initialization of the data in the
  887. * Realm if it is opened for the first time (i.e., it has
  888. * no previous schema version).
  889. * @param data_init_func_userdata Userdata pointer to pass to `data_init_func`.
  890. * @param is_in_transaction Pass true if the realm is already in a write
  891. * transaction. Otherwise, if the migration requires a
  892. * write transaction, this function will perform the
  893. * migration in its own write transaction.
  894. */
  895. RLM_API bool realm_update_schema_advanced(realm_t* realm, const realm_schema_t* schema, uint64_t version,
  896. realm_migration_func_t migration_func, void* migration_func_userdata,
  897. realm_data_initialization_func_t data_init_func,
  898. void* data_init_func_userdata, bool is_in_transaction);
  899. /**
  900. * Get the `realm::Schema*` pointer for this realm.
  901. *
  902. * This is intended as a migration path for users of the C++ Object Store API.
  903. *
  904. * The returned value is owned by the `realm_t` instance, and must not be freed.
  905. */
  906. RLM_API const void* _realm_get_schema_native(const realm_t*);
  907. /**
  908. * Validate the schema.
  909. *
  910. * @param validation_mode A bitwise combination of values from the
  911. * enum realm_schema_validation_mode.
  912. *
  913. * @return True if the schema passed validation. If validation failed,
  914. * `realm_get_last_error()` will produce an error describing the
  915. * validation failure.
  916. */
  917. RLM_API bool realm_schema_validate(const realm_schema_t*, uint64_t validation_mode);
  918. /**
  919. * Return the number of classes in the Realm's schema.
  920. *
  921. * This cannot fail.
  922. */
  923. RLM_API size_t realm_get_num_classes(const realm_t*);
  924. /**
  925. * Get the table keys for classes in the schema.
  926. *
  927. * @param out_keys An array that will contain the keys of each class in the
  928. * schema. May be NULL, in which case `out_n` can be used to
  929. * determine the number of classes in the schema.
  930. * @param max The maximum number of keys to write to `out_keys`.
  931. * @param out_n The actual number of classes. May be NULL.
  932. * @return True if no exception occurred.
  933. */
  934. RLM_API bool realm_get_class_keys(const realm_t*, realm_class_key_t* out_keys, size_t max, size_t* out_n);
  935. /**
  936. * Find a by the name of @a name.
  937. *
  938. * @param name The name of the class.
  939. * @param out_found Set to true if the class was found and no error occurred.
  940. * Otherwise, false. May not be NULL.
  941. * @param out_class_info A pointer to a `realm_class_info_t` that will be
  942. * populated with information about the class. May be
  943. * NULL.
  944. * @return True if no exception occurred.
  945. */
  946. RLM_API bool realm_find_class(const realm_t*, const char* name, bool* out_found, realm_class_info_t* out_class_info);
  947. /**
  948. * Get the class with @a key from the schema.
  949. *
  950. * Passing an invalid @a key for this schema is considered an error.
  951. *
  952. * @param key The key of the class, as discovered by `realm_get_class_keys()`.
  953. * @param out_class_info A pointer to a `realm_class_info_t` that will be
  954. * populated with the information of the class. May be
  955. * NULL, though that's kind of pointless.
  956. * @return True if no exception occurred.
  957. */
  958. RLM_API bool realm_get_class(const realm_t*, realm_class_key_t key, realm_class_info_t* out_class_info);
  959. /**
  960. * Get the list of properties for the class with this @a key.
  961. *
  962. * @param out_properties A pointer to an array of `realm_property_info_t`, which
  963. * will be populated with the information about the
  964. * properties. To see all properties, the length of the
  965. * array should be at least the number of properties in
  966. * the class, as reported in the sum of persisted and
  967. * computed properties for the class. May be NULL, in
  968. * which case this function can be used to discover the
  969. * number of properties in the class.
  970. * @param max The maximum number of entries to write to `out_properties`.
  971. * @param out_n The actual number of properties written to `out_properties`.
  972. * @return True if no exception occurred.
  973. */
  974. RLM_API bool realm_get_class_properties(const realm_t*, realm_class_key_t key, realm_property_info_t* out_properties,
  975. size_t max, size_t* out_n);
  976. /**
  977. * Get the property keys for the class with this @a key.
  978. *
  979. * @param key The class key.
  980. * @param out_col_keys An array of property keys. May be NULL, in which case
  981. * this function can be used to discover the number of
  982. * properties for this class.
  983. * @param max The maximum number of keys to write to `out_col_keys`. Ignored if
  984. * `out_col_keys == NULL`.
  985. * @param out_n The actual number of properties written to `out_col_keys` (if
  986. * non-NULL), or number of properties in the class.
  987. **/
  988. RLM_API bool realm_get_property_keys(const realm_t*, realm_class_key_t key, realm_property_key_t* out_col_keys,
  989. size_t max, size_t* out_n);
  990. /**
  991. * Find a property by its column key.
  992. *
  993. * It is an error to pass a property @a key that is not present in this class.
  994. *
  995. * @param class_key The key of the class.
  996. * @param key The column key for the property.
  997. * @param out_property_info A pointer to a `realm_property_info_t` that will be
  998. * populated with information about the property.
  999. * @return True if no exception occurred.
  1000. */
  1001. RLM_API bool realm_get_property(const realm_t*, realm_class_key_t class_key, realm_property_key_t key,
  1002. realm_property_info_t* out_property_info);
  1003. /**
  1004. * Find a property by the internal (non-public) name of @a name.
  1005. *
  1006. * @param class_key The table key for the class.
  1007. * @param name The name of the property.
  1008. * @param out_found Will be set to true if the property was found. May not be
  1009. * NULL.
  1010. * @param out_property_info A pointer to a `realm_property_info_t` that will be
  1011. * populated with information about the property. May
  1012. * be NULL.
  1013. * @return True if no exception occurred.
  1014. */
  1015. RLM_API bool realm_find_property(const realm_t*, realm_class_key_t class_key, const char* name, bool* out_found,
  1016. realm_property_info_t* out_property_info);
  1017. /**
  1018. * Find a property with the public name of @a name.
  1019. *
  1020. * @param class_key The table key for the class.
  1021. * @param public_name The public name of the property.
  1022. * @param out_found Will be set to true if the property was found. May not be
  1023. * NULL.
  1024. * @param out_property_info A pointer to a `realm_property_info_t` that will be
  1025. * populated with information about the property. May
  1026. * be NULL.
  1027. * @return True if no exception occurred.
  1028. */
  1029. RLM_API bool realm_find_property_by_public_name(const realm_t*, realm_class_key_t class_key, const char* public_name,
  1030. bool* out_found, realm_property_info_t* out_property_info);
  1031. /**
  1032. * Find the primary key property for a class, if it has one.
  1033. *
  1034. * @param class_key The table key for this class.
  1035. * @param out_found Will be set to true if the property was found. May not be
  1036. * NULL.
  1037. * @param out_property_info A property to a `realm_property_info_t` that will be
  1038. * populated with information about the property, if it
  1039. * was found. May be NULL.
  1040. * @return True if no exception occurred.
  1041. */
  1042. RLM_API bool realm_find_primary_key_property(const realm_t*, realm_class_key_t class_key, bool* out_found,
  1043. realm_property_info_t* out_property_info);
  1044. /**
  1045. * Get the number of objects in a table (class).
  1046. *
  1047. * @param out_count A pointer to a `size_t` that will contain the number of
  1048. * objects, if successful.
  1049. * @return True if the table key was valid for this realm.
  1050. */
  1051. RLM_API bool realm_get_num_objects(const realm_t*, realm_class_key_t, size_t* out_count);
  1052. /**
  1053. * Get the number of versions found in the Realm file.
  1054. *
  1055. * @param out_versions_count A pointer to a `size_t` that will contain the number of
  1056. * versions, if successful.
  1057. * @return True if no exception occurred.
  1058. */
  1059. RLM_API bool realm_get_num_versions(const realm_t*, uint64_t* out_versions_count);
  1060. /**
  1061. * Get an object with a particular object key.
  1062. *
  1063. * @param class_key The class key.
  1064. * @param obj_key The key to the object. Passing a non-existent key is
  1065. * considered an error.
  1066. * @return A non-NULL pointer if no exception occurred.
  1067. */
  1068. RLM_API realm_object_t* realm_get_object(const realm_t*, realm_class_key_t class_key, realm_object_key_t obj_key);
  1069. /**
  1070. * Find an object with a particular primary key value.
  1071. *
  1072. * @param out_found A pointer to a boolean that will be set to true or false if
  1073. * no error occurred.
  1074. * @return A non-NULL pointer if the object was found and no exception occurred.
  1075. */
  1076. RLM_API realm_object_t* realm_object_find_with_primary_key(const realm_t*, realm_class_key_t, realm_value_t pk,
  1077. bool* out_found);
  1078. /**
  1079. * Find all objects in class.
  1080. *
  1081. * Note: This is faster than running a query matching all objects (such as
  1082. * "TRUEPREDICATE").
  1083. *
  1084. * @return A non-NULL pointer if no exception was thrown.
  1085. */
  1086. RLM_API realm_results_t* realm_object_find_all(const realm_t*, realm_class_key_t);
  1087. /**
  1088. * Create an object in a class without a primary key.
  1089. *
  1090. * @return A non-NULL pointer if the object was created successfully.
  1091. */
  1092. RLM_API realm_object_t* realm_object_create(realm_t*, realm_class_key_t);
  1093. /**
  1094. * Create an object in a class with a primary key.
  1095. *
  1096. * @return A non-NULL pointer if the object was created successfully.
  1097. */
  1098. RLM_API realm_object_t* realm_object_create_with_primary_key(realm_t*, realm_class_key_t, realm_value_t pk);
  1099. /**
  1100. * Delete a realm object.
  1101. *
  1102. * Note: This does not call `realm_release()` on the `realm_object_t` instance.
  1103. *
  1104. * @return True if no exception occurred.
  1105. */
  1106. RLM_API bool realm_object_delete(realm_object_t*);
  1107. RLM_API realm_object_t* _realm_object_from_native_copy(const void* pobj, size_t n);
  1108. RLM_API realm_object_t* _realm_object_from_native_move(void* pobj, size_t n);
  1109. RLM_API const void* _realm_object_get_native_ptr(realm_object_t*);
  1110. /**
  1111. * True if this object still exists in the realm.
  1112. *
  1113. * This function cannot fail.
  1114. */
  1115. RLM_API bool realm_object_is_valid(const realm_object_t*);
  1116. /**
  1117. * Get the key for this object.
  1118. *
  1119. * This function cannot fail.
  1120. */
  1121. RLM_API realm_object_key_t realm_object_get_key(const realm_object_t* object);
  1122. /**
  1123. * Get the table for this object.
  1124. *
  1125. * This function cannot fail.
  1126. */
  1127. RLM_API realm_class_key_t realm_object_get_table(const realm_object_t* object);
  1128. /**
  1129. * Get a `realm_link_t` representing a link to @a object.
  1130. *
  1131. * This function cannot fail.
  1132. */
  1133. RLM_API realm_link_t realm_object_as_link(const realm_object_t* object);
  1134. /**
  1135. * Subscribe to notifications for this object.
  1136. *
  1137. * @return A non-null pointer if no exception occurred.
  1138. */
  1139. RLM_API realm_notification_token_t* realm_object_add_notification_callback(realm_object_t*, void* userdata,
  1140. realm_free_userdata_func_t free,
  1141. realm_on_object_change_func_t on_change,
  1142. realm_callback_error_func_t on_error,
  1143. realm_scheduler_t*);
  1144. /**
  1145. * Get an object from a thread-safe reference, potentially originating in a
  1146. * different `realm_t` instance
  1147. */
  1148. RLM_API realm_object_t* realm_object_from_thread_safe_reference(const realm_t*, realm_thread_safe_reference_t*);
  1149. /**
  1150. * Get the value for a property.
  1151. *
  1152. * @return True if no exception occurred.
  1153. */
  1154. RLM_API bool realm_get_value(const realm_object_t*, realm_property_key_t, realm_value_t* out_value);
  1155. /**
  1156. * Get the values for several properties.
  1157. *
  1158. * This is provided as an alternative to calling `realm_get_value()` multiple
  1159. * times in a row, which is particularly useful for language runtimes where
  1160. * crossing the native bridge is comparatively expensive. In addition, it
  1161. * eliminates some parameter validation that would otherwise be repeated for
  1162. * each call.
  1163. *
  1164. * Example use cases:
  1165. *
  1166. * - Extracting all properties of an object for serialization.
  1167. * - Converting an object to some in-memory representation.
  1168. *
  1169. * @param num_values The number of elements in @a properties and @a out_values.
  1170. * @param properties The keys for the properties to fetch. May not be NULL.
  1171. * @param out_values Where to write the property values. If an error occurs,
  1172. * this array may only be partially initialized. May not be
  1173. * NULL.
  1174. * @return True if no exception occurs.
  1175. */
  1176. RLM_API bool realm_get_values(const realm_object_t*, size_t num_values, const realm_property_key_t* properties,
  1177. realm_value_t* out_values);
  1178. /**
  1179. * Set the value for a property.
  1180. *
  1181. * @param new_value The new value for the property.
  1182. * @param is_default True if this property is being set as part of setting the
  1183. * default values for a new object. This has no effect in
  1184. * non-sync'ed realms.
  1185. * @return True if no exception occurred.
  1186. */
  1187. RLM_API bool realm_set_value(realm_object_t*, realm_property_key_t, realm_value_t new_value, bool is_default);
  1188. /**
  1189. * Set the values for several properties.
  1190. *
  1191. * This is provided as an alternative to calling `realm_get_value()` multiple
  1192. * times in a row, which is particularly useful for language runtimes where
  1193. * crossing the native bridge is comparatively expensive. In addition, it
  1194. * eliminates some parameter validation that would otherwise be repeated for
  1195. * each call.
  1196. *
  1197. * Example use cases:
  1198. *
  1199. * - Initializing a new object with default values.
  1200. * - Deserializing some in-memory structure into a realm object.
  1201. *
  1202. * This operation is "atomic"; if an exception occurs due to invalid input (such
  1203. * as type mismatch, nullability mismatch, etc.), the object will remain
  1204. * unmodified.
  1205. *
  1206. * @param num_values The number of elements in @a properties and @a values.
  1207. * @param properties The keys of the properties to set. May not be NULL.
  1208. * @param values The values to assign to the properties. May not be NULL.
  1209. * @param is_default True if the properties are being set as part of setting
  1210. * default values for a new object. This has no effect in
  1211. * non-sync'ed realms.
  1212. * @return True if no exception occurred.
  1213. */
  1214. RLM_API bool realm_set_values(realm_object_t*, size_t num_values, const realm_property_key_t* properties,
  1215. const realm_value_t* values, bool is_default);
  1216. /**
  1217. * Get a list instance for the property of an object.
  1218. *
  1219. * Note: It is up to the caller to call `realm_release()` on the returned list.
  1220. *
  1221. * @return A non-null pointer if no exception occurred.
  1222. */
  1223. RLM_API realm_list_t* realm_get_list(realm_object_t*, realm_property_key_t);
  1224. /**
  1225. * Create a `realm_list_t` from a pointer to a `realm::List`, copy-constructing
  1226. * the internal representation.
  1227. *
  1228. * @param plist A pointer to an instance of `realm::List`.
  1229. * @param n Must be equal to `sizeof(realm::List)`.
  1230. * @return A non-null pointer if no exception occurred.
  1231. */
  1232. RLM_API realm_list_t* _realm_list_from_native_copy(const void* plist, size_t n);
  1233. /**
  1234. * Create a `realm_list_t` from a pointer to a `realm::List`, move-constructing
  1235. * the internal representation.
  1236. *
  1237. * @param plist A pointer to an instance of `realm::List`.
  1238. * @param n Must be equal to `sizeof(realm::List)`.
  1239. * @return A non-null pointer if no exception occurred.
  1240. */
  1241. RLM_API realm_list_t* _realm_list_from_native_move(void* plist, size_t n);
  1242. /**
  1243. * Get the size of a list, in number of elements.
  1244. *
  1245. * This function may fail if the object owning the list has been deleted.
  1246. *
  1247. * @param out_size Where to put the list size. May be NULL.
  1248. * @return True if no exception occurred.
  1249. */
  1250. RLM_API bool realm_list_size(const realm_list_t*, size_t* out_size);
  1251. /**
  1252. * Get the property that this list came from.
  1253. *
  1254. * @return True if no exception occurred.
  1255. */
  1256. RLM_API bool realm_list_get_property(const realm_list_t*, realm_property_info_t* out_property_info);
  1257. /**
  1258. * Get the value at @a index.
  1259. *
  1260. * @param out_value The resulting value, if no error occurred. May be NULL,
  1261. * though nonsensical.
  1262. * @return True if no exception occurred.
  1263. */
  1264. RLM_API bool realm_list_get(const realm_list_t*, size_t index, realm_value_t* out_value);
  1265. /**
  1266. * Set the value at @a index.
  1267. *
  1268. * @param value The value to set.
  1269. * @return True if no exception occurred.
  1270. */
  1271. RLM_API bool realm_list_set(realm_list_t*, size_t index, realm_value_t value);
  1272. /**
  1273. * Insert @a value at @a index.
  1274. *
  1275. * @param value The value to insert.
  1276. * @return True if no exception occurred.
  1277. */
  1278. RLM_API bool realm_list_insert(realm_list_t*, size_t index, realm_value_t value);
  1279. /**
  1280. * Erase the element at @a index.
  1281. *
  1282. * @return True if no exception occurred.
  1283. */
  1284. RLM_API bool realm_list_erase(realm_list_t*, size_t index);
  1285. /**
  1286. * Clear a list, removing all elements in the list. In a list of links, this
  1287. * does *NOT* delete the target objects.
  1288. *
  1289. * @return True if no exception occurred.
  1290. */
  1291. RLM_API bool realm_list_clear(realm_list_t*);
  1292. /**
  1293. * In a list of objects, delete all objects in the list and clear the list. In a
  1294. * list of values, clear the list.
  1295. *
  1296. * @return True if no exception occurred.
  1297. */
  1298. RLM_API bool realm_list_remove_all(realm_list_t*);
  1299. /**
  1300. * Replace the contents of a list with values.
  1301. *
  1302. * This is equivalent to calling `realm_list_clear()`, and then
  1303. * `realm_list_insert()` repeatedly.
  1304. *
  1305. * @return True if no exception occurred.
  1306. */
  1307. RLM_API bool realm_list_assign(realm_list_t*, const realm_value_t* values, size_t num_values);
  1308. /**
  1309. * Subscribe to notifications for this object.
  1310. *
  1311. * @return A non-null pointer if no exception occurred.
  1312. */
  1313. RLM_API realm_notification_token_t* realm_list_add_notification_callback(realm_list_t*, void* userdata,
  1314. realm_free_userdata_func_t free,
  1315. realm_on_collection_change_func_t on_change,
  1316. realm_callback_error_func_t on_error,
  1317. realm_scheduler_t*);
  1318. /**
  1319. * Get an list from a thread-safe reference, potentially originating in a
  1320. * different `realm_t` instance
  1321. */
  1322. RLM_API realm_list_t* realm_list_from_thread_safe_reference(const realm_t*, realm_thread_safe_reference_t*);
  1323. /**
  1324. * True if an object notification indicates that the object was deleted.
  1325. *
  1326. * This function cannot fail.
  1327. */
  1328. RLM_API bool realm_object_changes_is_deleted(const realm_object_changes_t*);
  1329. /**
  1330. * Get the number of properties that were modified in an object notification.
  1331. *
  1332. * This function cannot fail.
  1333. */
  1334. RLM_API size_t realm_object_changes_get_num_modified_properties(const realm_object_changes_t*);
  1335. /**
  1336. * Get the column keys for the properties that were modified in an object
  1337. * notification.
  1338. *
  1339. * This function cannot fail.
  1340. *
  1341. * @param out_modified Where the column keys should be written. May be NULL.
  1342. * @param max The maximum number of column keys to write.
  1343. * @return The number of column keys written to @a out_modified, or the number
  1344. * of modified properties if @a out_modified is NULL.
  1345. */
  1346. RLM_API size_t realm_object_changes_get_modified_properties(const realm_object_changes_t*,
  1347. realm_property_key_t* out_modified, size_t max);
  1348. /**
  1349. * Get the number of various types of changes in a collection notification.
  1350. *
  1351. * @param out_num_deletions The number of deletions. May be NULL.
  1352. * @param out_num_insertions The number of insertions. May be NULL.
  1353. * @param out_num_modifications The number of modifications. May be NULL.
  1354. * @param out_num_moves The number of moved elements. May be NULL.
  1355. */
  1356. RLM_API void realm_collection_changes_get_num_changes(const realm_collection_changes_t*, size_t* out_num_deletions,
  1357. size_t* out_num_insertions, size_t* out_num_modifications,
  1358. size_t* out_num_moves);
  1359. /**
  1360. * Get the number of various types of changes in a collection notification,
  1361. * suitable for acquiring the change indices as ranges, which is much more
  1362. * compact in memory than getting the individual indices when multiple adjacent
  1363. * elements have been modified.
  1364. *
  1365. * @param out_num_deletion_ranges The number of deleted ranges. May be NULL.
  1366. * @param out_num_insertion_ranges The number of inserted ranges. May be NULL.
  1367. * @param out_num_modification_ranges The number of modified ranges. May be
  1368. * NULL.
  1369. * @param out_num_moves The number of moved elements. May be NULL.
  1370. */
  1371. RLM_API void realm_collection_changes_get_num_ranges(const realm_collection_changes_t*,
  1372. size_t* out_num_deletion_ranges,
  1373. size_t* out_num_insertion_ranges,
  1374. size_t* out_num_modification_ranges, size_t* out_num_moves);
  1375. typedef struct realm_collection_move {
  1376. size_t from;
  1377. size_t to;
  1378. } realm_collection_move_t;
  1379. typedef struct realm_index_range {
  1380. size_t from;
  1381. size_t to;
  1382. } realm_index_range_t;
  1383. /**
  1384. * Get the indices of changes in a collection notification.
  1385. *
  1386. * Note: For moves, every `from` index will also be present among deletions, and
  1387. * every `to` index will also be present among insertions.
  1388. *
  1389. * This function cannot fail.
  1390. *
  1391. * @param out_deletion_indices Where to put the indices of deleted elements
  1392. * (*before* the deletion happened). May be NULL.
  1393. * @param max_deletion_indices The max number of indices to write to @a
  1394. * out_deletion_indices.
  1395. * @param out_insertion_indices Where the put the indices of inserted elements
  1396. * (*after* the insertion happened). May be NULL.
  1397. * @param max_insertion_indices The max number of indices to write to @a
  1398. * out_insertion_indices.
  1399. * @param out_modification_indices Where to put the indices of modified elements
  1400. * (*before* any insertions or deletions of
  1401. * other elements). May be NULL.
  1402. * @param max_modification_indices The max number of indices to write to @a
  1403. * out_modification_indices.
  1404. * @param out_modification_indices_after Where to put the indices of modified
  1405. * elements (*after* any insertions or
  1406. * deletions of other elements). May be
  1407. * NULL.
  1408. * @param max_modification_indices_after The max number of indices to write to
  1409. * @a out_modification_indices_after.
  1410. * @param out_moves Where to put the pairs of indices of moved elements. May be
  1411. * NULL.
  1412. * @param max_moves The max number of pairs to write to @a out_moves.
  1413. */
  1414. RLM_API void realm_collection_changes_get_changes(const realm_collection_changes_t*, size_t* out_deletion_indices,
  1415. size_t max_deletion_indices, size_t* out_insertion_indices,
  1416. size_t max_insertion_indices, size_t* out_modification_indices,
  1417. size_t max_modification_indices,
  1418. size_t* out_modification_indices_after,
  1419. size_t max_modification_indices_after,
  1420. realm_collection_move_t* out_moves, size_t max_moves);
  1421. RLM_API void realm_collection_changes_get_ranges(
  1422. const realm_collection_changes_t*, realm_index_range_t* out_deletion_ranges, size_t max_deletion_ranges,
  1423. realm_index_range_t* out_insertion_ranges, size_t max_insertion_ranges,
  1424. realm_index_range_t* out_modification_ranges, size_t max_modification_ranges,
  1425. realm_index_range_t* out_modification_ranges_after, size_t max_modification_ranges_after,
  1426. realm_collection_move_t* out_moves, size_t max_moves);
  1427. RLM_API realm_set_t* _realm_set_from_native_copy(const void* pset, size_t n);
  1428. RLM_API realm_set_t* _realm_set_from_native_move(void* pset, size_t n);
  1429. RLM_API realm_set_t* realm_get_set(const realm_object_t*, realm_property_key_t);
  1430. RLM_API size_t realm_set_size(const realm_set_t*);
  1431. RLM_API bool realm_set_get(const realm_set_t*, size_t index, realm_value_t* out_value);
  1432. RLM_API bool realm_set_find(const realm_set_t*, realm_value_t value, size_t* out_index);
  1433. RLM_API bool realm_set_insert(realm_set_t*, realm_value_t value, size_t out_index);
  1434. RLM_API bool realm_set_erase(realm_set_t*, realm_value_t value, bool* out_erased);
  1435. RLM_API bool realm_set_clear(realm_set_t*);
  1436. RLM_API bool realm_set_assign(realm_set_t*, realm_value_t values, size_t num_values);
  1437. RLM_API realm_notification_token_t* realm_set_add_notification_callback(realm_object_t*, void* userdata,
  1438. realm_free_userdata_func_t free,
  1439. realm_on_collection_change_func_t on_change,
  1440. realm_callback_error_func_t on_error,
  1441. realm_scheduler_t*);
  1442. RLM_API realm_dictionary_t* _realm_dictionary_from_native_copy(const void* pdict, size_t n);
  1443. RLM_API realm_dictionary_t* _realm_dictionary_from_native_move(void* pdict, size_t n);
  1444. RLM_API realm_dictionary_t* realm_get_dictionary(const realm_object_t*, realm_property_key_t);
  1445. RLM_API size_t realm_dictionary_size(const realm_dictionary_t*);
  1446. RLM_API bool realm_dictionary_get(const realm_dictionary_t*, realm_value_t key, realm_value_t* out_value,
  1447. bool* out_found);
  1448. RLM_API bool realm_dictionary_insert(realm_dictionary_t*, realm_value_t key, realm_value_t value, bool* out_inserted,
  1449. size_t* out_index);
  1450. RLM_API bool realm_dictionary_erase(realm_dictionary_t*, realm_value_t key, bool* out_erased);
  1451. RLM_API bool realm_dictionary_clear(realm_dictionary_t*);
  1452. typedef realm_value_t realm_key_value_pair_t[2];
  1453. RLM_API bool realm_dictionary_assign(realm_dictionary_t*, const realm_key_value_pair_t* pairs, size_t num_pairs);
  1454. RLM_API realm_notification_token_t*
  1455. realm_dictionary_add_notification_callback(realm_object_t*, void* userdata, realm_free_userdata_func_t free,
  1456. realm_on_collection_change_func_t on_change,
  1457. realm_callback_error_func_t on_error, realm_scheduler_t*);
  1458. /**
  1459. * Parse a query string and bind it to a table.
  1460. *
  1461. * If the query failed to parse, the parser error is available from
  1462. * `realm_get_last_error()`.
  1463. *
  1464. * @param target_table The table on which to run this query.
  1465. * @param query_string A zero-terminated string in the Realm Query Language,
  1466. * optionally containing argument placeholders (`$0`, `$1`,
  1467. * etc.).
  1468. * @param num_args The number of arguments for this query.
  1469. * @param args A pointer to a list of argument values.
  1470. * @return A non-null pointer if the query was successfully parsed and no
  1471. * exception occurred.
  1472. */
  1473. RLM_API realm_query_t* realm_query_parse(const realm_t*, realm_class_key_t target_table, const char* query_string,
  1474. size_t num_args, const realm_value_t* args);
  1475. /**
  1476. * Parse a query string and bind it to a list.
  1477. *
  1478. * If the query failed to parse, the parser error is available from
  1479. * `realm_get_last_error()`.
  1480. *
  1481. * @param target_list The list on which to run this query.
  1482. * @param query_string A string in the Realm Query Language, optionally
  1483. * containing argument placeholders (`$0`, `$1`, etc.).
  1484. * @param num_args The number of arguments for this query.
  1485. * @param args A pointer to a list of argument values.
  1486. * @return A non-null pointer if the query was successfully parsed and no
  1487. * exception occurred.
  1488. */
  1489. RLM_API realm_query_t* realm_query_parse_for_list(const realm_list_t* target_list, const char* query_string,
  1490. size_t num_args, const realm_value_t* args);
  1491. /**
  1492. * Parse a query string and bind it to another query result.
  1493. *
  1494. * If the query failed to parse, the parser error is available from
  1495. * `realm_get_last_error()`.
  1496. *
  1497. * @param target_results The results on which to run this query.
  1498. * @param query_string A zero-terminated string in the Realm Query Language,
  1499. * optionally containing argument placeholders (`$0`, `$1`,
  1500. * etc.).
  1501. * @param num_args The number of arguments for this query.
  1502. * @param args A pointer to a list of argument values.
  1503. * @return A non-null pointer if the query was successfully parsed and no
  1504. * exception occurred.
  1505. */
  1506. RLM_API realm_query_t* realm_query_parse_for_results(const realm_results_t* target_results, const char* query_string,
  1507. size_t num_args, const realm_value_t* args);
  1508. /**
  1509. * Count the number of objects found by this query.
  1510. */
  1511. RLM_API bool realm_query_count(const realm_query_t*, size_t* out_count);
  1512. /**
  1513. * Return the first object matched by this query.
  1514. *
  1515. * Note: This function can only produce objects, not values. Use the
  1516. * `realm_results_t` returned by `realm_query_find_all()` to retrieve
  1517. * values from a list of primitive values.
  1518. *
  1519. * @param out_value Where to write the result, if any object matched the query.
  1520. * May be NULL.
  1521. * @param out_found Where to write whether the object was found. May be NULL.
  1522. * @return True if no exception occurred.
  1523. */
  1524. RLM_API bool realm_query_find_first(realm_query_t*, realm_value_t* out_value, bool* out_found);
  1525. /**
  1526. * Produce a results object for this query.
  1527. *
  1528. * Note: This does not actually run the query until the results are accessed in
  1529. * some way.
  1530. *
  1531. * @return A non-null pointer if no exception occurred.
  1532. */
  1533. RLM_API realm_results_t* realm_query_find_all(realm_query_t*);
  1534. /**
  1535. * Delete all objects matched by a query.
  1536. */
  1537. RLM_API bool realm_query_delete_all(const realm_query_t*);
  1538. /**
  1539. * Count the number of results.
  1540. *
  1541. * If the result is "live" (not a snapshot), this may rerun the query if things
  1542. * have changed.
  1543. *
  1544. * @return True if no exception occurred.
  1545. */
  1546. RLM_API bool realm_results_count(realm_results_t*, size_t* out_count);
  1547. /**
  1548. * Get the matching element at @a index in the results.
  1549. *
  1550. * If the result is "live" (not a snapshot), this may rerun the query if things
  1551. * have changed.
  1552. *
  1553. * Note: The bound returned by `realm_results_count()` for a non-snapshot result
  1554. * is not a reliable way to iterate over elements in the result, because
  1555. * the result will be live-updated if changes are made in each iteration
  1556. * that may change the number of query results or even change the
  1557. * ordering. In other words, this method should probably only be used with
  1558. * snapshot results.
  1559. *
  1560. * @return True if no exception occurred (including out-of-bounds).
  1561. */
  1562. RLM_API bool realm_results_get(realm_results_t*, size_t index, realm_value_t* out_value);
  1563. /**
  1564. * Get the matching object at @a index in the results.
  1565. *
  1566. * If the result is "live" (not a snapshot), this may rerun the query if things
  1567. * have changed.
  1568. *
  1569. * Note: The bound returned by `realm_results_count()` for a non-snapshot result
  1570. * is not a reliable way to iterate over elements in the result, because
  1571. * the result will be live-updated if changes are made in each iteration
  1572. * that may change the number of query results or even change the
  1573. * ordering. In other words, this method should probably only be used with
  1574. * snapshot results.
  1575. *
  1576. * @return An instance of `realm_object_t` if no exception occurred.
  1577. */
  1578. RLM_API realm_object_t* realm_results_get_object(realm_results_t*, size_t index);
  1579. /**
  1580. * Delete all objects in the result.
  1581. *
  1582. * If the result if "live" (not a snapshot), this may rerun the query if things
  1583. * have changed.
  1584. *
  1585. * @return True if no exception occurred.
  1586. */
  1587. RLM_API bool realm_results_delete_all(realm_results_t*);
  1588. /**
  1589. * Return a snapshot of the results that never automatically updates.
  1590. *
  1591. * The returned result is suitable for use with `realm_results_count()` +
  1592. * `realm_results_get()`.
  1593. */
  1594. RLM_API realm_results_t* realm_results_snapshot(const realm_results_t*);
  1595. /**
  1596. * Map the results into a frozen realm instance.
  1597. */
  1598. RLM_API realm_results_t* realm_results_freeze(const realm_results_t*, const realm_t* frozen_realm);
  1599. /**
  1600. * Compute the minimum value of a property in the results.
  1601. *
  1602. * @param out_min Where to write the result, if there were matching rows.
  1603. * @param out_found Set to true if there are matching rows.
  1604. * @return True if no exception occurred.
  1605. */
  1606. RLM_API bool realm_results_min(realm_results_t*, realm_property_key_t, realm_value_t* out_min, bool* out_found);
  1607. /**
  1608. * Compute the maximum value of a property in the results.
  1609. *
  1610. * @param out_max Where to write the result, if there were matching rows.
  1611. * @param out_found Set to true if there are matching rows.
  1612. * @return True if no exception occurred.
  1613. */
  1614. RLM_API bool realm_results_max(realm_results_t*, realm_property_key_t, realm_value_t* out_max, bool* out_found);
  1615. /**
  1616. * Compute the sum value of a property in the results.
  1617. *
  1618. * @param out_sum Where to write the result. Zero if no rows matched.
  1619. * @param out_found Set to true if there are matching rows.
  1620. * @return True if no exception occurred.
  1621. */
  1622. RLM_API bool realm_results_sum(realm_results_t*, realm_property_key_t, realm_value_t* out_sum, bool* out_found);
  1623. /**
  1624. * Compute the average value of a property in the results.
  1625. *
  1626. * Note: For numeric columns, the average is always converted to double.
  1627. *
  1628. * @param out_average Where to write the result.
  1629. * @param out_found Set to true if there are matching rows.
  1630. * @return True if no exception occurred.
  1631. */
  1632. RLM_API bool realm_results_average(realm_results_t*, realm_property_key_t, realm_value_t* out_average,
  1633. bool* out_found);
  1634. RLM_API realm_notification_token_t* realm_results_add_notification_callback(realm_results_t*, void* userdata,
  1635. realm_free_userdata_func_t,
  1636. realm_on_collection_change_func_t,
  1637. realm_callback_error_func_t,
  1638. realm_scheduler_t*);
  1639. /**
  1640. * Get an results object from a thread-safe reference, potentially originating
  1641. * in a different `realm_t` instance
  1642. */
  1643. RLM_API realm_results_t* realm_results_from_thread_safe_reference(const realm_t*, realm_thread_safe_reference_t*);
  1644. #endif // REALM_H