|
OBX_C_API void | obx_version (int *major, int *minor, int *patch) |
| Return the (runtime) version of the library as ints. Pointers may be null.
|
|
OBX_C_API bool | obx_version_is_at_least (int major, int minor, int patch) |
| Check if the (runtime) version of the library is equal to or higher than the given version ints.
|
|
OBX_C_API const char * | obx_version_string (void) |
| Return the (runtime) version of the library to be printed. The current format is "major.minor.patch" (e.g. "1.0.0") but may change in any future release. Thus, only use for information purposes.
|
|
OBX_C_API const char * | obx_version_core_string (void) |
| Return the version of the ObjectBox core to be printed (currently also contains a version date and features). The format may change in any future release; only use for information purposes.
|
|
OBX_C_API bool | obx_has_feature (OBXFeature feature) |
| Checks whether the given feature is available in the currently loaded library.
|
|
OBX_C_API obx_err | obx_remove_db_files (char const *directory) |
| Delete the store files from the given directory.
|
|
OBX_C_API size_t | obx_db_file_size (char const *directory) |
|
OBX_C_API obx_err | obx_debug_log (bool enabled) |
| Enable (or disable) debug logging for ObjectBox internals. This requires a version of the library with the DebugLog feature. You can check if the feature is available with obx_has_feature(OBXFeature_DebugLog).
|
|
OBX_C_API bool | obx_debug_log_enabled () |
| Checks if debug logs are enabled for ObjectBox internals. This depends on the availability of the DebugLog feature. If the feature is available, it returns the current state, which is adjustable via obx_debug_log(). Otherwise, it always returns false for standard release builds (or true if you are having a special debug version).
|
|
OBX_C_API int | obx_thread_number () |
| Gets the number, as used by ObjectBox, of the current thread. This e.g. allows to "associate" the thread with ObjectBox logs (each log entry contains the thread number).
|
|
OBX_C_API bool | obx_last_error_pop (obx_err *out_error, const char **out_message) |
| Return the error status on the current thread and clear the error state. The buffer returned in out_message is valid only until the next call into ObjectBox.
|
|
OBX_C_API obx_err | obx_last_error_code (void) |
| The last error raised by an ObjectBox API call on the current thread, or OBX_SUCCESS if no error occurred yet. Note that API calls do not clear this error code (also true for this method). Thus, if you receive an error from this, it's usually a good idea to call obx_last_error_clear() to clear the error state (or use obx_last_error_pop()) for future API calls.
|
|
OBX_C_API const char * | obx_last_error_message (void) |
| The error message string attached to the error returned by obx_last_error_code(). Like obx_last_error_code(), this is bound to the current thread, and this call does not clear the error state. The buffer returned is valid only until the next call into ObjectBox.
|
|
OBX_C_API obx_err | obx_last_error_secondary (void) |
| The underlying error for the error returned by obx_last_error_code(). Where obx_last_error_code() may be a generic error like OBX_ERROR_STORAGE_GENERAL, this will give a further underlying and possibly platform-specific error code.
|
|
OBX_C_API void | obx_last_error_clear (void) |
| Clear the error state on the current thread; e.g. obx_last_error_code() will now return OBX_SUCCESS. Note that clearing the error state does not happen automatically; API calls set the error state when they produce an error, but do not clear it on success. See also: obx_last_error_pop() to retrieve the error state and clear it.
|
|
OBX_C_API bool | obx_last_error_set (obx_err code, obx_err secondary, const char *message) |
| Set the last error code and test - reserved for internal use from generated code.
|
|
OBX_C_API float | obx_vector_distance_float32 (OBXVectorDistanceType type, const float *vector1, const float *vector2, size_t dimension) |
| Utility function to calculate the distance of two given vectors. Note: the memory of the two vectors may not overlap!
|
|
OBX_C_API float | obx_vector_distance_to_relevance (OBXVectorDistanceType type, float distance) |
| Utility function to convert a vector distance (e.g. scores from query results) to a relevance score. The relevance score is a value between 0.0 and 1.0, with 1.0 indicating the most relevant. Note: the higher a distance (score), the lower the relevance score. Note: while the distance (score) is potentially unbound (e.g. Euclidean and dot product) and dependent on the type, relevance score always has fixed range (0.0 to 1.0).
|
|
OBX_C_API OBX_model * | obx_model (void) |
| Create an (empty) data meta model which is to be consumed by obx_opt_model().
|
|
OBX_C_API obx_err | obx_model_free (OBX_model *model) |
| Only call when not calling obx_store_open() (which will free it internally)
|
|
OBX_C_API obx_err | obx_model_error_code (OBX_model *model) |
| To minimise the amount of error handling code required when building a model, the first error is stored and can be obtained here. All the obx_model_XXX functions are null operations after the first model error has occurred.
|
|
OBX_C_API const char * | obx_model_error_message (OBX_model *model) |
| To minimise the amount of error handling code required when building a model, the first error is stored and can be obtained here. All the obx_model_XXX functions are null operations after the first model error has occurred.
|
|
OBX_C_API obx_err | obx_model_entity (OBX_model *model, const char *name, obx_schema_id entity_id, obx_uid entity_uid) |
| Starts the definition of a new entity type for the meta data model. After this, call obx_model_property() to add properties to the entity type.
|
|
OBX_C_API obx_err | obx_model_entity_flags (OBX_model *model, uint32_t flags) |
| Refine the definition of the entity declared by the most recent obx_model_entity() call, specifying flags.
|
|
OBX_C_API obx_err | obx_model_entity_last_property_id (OBX_model *model, obx_schema_id property_id, obx_uid property_uid) |
| Set the highest ever known property id in the entity. Should always be equal to or higher than the last property id of the previous version of the entity.
|
|
OBX_C_API obx_err | obx_model_entity_external_name (OBX_model *model, const char *external_name) |
| Refine the definition of the entity declared by the most recent obx_model_entity() call: set the external name. This is an optional name used in an external system, e.g. another database that ObjectBox syncs with.
|
|
OBX_C_API obx_err | obx_model_property (OBX_model *model, const char *name, OBXPropertyType type, obx_schema_id property_id, obx_uid property_uid) |
| Starts the definition of a new property for the entity type of the last obx_model_entity() call.
|
|
OBX_C_API obx_err | obx_model_property_flags (OBX_model *model, uint32_t flags) |
| Refine the definition of the property declared by the most recent obx_model_property() call, specifying flags.
|
|
OBX_C_API obx_err | obx_model_property_relation (OBX_model *model, const char *target_entity, obx_schema_id index_id, obx_uid index_uid) |
| Refine the definition of the property declared by the most recent obx_model_property() call, declaring it a relation.
|
|
OBX_C_API obx_err | obx_model_property_index_id (OBX_model *model, obx_schema_id index_id, obx_uid index_uid) |
| Refine the definition of the property declared by the most recent obx_model_property() call, adding an index.
|
|
OBX_C_API obx_err | obx_model_property_external_name (OBX_model *model, const char *external_name) |
| Refine the definition of the property declared by the most recent obx_model_property() call: set the external name. This is an optional name used in an external system, e.g. another database that ObjectBox syncs with.
|
|
OBX_C_API obx_err | obx_model_property_external_type (OBX_model *model, OBXExternalPropertyType external_type) |
| Refine the definition of the property declared by the most recent obx_model_property() call: set the external type. This is an optional type used in an external system, e.g. another database that ObjectBox syncs with. Note that the supported mappings from ObjectBox types to external types are limited.
|
|
OBX_C_API obx_err | obx_model_property_index_hnsw_dimensions (OBX_model *model, size_t value) |
| Sets the vector dimensionality for the HNSW index of the latest property (must be of a supported vector type). This a mandatory option for all HNSW indexes. Note 1: vectors with higher dimensions than this value are also indexed (ignoring the higher elements). Note 2: vectors with lower dimensions than this value are completely ignored for indexing.
|
|
OBX_C_API obx_err | obx_model_property_index_hnsw_neighbors_per_node (OBX_model *model, uint32_t value) |
| Sets the max number of neighbors per node (aka "M") for the HNSW index of the latest property. Higher number increases the graph connectivity which can lead to better results, but higher resources usage. If no value is set, a default value taken (currently 30). Try e.g. 16 for faster but less accurate results, or 64 for more accurate results.
|
|
OBX_C_API obx_err | obx_model_property_index_hnsw_indexing_search_count (OBX_model *model, uint32_t value) |
| Sets the max number of neighbors searched while indexing (aka "efConstruction") for the HNSW index of the latest property. If no value is set, a default value taken (currently 100, which can change in future version). The default value serves as a starting point that can likely be optimized for specific datasets and use cases. The higher the value, the more accurate the search, but the longer the indexing will take. If indexing time is not a major concern, a value of at least 200 is recommended to improve search quality.
|
|
OBX_C_API obx_err | obx_model_property_index_hnsw_flags (OBX_model *model, uint32_t flags) |
| Sets flags for the HNSW index of the latest property. For details see OBXHnswFlags and its individual values.
|
|
OBX_C_API obx_err | obx_model_property_index_hnsw_distance_type (OBX_model *model, OBXVectorDistanceType value) |
| Sets the distance type for the HNSW index of the latest property.
|
|
OBX_C_API obx_err | obx_model_property_index_hnsw_reparation_backlink_probability (OBX_model *model, float value) |
| Sets the reparation backlink probability, for the HNSW index of the latest property. When repairing the graph after a node was removed, this gives the probability of adding backlinks to the repaired neighbors. The default is 1.0 (aka "always") as this should be worth a bit of extra costs as it improves the graph's quality.
|
|
OBX_C_API obx_err | obx_model_property_index_hnsw_vector_cache_hint_size_kb (OBX_model *model, size_t value) |
| Sets the vector cache hint size for the HNSW index of the latest property. This is a non-binding hint of the maximum size of the vector cache in KB (default: 2097152 or 2 GB/GiB).
|
|
OBX_C_API obx_err | obx_model_relation (OBX_model *model, obx_schema_id relation_id, obx_uid relation_uid, obx_schema_id target_id, obx_uid target_uid) |
| Add a standalone relation between the active entity and the target entity to the model.
|
|
OBX_C_API obx_err | obx_model_relation_name (OBX_model *model, const char *name) |
| Augments the previously defined relation with a name.
|
|
OBX_C_API obx_err | obx_model_relation_external_name (OBX_model *model, const char *external_name) |
| Augments the previously defined relation with an external name (used outside of ObjectBox)
|
|
OBX_C_API obx_err | obx_model_relation_external_type (OBX_model *model, OBXExternalPropertyType external_type) |
| Augments the previously defined relation with an external type (used outside of ObjectBox)
|
|
OBX_C_API void | obx_model_last_entity_id (OBX_model *, obx_schema_id entity_id, obx_uid entity_uid) |
| Set the highest ever known entity id in the model. Should always be equal to or higher than the last entity id of the previous version of the model.
|
|
OBX_C_API void | obx_model_last_index_id (OBX_model *model, obx_schema_id index_id, obx_uid index_uid) |
| Set the highest ever known index id in the model. Should always be equal to or higher than the last index id of the previous version of the model.
|
|
OBX_C_API void | obx_model_last_relation_id (OBX_model *model, obx_schema_id relation_id, obx_uid relation_uid) |
| Set the highest every known relation id in the model. Should always be equal to or higher than the last relation id of the previous version of the model.
|
|
OBX_C_API obx_err | obx_bytes_lazy_get (OBX_bytes_lazy *bytes, const void **out_bytes, size_t *out_size) |
| Get the actual bytes from the given OBX_bytes_lazy. Because of the potential lazy creation of bytes, the given bytes are not const as it may be resolved internally. For the same reason, this function is not thread-safe, at least for the first call on a OBX_bytes_lazy instance.
|
|
OBX_C_API void | obx_bytes_lazy_free (OBX_bytes_lazy *bytes) |
| Releases any resources associated with the given OBX_bytes_lazy.
|
|
OBX_C_API OBX_store_options * | obx_opt () |
| Create a default set of store options.
|
|
OBX_C_API obx_err | obx_opt_directory (OBX_store_options *opt, const char *dir) |
| Set the store directory on the options. The default is "objectbox". Use prefix "memory:" to open an in-memory database, e.g. "memory:myApp" (see docs for details).
|
|
OBX_C_API void | obx_opt_max_db_size_in_kb (OBX_store_options *opt, uint64_t size_in_kb) |
| Set the maximum db size on the options. The default is 1Gb.
|
|
OBX_C_API void | obx_opt_max_data_size_in_kb (OBX_store_options *opt, uint64_t size_in_kb) |
| Data size tracking is more involved than DB size tracking, e.g. it stores an internal counter. Thus only use it if a stricter, more accurate limit is required (it's off by default). It tracks the size of actual data bytes of objects (system and metadata is not considered). On the upside, reaching the data limit still allows data to be removed (assuming DB limit is not reached). Max data and DB sizes can be combined; data size must be below the DB size.
|
|
OBX_C_API void | obx_opt_file_mode (OBX_store_options *opt, unsigned int file_mode) |
| Set the file mode on the options. The default is 0644 (unix-style).
|
|
OBX_C_API void | obx_opt_max_readers (OBX_store_options *opt, unsigned int max_readers) |
| Set the maximum number of readers (related to read transactions) on the given options. "Readers" are an finite resource for which we need to define a maximum number upfront. The default value is enough for most apps and usually you can ignore it completely. However, if you get the OBX_ERROR_MAX_READERS_EXCEEDED error, you should verify your threading. For each thread, ObjectBox uses multiple readers. Their number (per thread) depends on number of types, relations, and usage patterns. Thus, if you are working with many threads (e.g. in a server-like scenario), it can make sense to increase the maximum number of readers.
|
|
OBX_C_API void | obx_opt_no_reader_thread_locals (OBX_store_options *opt, bool flag) |
| Disables the usage of thread locals for "readers" related to read transactions. This can make sense if you are using a lot of threads that are kept alive.
|
|
OBX_C_API obx_err | obx_opt_model (OBX_store_options *opt, OBX_model *model) |
| Set the model on the options. The default is no model. NOTE: the model is always freed by this function, including when an error occurs.
|
|
OBX_C_API obx_err | obx_opt_model_bytes (OBX_store_options *opt, const void *bytes, size_t size) |
| Set the model on the options copying the given bytes. The default is no model.
|
|
OBX_C_API obx_err | obx_opt_model_bytes_direct (OBX_store_options *opt, const void *bytes, size_t size) |
| Like obx_opt_model_bytes BUT WITHOUT copying the given bytes. Thus, you must keep the bytes available until after the store is created.
|
|
OBX_C_API void | obx_opt_validate_on_open_pages (OBX_store_options *opt, size_t page_limit, uint32_t flags) |
| When the DB is opened initially, ObjectBox can do a consistency check on the given amount of pages. Reliable file systems already guarantee consistency, so this is primarily meant to deal with unreliable OSes, file systems, or hardware. Thus, usually a low number (e.g. 1-20) is sufficient and does not impact startup performance significantly. To completely disable this you can pass 0, but we recommend a setting of at least 1. Note: ObjectBox builds upon ACID storage, which guarantees consistency given that the file system is working correctly (in particular fsync).
|
|
OBX_C_API void | obx_opt_validate_on_open_kv (OBX_store_options *opt, uint32_t flags) |
| When the DB is opened initially, ObjectBox can do a validation over the key/value pairs to check, for example, whether they're consistent towards our internal specification.
|
|
OBX_C_API void | obx_opt_put_padding_mode (OBX_store_options *opt, OBXPutPaddingMode mode) |
| Don't touch unless you know exactly what you are doing: Advanced setting typically meant for language bindings (not end users). See OBXPutPaddingMode description.
|
|
OBX_C_API void | obx_opt_read_schema (OBX_store_options *opt, bool value) |
| Advanced setting meant only for special scenarios: setting to false causes opening the database in a limited, schema-less mode. If you don't know what this means exactly: ignore this flag. Defaults to true.
|
|
OBX_C_API void | obx_opt_use_previous_commit (OBX_store_options *opt, bool value) |
| Advanced setting recommended to be used together with read-only mode to ensure no data is lost. Ignores the latest data snapshot (committed transaction state) and uses the previous snapshot instead. When used with care (e.g. backup the DB files first), this option may also recover data removed by the latest transaction. Defaults to false.
|
|
OBX_C_API void | obx_opt_read_only (OBX_store_options *opt, bool value) |
| Open store in read-only mode: no schema update, no write transactions. Defaults to false.
|
|
OBX_C_API void | obx_opt_debug_flags (OBX_store_options *opt, uint32_t flags) |
| Configure debug flags (OBXDebugFlags); e.g. to influence logging. Defaults to NONE. Combine multiple flags using bitwise OR.
|
|
OBX_C_API void | obx_opt_add_debug_flags (OBX_store_options *opt, uint32_t flags) |
| Adds debug flags (OBXDebugFlags) to potentially existing ones. Combine multiple flags using bitwise OR.
|
|
OBX_C_API void | obx_opt_async_max_queue_length (OBX_store_options *opt, size_t value) |
| Maximum of async elements in the queue before new elements will be rejected. Hitting this limit usually hints that async processing cannot keep up; data is produced at a faster rate than it can be persisted in the background. In that case, increasing this value is not the only alternative; other values might also optimize throughput. For example, increasing maxInTxDurationMicros may help too.
|
|
OBX_C_API void | obx_opt_async_throttle_at_queue_length (OBX_store_options *opt, size_t value) |
| Producers (AsyncTx submitter) is throttled when the queue size hits this.
|
|
OBX_C_API void | obx_opt_async_throttle_micros (OBX_store_options *opt, uint32_t value) |
| Sleeping time for throttled producers on each submission.
|
|
OBX_C_API void | obx_opt_async_max_in_tx_duration (OBX_store_options *opt, uint32_t micros) |
| Maximum duration spent in a transaction before AsyncQ enforces a commit. This becomes relevant if the queue is constantly populated at a high rate.
|
|
OBX_C_API void | obx_opt_async_max_in_tx_operations (OBX_store_options *opt, uint32_t value) |
| Maximum operations performed in a transaction before AsyncQ enforces a commit. This becomes relevant if the queue is constantly populated at a high rate.
|
|
OBX_C_API void | obx_opt_async_pre_txn_delay (OBX_store_options *opt, uint32_t delay_micros) |
| Before the AsyncQ is triggered by a new element in queue to starts a new run, it delays actually starting the transaction by this value. This gives a newly starting producer some time to produce more than one a single operation before AsyncQ starts. Note: this value should typically be low to keep latency low and prevent accumulating too much operations.
|
|
OBX_C_API void | obx_opt_async_pre_txn_delay4 (OBX_store_options *opt, uint32_t delay_micros, uint32_t delay2_micros, size_t min_queue_length_for_delay2) |
| Before the AsyncQ is triggered by a new element in queue to starts a new run, it delays actually starting the transaction by this value. This gives a newly starting producer some time to produce more than one a single operation before AsyncQ starts. Note: this value should typically be low to keep latency low and prevent accumulating too much operations.
|
|
OBX_C_API void | obx_opt_async_post_txn_delay (OBX_store_options *opt, uint32_t delay_micros) |
| Similar to preTxDelay but after a transaction was committed. One of the purposes is to give other transactions some time to execute. In combination with preTxDelay this can prolong non-TX batching time if only a few operations are around.
|
|
OBX_C_API void | obx_opt_async_post_txn_delay5 (OBX_store_options *opt, uint32_t delay_micros, uint32_t delay2_micros, size_t min_queue_length_for_delay2, bool subtract_processing_time) |
| Similar to preTxDelay but after a transaction was committed. One of the purposes is to give other transactions some time to execute. In combination with preTxDelay this can prolong non-TX batching time if only a few operations are around.
|
|
OBX_C_API void | obx_opt_async_minor_refill_threshold (OBX_store_options *opt, size_t queue_length) |
| Numbers of operations below this value are considered "minor refills".
|
|
OBX_C_API void | obx_opt_async_minor_refill_max_count (OBX_store_options *opt, uint32_t value) |
| If non-zero, this allows "minor refills" with small batches that came in (off by default).
|
|
OBX_C_API void | obx_opt_async_max_tx_pool_size (OBX_store_options *opt, size_t value) |
| Default value: 10000, set to 0 to deactivate pooling.
|
|
OBX_C_API void | obx_opt_async_object_bytes_max_cache_size (OBX_store_options *opt, uint64_t value) |
| Total cache size; default: ~ 0.5 MB.
|
|
OBX_C_API void | obx_opt_async_object_bytes_max_size_to_cache (OBX_store_options *opt, uint64_t value) |
| Maximal size for an object to be cached (only cache smaller ones)
|
|
OBX_C_API void | obx_opt_log_callback (OBX_store_options *opt, obx_log_callback *callback, void *user_data) |
| Registers a log callback, which is called for a selection of log events. Note: this does not replace the default logging, which is much more extensive (at least at this point).
|
|
OBX_C_API void | obx_opt_backup_restore (OBX_store_options *opt, const char *backup_file, uint32_t flags) |
| Before opening the database, this options instructs to restore the database content from the given backup file. Note: backup is a server-only feature. By default, actually restoring the backup is only performed if no database already exists (database does not contain data).
|
|
OBX_C_API void | obx_opt_wal (OBX_store_options *opt, uint32_t flags) |
| Enables Write-ahead logging (WAL) if OBXWalFlags_EnableWal is given. For now this is only supported for in-memory DBs.
|
|
OBX_C_API void | obx_opt_wal_max_file_size_on_open_in_kb (OBX_store_options *opt, uint64_t size_in_kb) |
| The WAL file gets consolidated when it reached this size limit when opening the database. This setting is meant for applications that prefer to consolidate on startup, which may avoid consolidations on commits while the application is running. The default is 4096 (4 MB).
|
|
OBX_C_API void | obx_opt_wal_max_file_size_in_kb (OBX_store_options *opt, uint64_t size_in_kb) |
| The WAL file gets consolidated when it reaches this size limit after a commit. As consolidation takes some time, it is a trade-off between accumulating enough data and the time the consolidation takes (longer with more data). The default is 16384 (16 MB).
|
|
OBX_C_API const char * | obx_opt_get_directory (OBX_store_options *opt) |
| Gets the option for "directory"; this is either the default, or, the value set by obx_opt_directory(). The returned value must not be modified and is only valid for the lifetime of the options or until the value is changed.
|
|
OBX_C_API uint64_t | obx_opt_get_max_db_size_in_kb (OBX_store_options *opt) |
| Gets the option for "max DB size"; this is either the default, or, the value set by obx_opt_max_db_size_in_kb().
|
|
OBX_C_API uint64_t | obx_opt_get_max_data_size_in_kb (OBX_store_options *opt) |
| Gets the option for "max data size"; this is either the default, or, the value set by obx_opt_max_data_size_in_kb().
|
|
OBX_C_API uint32_t | obx_opt_get_debug_flags (OBX_store_options *opt) |
| Gets the option for "debug flags"; this is either the default, or, the value set by obx_opt_debug_flags().
|
|
OBX_C_API void | obx_opt_free (OBX_store_options *opt) |
| Free the options. Note: Only free unused options, obx_store_open() frees the options internally.
|
|
OBX_C_API OBX_store * | obx_store_open (OBX_store_options *opt) |
| Opens (creates) a "store", which represents an ObjectBox database instance in a given directory. The store is an entry point to data access APIs such as box (obx_box_*), query (obx_qb_* and obx_query_*), and transaction (obx_txn_*). It's possible to open multiple stores in different directories, e.g. at the same time. See also obx_store_close() to close a previously opened store. Note: the given options are always freed by this function, including when an error occurs.
|
|
OBX_C_API bool | obx_store_is_open (const char *path) |
| Check if an open store was found for the given path (i.e. opened before and not yet closed).
|
|
OBX_C_API OBX_store * | obx_store_attach (const char *path) |
| Attach to a previously opened store matching the path of the DB directory, which was used for opening the store. The returned store is a new instance (e.g. different pointer value) and must also be closed via obx_store_close(). The actual underlying store is only closed when the last store OBX_store instance is closed.
|
|
OBX_C_API OBX_store * | obx_store_attach_id (uint64_t store_id) |
| Attach to a previously opened store matching the given store ID. The returned store is a new instance (e.g. different pointer value) and must also be closed via obx_store_close(). The actual underlying store is only closed when the last store OBX_store instance is closed.
|
|
OBX_C_API OBX_store * | obx_store_attach_or_open (OBX_store_options *opt, bool check_matching_options, bool *out_attached) |
| Combines the functionality of obx_store_attach() and obx_store_open() in a thread-safe way.
|
|
OBX_C_API uint64_t | obx_store_id (OBX_store *store) |
| Store IDs can be used to attach to a store later. The IDs are stable and unique during the lifetime of the process. E.g. these IDs can be shared across threads efficiently and can serve a similar purpose as weak pointers do.
|
|
OBX_C_API uint64_t | obx_store_size (OBX_store *store) |
| Get the size of the store. For a disk-based store type, this corresponds to the size on disk, and for the in-memory store type, this is roughly the used memory bytes occupied by the data.
|
|
OBX_C_API uint64_t | obx_store_size_on_disk (OBX_store *store) |
| The size in bytes occupied by the database on disk (if any).
|
|
OBX_C_API uint32_t | obx_store_type_id (OBX_store *store) |
| Gives the store type ID for the given store.
|
|
OBX_C_API OBX_store * | obx_store_clone (OBX_store *store) |
| Clone a previously opened store; while a store instance is usable from multiple threads, situations may exist in which cloning a store simplifies the overall lifecycle. E.g. when a store is used for multiple threads and it may only be fully released once the last thread completes. The returned store is a new instance (e.g. different pointer value) and must also be closed via obx_store_close(). The actual underlying store is only closed when the last store OBX_store instance is closed.
|
|
OBX_C_API OBX_store * | obx_store_wrap (void *core_store) |
| For stores created outside of this C API, e.g. via C++ or Java, this is how you can use it via C too. Like this, it is OK to use the same store instance (same database) from multiple languages in parallel. Note: the store's life time will still be managed outside of the C API; thus ensure that store is not closed while calling any C function on it. Once you are done with the C specific OBX_store, call obx_store_close() to free any C related resources. This, however, will not close the "core store".
|
|
OBX_C_API obx_schema_id | obx_store_entity_id (OBX_store *store, const char *entity_name) |
| Look for an entity with the given name in the model and return its Entity ID.
|
|
OBX_C_API obx_schema_id | obx_store_entity_property_id (OBX_store *store, obx_schema_id entity_id, const char *property_name) |
| Return the property id from the property name or 0 if the name is not found.
|
|
OBX_C_API bool | obx_store_await_async_completion (OBX_store *store) |
| Await for all (including future) async submissions to be completed (the async queue becomes empty).
|
|
OBX_C_API bool | obx_store_await_async_submitted (OBX_store *store) |
| Await async operations that have been submitted up to this point to be completed (the async queue may still contain elements).
|
|
OBX_C_API obx_err | obx_store_back_up_to_file (OBX_store *store, const char *backup_file, uint32_t backup_flags) |
| Backs up the store DB to the given backup-file, using the given flags. Note: backup is a server-only feature.
|
|
OBX_C_API obx_err | obx_store_debug_flags (OBX_store *store, uint32_t flags) |
| Configure debug logging.
|
|
OBX_C_API bool | obx_store_opened_with_previous_commit (OBX_store *store) |
|
OBX_C_API obx_err | obx_store_prepare_to_close (OBX_store *store) |
| Prepares the store to close by setting its internal state to "closing". Functions relying on the store will result in OBX_ERROR_SHUTTING_DOWN status once closing is initiated. Unlike obx_store_close(), this method will return immediately and does not free resources just yet. This is typically used in a multi-threaded context to allow an orderly shutdown in stages which go through a "not accepting new requests" state.
|
|
OBX_C_API obx_err | obx_store_close (OBX_store *store) |
| Closes a previously opened store and thus freeing all resources associated with the store.
|
|
OBX_C_API int | obx_store_type_id_register_default (uint32_t storeTypeId) |
| Registers the default DB type, which is used if no other types matched a path prefix.
|
|
OBX_C_API OBX_txn * | obx_txn_write (OBX_store *store) |
| Create a write transaction (read and write). Transaction creation can be nested (recursive), however only the outermost transaction is relevant on the DB level. Once you are done tithe the transaction, you must call obx_txn_success() or obx_txn_close().
|
|
OBX_C_API OBX_txn * | obx_txn_read (OBX_store *store) |
| Create a read transaction (read only). Transaction creation can be nested (recursive), however only the outermost transaction is relevant on the DB level. Once you are done tithe the transaction, you must call obx_txn_close().
|
|
OBX_C_API obx_err | obx_txn_success (OBX_txn *txn) |
| "Finish" this write transaction successfully and close it, performing a commit if this is the top level transaction and all inner transactions (if any) were also successful (obx_txn_success() was called on them). Because this also closes the given transaction along with all resources, the given OBX_txn pointer becomes invalid. Thus, the OBX_txn pointer must not be used afterwards; do not even call obx_txn_close().
|
|
OBX_C_API obx_err | obx_txn_close (OBX_txn *txn) |
| Close the transaction (read or write) and free all of its resources; the given OBX_txn pointer must not be used afterwards. If the given transaction is a write transaction, it is aborted (not committed) right away (without waiting for the top level transaction). If an error is returned (e.g., a commit failed because DB is full), you can assume that the transaction was closed.
|
|
OBX_C_API obx_err | obx_txn_abort (OBX_txn *txn) |
| Note: At the moment, you typically want to use only obx_txn_close() instead. Abort the underlying transaction immediately and thus frees DB resources. Only obx_txn_close() is allowed to be called on the transaction after calling this.
|
|
OBX_C_API obx_err | obx_txn_data_size (OBX_txn *txn, uint64_t *out_committed_size, int64_t *out_size_change) |
|
OBX_C_API OBX_cursor * | obx_cursor (OBX_txn *txn, obx_schema_id entity_id) |
|
OBX_C_API obx_err | obx_cursor_close (OBX_cursor *cursor) |
|
OBX_C_API obx_id | obx_cursor_id_for_put (OBX_cursor *cursor, obx_id id_or_zero) |
| Call this when putting an object to generate/prepare an ID for it.
|
|
OBX_C_API obx_err | obx_cursor_put (OBX_cursor *cursor, obx_id id, const void *data, size_t size) |
| Puts the given object data using the given ID. A "put" in ObjectBox follows "insert or update" semantics; New objects (no pre-existing object for given ID) are inserted while existing objects are replaced/updated.
|
|
OBX_C_API obx_err | obx_cursor_put4 (OBX_cursor *cursor, obx_id id, const void *data, size_t size, OBXPutMode mode) |
| Like put obx_cursor_put(), but takes an additional parameter (4th parameter) for choosing a put mode.
|
|
OBX_C_API obx_err | obx_cursor_put_new (OBX_cursor *cursor, obx_id id, const void *data, size_t size) |
| An optimized version of obx_cursor_put() if you can ensure that the given ID is not used yet. Typically used right after getting a new ID via obx_cursor_id_for_put(). WARNING: using this incorrectly (an object with the given ID already exists) may result in inconsistent data (e.g. indexes do not get updated).
|
|
OBX_C_API obx_err | obx_cursor_insert (OBX_cursor *cursor, obx_id id, const void *data, size_t size) |
| Convenience for obx_cursor_put4() with OBXPutMode_INSERT.
|
|
OBX_C_API obx_err | obx_cursor_update (OBX_cursor *cursor, obx_id id, const void *data, size_t size) |
| Convenience for obx_cursor_put4() with OBXPutMode_UPDATE.
|
|
OBX_C_API obx_id | obx_cursor_put_object (OBX_cursor *cursor, void *data, size_t size) |
| FB ID slot must be present; new entities must prepare the slot using the special value OBX_ID_NEW. Alternatively, you may also pass 0 to indicate a new entity if you are aware that FlatBuffers builders typically skip zero values by default. Thus, you have to "force" writing the zero in FlatBuffers.
|
|
OBX_C_API obx_id | obx_cursor_put_object4 (OBX_cursor *cursor, void *data, size_t size, OBXPutMode mode) |
|
OBX_C_API obx_err | obx_cursor_get (OBX_cursor *cursor, obx_id id, const void **data, size_t *size) |
|
OBX_C_API OBX_bytes_array * | obx_cursor_get_all (OBX_cursor *cursor) |
| Get all objects as bytes. For larger quantities, it's recommended to iterate using obx_cursor_first and obx_cursor_next. However, if the calling overhead is high (e.g., for language bindings), this method helps.
|
|
OBX_C_API obx_err | obx_cursor_first (OBX_cursor *cursor, const void **data, size_t *size) |
|
OBX_C_API obx_err | obx_cursor_next (OBX_cursor *cursor, const void **data, size_t *size) |
|
OBX_C_API obx_err | obx_cursor_seek (OBX_cursor *cursor, obx_id id) |
|
OBX_C_API obx_err | obx_cursor_current (OBX_cursor *cursor, const void **data, size_t *size) |
|
OBX_C_API obx_err | obx_cursor_remove (OBX_cursor *cursor, obx_id id) |
|
OBX_C_API obx_err | obx_cursor_remove_all (OBX_cursor *cursor) |
|
OBX_C_API obx_err | obx_cursor_count (OBX_cursor *cursor, uint64_t *count) |
| Count the number of available objects.
|
|
OBX_C_API obx_err | obx_cursor_count_max (OBX_cursor *cursor, uint64_t max_count, uint64_t *out_count) |
| Count the number of available objects up to the specified maximum.
|
|
OBX_C_API obx_err | obx_cursor_is_empty (OBX_cursor *cursor, bool *out_is_empty) |
| Return true if there is no object available (false if at least one object is available)
|
|
OBX_C_API OBX_bytes_array * | obx_cursor_backlinks (OBX_cursor *cursor, obx_schema_id entity_id, obx_schema_id property_id, obx_id id) |
|
OBX_C_API OBX_id_array * | obx_cursor_backlink_ids (OBX_cursor *cursor, obx_schema_id entity_id, obx_schema_id property_id, obx_id id) |
|
OBX_C_API obx_err | obx_cursor_rel_put (OBX_cursor *cursor, obx_schema_id relation_id, obx_id source_id, obx_id target_id) |
|
OBX_C_API obx_err | obx_cursor_rel_remove (OBX_cursor *cursor, obx_schema_id relation_id, obx_id source_id, obx_id target_id) |
|
OBX_C_API OBX_id_array * | obx_cursor_rel_ids (OBX_cursor *cursor, obx_schema_id relation_id, obx_id source_id) |
|
OBX_C_API obx_err | obx_cursor_seek_first_id (OBX_cursor *cursor, obx_id *out_id) |
| Gets the first object ID or zero if there was no object.
|
|
OBX_C_API obx_err | obx_cursor_seek_next_id (OBX_cursor *cursor, obx_id *out_id) |
| Gets the next object ID or zero if there was no next object.
|
|
OBX_C_API obx_err | obx_cursor_current_id (OBX_cursor *cursor, obx_id *out_id) |
| Gets the object ID at the current position; ensures being up-to-date by verifying against database.
|
|
OBX_C_API obx_err | obx_cursor_ts_min_max (OBX_cursor *cursor, obx_id *out_min_id, int64_t *out_min_value, obx_id *out_max_id, int64_t *out_max_value) |
| Time series: get the limits (min/max time values) over all objects.
|
|
OBX_C_API obx_err | obx_cursor_ts_min_max_range (OBX_cursor *cursor, int64_t range_begin, int64_t range_end, obx_id *out_min_id, int64_t *out_min_value, obx_id *out_max_id, int64_t *out_max_value) |
| Time series: get the limits (min/max time values) over objects within the given time range.
|
|
OBX_C_API OBX_box * | obx_box (OBX_store *store, obx_schema_id entity_id) |
| Get access to the box for the given entity. A box may be used across threads. Boxes are shared instances and managed by the store so there's no need to close/free them manually.
|
|
OBX_C_API OBX_store * | obx_box_store (OBX_box *box) |
| Get access to the store this box belongs to - utility for when you only have access to the box variable but need some store method, such as starting a transaction. This doesn't produce a new instance of OBX_store, just gives you back the same pointer you've created this box with. In other words, don't close the returned store separately.
|
|
OBX_C_API obx_err | obx_box_contains (OBX_box *box, obx_id id, bool *out_contains) |
| Check whether a given object exists in the box.
|
|
OBX_C_API obx_err | obx_box_contains_many (OBX_box *box, const OBX_id_array *ids, bool *out_contains) |
| Check whether this box contains objects with all of the IDs given.
|
|
OBX_C_API obx_err | obx_box_get (OBX_box *box, obx_id id, const void **data, size_t *size) |
| Fetch a single object from the box; must be called inside a (reentrant) transaction. The exposed data comes directly from the OS to allow zero-copy access, which limits the data lifetime:
|
|
OBX_C_API OBX_bytes_array * | obx_box_get_many (OBX_box *box, const OBX_id_array *ids) |
| Fetch multiple objects for the given IDs from the box; must be called inside a (reentrant) transaction.
|
|
OBX_C_API OBX_bytes_array * | obx_box_get_all (OBX_box *box) |
| Fetch all objects from the box; must be called inside a (reentrant) transaction. NOTE: don't call this in 32 bit mode! Use obx_box_visit_all() instead.
|
|
OBX_C_API obx_err | obx_box_visit_many (OBX_box *box, const OBX_id_array *ids, obx_data_visitor *visitor, void *user_data) |
| Read given objects from the database in a single transaction. Call the visitor() on each object, passing user_data, object data & size as arguments. The given visitor must return true to keep receiving results, false to cancel. If an object is not found, the visitor() is still called, passing NULL as data and a 0 as size.
|
|
OBX_C_API obx_err | obx_box_visit_all (OBX_box *box, obx_data_visitor *visitor, void *user_data) |
| Read all objects in a single transaction. Calls the visitor() on each object, passing visitor_arg, object data & size as arguments. The given visitor must return true to keep receiving results, false to cancel.
|
|
OBX_C_API obx_id | obx_box_id_for_put (OBX_box *box, obx_id id_or_zero) |
| Prepares an ID for insertion: pass in 0 (zero) to reserve a new ID or an existing ID to check/prepare it.
|
|
OBX_C_API obx_err | obx_box_ids_for_put (OBX_box *box, uint64_t count, obx_id *out_first_id) |
| Reserve the given number of (new) IDs for insertion; a bulk version of obx_box_id_for_put().
|
|
OBX_C_API obx_err | obx_box_put (OBX_box *box, obx_id id, const void *data, size_t size) |
| Put the given object using the given ID synchronously; note that the ID also must match the one present in data.
|
|
OBX_C_API obx_err | obx_box_insert (OBX_box *box, obx_id id, const void *data, size_t size) |
| Convenience for obx_box_put5() with OBXPutMode_INSERT.
|
|
OBX_C_API obx_err | obx_box_update (OBX_box *box, obx_id id, const void *data, size_t size) |
| Convenience for obx_cursor_put4() with OBXPutMode_UPDATE.
|
|
OBX_C_API obx_err | obx_box_put5 (OBX_box *box, obx_id id, const void *data, size_t size, OBXPutMode mode) |
| Put the given object using the given ID synchronously; note that the ID also must match the one present in data.
|
|
OBX_C_API obx_id | obx_box_put_object (OBX_box *box, void *data, size_t size) |
| FB ID slot must be present in the given data; new entities must have an ID value of zero or OBX_ID_NEW.
|
|
OBX_C_API obx_id | obx_box_put_object4 (OBX_box *box, void *data, size_t size, OBXPutMode mode) |
| FB ID slot must be present in the given data; new entities must have an ID value of zero or OBX_ID_NEW.
|
|
OBX_C_API obx_err | obx_box_put_many (OBX_box *box, const OBX_bytes_array *objects, const obx_id *ids, OBXPutMode mode) |
| Put all given objects in the database in a single transaction. If any of the individual objects failed to put, none are put and an error is returned, equivalent to calling obx_box_put_many5() with fail_on_id_failure=true.
|
|
OBX_C_API obx_err | obx_box_put_many5 (OBX_box *box, const OBX_bytes_array *objects, const obx_id *ids, OBXPutMode mode, bool fail_on_id_failure) |
| Like obx_box_put_many(), but with an additional flag indicating how to treat ID failures with OBXPutMode_INSERT and OBXPutMode_UPDATE.
|
|
OBX_C_API obx_err | obx_box_remove (OBX_box *box, obx_id id) |
| Remove a single object will return OBX_NOT_FOUND if an object with the given ID doesn't exist.
|
|
OBX_C_API obx_err | obx_box_remove_many (OBX_box *box, const OBX_id_array *ids, uint64_t *out_count) |
| Remove all given objects from the database in a single transaction. Note that this method will not fail if the object is not found (e.g. already removed). In case you need to strictly check whether all of the objects exist before removing them, execute obx_box_contains_ids() and obx_box_remove_ids() inside a single write transaction.
|
|
OBX_C_API obx_err | obx_box_remove_all (OBX_box *box, uint64_t *out_count) |
| Remove all objects and set the out_count the the number of removed objects.
|
|
OBX_C_API obx_err | obx_box_is_empty (OBX_box *box, bool *out_is_empty) |
| Check whether there are any objects for this entity and updates the out_is_empty accordingly.
|
|
OBX_C_API obx_err | obx_box_count (OBX_box *box, uint64_t limit, uint64_t *out_count) |
| Count the number of objects in the box, up to the given maximum. You can pass limit=0 to count all objects without any limitation.
|
|
OBX_C_API OBX_id_array * | obx_box_get_backlink_ids (OBX_box *box, obx_schema_id property_id, obx_id id) |
| Fetch IDs of all objects that link back to the given object (ID) using the given relation property (ID). Note: This method refers to "property based relations" unlike the "stand-alone relations" (see obx_box_rel_*).
|
|
OBX_C_API obx_err | obx_box_rel_put (OBX_box *box, obx_schema_id relation_id, obx_id source_id, obx_id target_id) |
| Insert a standalone relation entry between two objects.
|
|
OBX_C_API obx_err | obx_box_rel_remove (OBX_box *box, obx_schema_id relation_id, obx_id source_id, obx_id target_id) |
| Remove a standalone relation entry between two objects. See obx_box_rel_put() for parameters documentation.
|
|
OBX_C_API OBX_id_array * | obx_box_rel_get_ids (OBX_box *box, obx_schema_id relation_id, obx_id id) |
| Fetch IDs of all objects in this Box related to the given object (typically from another Box). Used for a stand-alone relation and its "regular" direction; this Box represents the target of the relation.
|
|
OBX_C_API OBX_id_array * | obx_box_rel_get_backlink_ids (OBX_box *box, obx_schema_id relation_id, obx_id id) |
| Fetch IDs of all objects in this Box related to the given object (typically from another Box). Used for a stand-alone relation and its "backlink" direction; this Box represents the source of the relation.
|
|
OBX_C_API obx_err | obx_expired_objects_remove (OBX_txn *txn, obx_schema_id entity_id, size_t *out_removed_count) |
| Removes expired objects of one or all entity types.
|
|
OBX_C_API obx_err | obx_expired_objects_remove_async (OBX_store *store, obx_schema_id entity_id, obx_status_callback *callback, void *user_data) |
| Asynchronously removes expired objects of one or all entity types.
|
|
OBX_C_API obx_err | obx_box_ts_min_max (OBX_box *box, obx_id *out_min_id, int64_t *out_min_value, obx_id *out_max_id, int64_t *out_max_value) |
| Time series: get the limits (min/max time values) over all objects.
|
|
OBX_C_API obx_err | obx_box_ts_min_max_range (OBX_box *box, int64_t range_begin, int64_t range_end, obx_id *out_min_id, int64_t *out_min_value, obx_id *out_max_id, int64_t *out_max_value) |
| Time series: get the limits (min/max time values) over objects within the given time range.
|
|
OBX_C_API OBX_async * | obx_async (OBX_box *box) |
| Note: DO NOT close this OBX_async; its lifetime is tied to the OBX_box instance.
|
|
OBX_C_API obx_err | obx_async_put (OBX_async *async, obx_id id, const void *data, size_t size) |
| Put asynchronously with standard put semantics (insert or update).
|
|
OBX_C_API obx_err | obx_async_put5 (OBX_async *async, obx_id id, const void *data, size_t size, OBXPutMode mode) |
| Put asynchronously using the given mode.
|
|
OBX_C_API obx_err | obx_async_insert (OBX_async *async, obx_id id, const void *data, size_t size) |
| Put asynchronously with inserts semantics (won't put if object already exists).
|
|
OBX_C_API obx_err | obx_async_update (OBX_async *async, obx_id id, const void *data, size_t size) |
| Put asynchronously with update semantics (won't put if object is not yet present).
|
|
OBX_C_API obx_id | obx_async_put_object (OBX_async *async, void *data, size_t size) |
| Reserve an ID, which is returned immediately for future reference, and put asynchronously. Note: of course, it can NOT be guaranteed that the entity will actually be put successfully in the DB.
|
|
OBX_C_API obx_id | obx_async_put_object4 (OBX_async *async, void *data, size_t size, OBXPutMode mode) |
| FB ID slot must be present in the given data; new entities must have an ID value of zero or OBX_ID_NEW.
|
|
OBX_C_API obx_id | obx_async_insert_object (OBX_async *async, void *data, size_t size) |
| Reserve an ID, which is returned immediately for future reference, and insert asynchronously. Note: of course, it can NOT be guaranteed that the entity will actually be inserted successfully in the DB.
|
|
OBX_C_API obx_err | obx_async_remove (OBX_async *async, obx_id id) |
| Remove asynchronously.
|
|
OBX_C_API OBX_async * | obx_async_create (OBX_box *box, uint64_t enqueue_timeout_millis) |
| Create a custom OBX_async instance that has to be closed using obx_async_close(). Note: for standard tasks, prefer obx_box_async() giving you a shared instance that does not have to be closed.
|
|
OBX_C_API obx_err | obx_async_close (OBX_async *async) |
| Close a custom OBX_async instance created with obx_async_create().
|
|
OBX_C_API OBX_query_builder * | obx_query_builder (OBX_store *store, obx_schema_id entity_id) |
| Create a query builder which is used to collect conditions using the obx_qb_* functions. Once all conditions are applied, use obx_query() to build a OBX_query that is used to actually retrieve data. Use obx_qb_close() to close (free) the query builder.
|
|
OBX_C_API obx_err | obx_qb_close (OBX_query_builder *builder) |
| Close the query builder; note that OBX_query objects outlive their builder and thus are not affected by this call.
|
|
OBX_C_API obx_schema_id | obx_qb_type_id (OBX_query_builder *builder) |
|
OBX_C_API obx_err | obx_qb_error_code (OBX_query_builder *builder) |
| To minimise the amount of error handling code required when building a query, the first error is stored in the query and can be obtained here. All the obx_qb_XXX functions are null operations after the first query error has occurred.
|
|
OBX_C_API const char * | obx_qb_error_message (OBX_query_builder *builder) |
| To minimise the amount of error handling code required when building a query, the first error is stored in the query and can be obtained here. All the obx_qb_XXX functions are null operations after the first query error has occurred.
|
|
OBX_C_API obx_qb_cond | obx_qb_null (OBX_query_builder *builder, obx_schema_id property_id) |
| Add null check to the query.
|
|
OBX_C_API obx_qb_cond | obx_qb_not_null (OBX_query_builder *builder, obx_schema_id property_id) |
| Add not-null check to the query.
|
|
OBX_C_API obx_qb_cond | obx_qb_equals_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
| For string and flex properties, this looks for a value equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_not_equals_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
|
OBX_C_API obx_qb_cond | obx_qb_contains_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
|
OBX_C_API obx_qb_cond | obx_qb_contains_element_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
| For container types (e.g. string vector or flex), this looks for a element that equals the given string.
|
|
OBX_C_API obx_qb_cond | obx_qb_contains_key_value_string (OBX_query_builder *builder, obx_schema_id property_id, const char *key, const char *value, bool case_sensitive) |
| @Deprecated use obx_qb_equals_key_value_string instead
|
|
OBX_C_API obx_qb_cond | obx_qb_equals_key_value_string (OBX_query_builder *builder, obx_schema_id property_id, const char *key, const char *value, bool case_sensitive) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_equals_key_value_int (OBX_query_builder *builder, obx_schema_id property_id, const char *key, int64_t value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_equals_key_value_double (OBX_query_builder *builder, obx_schema_id property_id, const char *key, double value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_greater_key_value_string (OBX_query_builder *builder, obx_schema_id property_id, const char *key, const char *value, bool case_sensitive) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being greater than the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_greater_key_value_int (OBX_query_builder *builder, obx_schema_id property_id, const char *key, int64_t value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being greater than the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_greater_key_value_double (OBX_query_builder *builder, obx_schema_id property_id, const char *key, double value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being greater than the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_greater_or_equal_key_value_string (OBX_query_builder *builder, obx_schema_id property_id, const char *key, const char *value, bool case_sensitive) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being greater than or equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_greater_or_equal_key_value_int (OBX_query_builder *builder, obx_schema_id property_id, const char *key, int64_t value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being greater than or equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_greater_or_equal_key_value_double (OBX_query_builder *builder, obx_schema_id property_id, const char *key, double value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being greater than or equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_less_than_key_value_string (OBX_query_builder *builder, obx_schema_id property_id, const char *key, const char *value, bool case_sensitive) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being lesser than the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_less_than_key_value_int (OBX_query_builder *builder, obx_schema_id property_id, const char *key, int64_t value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being lesser than the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_less_than_key_value_double (OBX_query_builder *builder, obx_schema_id property_id, const char *key, double value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being lesser than the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_less_or_equal_key_value_string (OBX_query_builder *builder, obx_schema_id property_id, const char *key, const char *value, bool case_sensitive) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being lesser than or equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_less_or_equal_key_value_int (OBX_query_builder *builder, obx_schema_id property_id, const char *key, int64_t value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being lesser than or equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_less_or_equal_key_value_double (OBX_query_builder *builder, obx_schema_id property_id, const char *key, double value) |
| For flex properties that have a map as root value, this looks for a matching key/value pair, with the map value being lesser than or equal to the given one.
|
|
OBX_C_API obx_qb_cond | obx_qb_starts_with_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
|
OBX_C_API obx_qb_cond | obx_qb_ends_with_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
|
OBX_C_API obx_qb_cond | obx_qb_greater_than_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
|
OBX_C_API obx_qb_cond | obx_qb_greater_or_equal_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
|
OBX_C_API obx_qb_cond | obx_qb_less_than_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
|
OBX_C_API obx_qb_cond | obx_qb_less_or_equal_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
|
OBX_C_API obx_qb_cond | obx_qb_in_strings (OBX_query_builder *builder, obx_schema_id property_id, const char *const values[], size_t count, bool case_sensitive) |
| Note that all string values are copied and thus do not need to be maintained by the calling code.
|
|
OBX_C_API obx_qb_cond | obx_qb_any_equals_string (OBX_query_builder *builder, obx_schema_id property_id, const char *value, bool case_sensitive) |
| For OBXPropertyType_StringVector - matches if at least one vector item equals the given value.
|
|
OBX_C_API obx_qb_cond | obx_qb_equals_int (OBX_query_builder *builder, obx_schema_id property_id, int64_t value) |
|
OBX_C_API obx_qb_cond | obx_qb_not_equals_int (OBX_query_builder *builder, obx_schema_id property_id, int64_t value) |
|
OBX_C_API obx_qb_cond | obx_qb_greater_than_int (OBX_query_builder *builder, obx_schema_id property_id, int64_t value) |
|
OBX_C_API obx_qb_cond | obx_qb_greater_or_equal_int (OBX_query_builder *builder, obx_schema_id property_id, int64_t value) |
|
OBX_C_API obx_qb_cond | obx_qb_less_than_int (OBX_query_builder *builder, obx_schema_id property_id, int64_t value) |
|
OBX_C_API obx_qb_cond | obx_qb_less_or_equal_int (OBX_query_builder *builder, obx_schema_id property_id, int64_t value) |
|
OBX_C_API obx_qb_cond | obx_qb_between_2ints (OBX_query_builder *builder, obx_schema_id property_id, int64_t value_a, int64_t value_b) |
|
OBX_C_API obx_qb_cond | obx_qb_in_int64s (OBX_query_builder *builder, obx_schema_id property_id, const int64_t values[], size_t count) |
| Note that all values are copied and thus do not need to be maintained by the calling code.
|
|
OBX_C_API obx_qb_cond | obx_qb_not_in_int64s (OBX_query_builder *builder, obx_schema_id property_id, const int64_t values[], size_t count) |
| Note that all values are copied and thus do not need to be maintained by the calling code.
|
|
OBX_C_API obx_qb_cond | obx_qb_in_int32s (OBX_query_builder *builder, obx_schema_id property_id, const int32_t values[], size_t count) |
| Note that all values are copied and thus do not need to be maintained by the calling code.
|
|
OBX_C_API obx_qb_cond | obx_qb_not_in_int32s (OBX_query_builder *builder, obx_schema_id property_id, const int32_t values[], size_t count) |
| Note that all values are copied and thus do not need to be maintained by the calling code.
|
|
OBX_C_API obx_qb_cond | obx_qb_greater_than_double (OBX_query_builder *builder, obx_schema_id property_id, double value) |
|
OBX_C_API obx_qb_cond | obx_qb_greater_or_equal_double (OBX_query_builder *builder, obx_schema_id property_id, double value) |
|
OBX_C_API obx_qb_cond | obx_qb_less_than_double (OBX_query_builder *builder, obx_schema_id property_id, double value) |
|
OBX_C_API obx_qb_cond | obx_qb_less_or_equal_double (OBX_query_builder *builder, obx_schema_id property_id, double value) |
|
OBX_C_API obx_qb_cond | obx_qb_between_2doubles (OBX_query_builder *builder, obx_schema_id property_id, double value_a, double value_b) |
|
OBX_C_API obx_qb_cond | obx_qb_equals_bytes (OBX_query_builder *builder, obx_schema_id property_id, const void *value, size_t size) |
|
OBX_C_API obx_qb_cond | obx_qb_greater_than_bytes (OBX_query_builder *builder, obx_schema_id property_id, const void *value, size_t size) |
|
OBX_C_API obx_qb_cond | obx_qb_greater_or_equal_bytes (OBX_query_builder *builder, obx_schema_id property_id, const void *value, size_t size) |
|
OBX_C_API obx_qb_cond | obx_qb_less_than_bytes (OBX_query_builder *builder, obx_schema_id property_id, const void *value, size_t size) |
|
OBX_C_API obx_qb_cond | obx_qb_less_or_equal_bytes (OBX_query_builder *builder, obx_schema_id property_id, const void *value, size_t size) |
|
OBX_C_API obx_qb_cond | obx_qb_relation_count_property (OBX_query_builder *builder, obx_schema_id relation_entity_id, obx_schema_id relation_property_id, uint32_t relation_count) |
| An object matches, if it has a given number of related objects pointing to it. At this point, there are a couple of limitations (later version may improve on that): 1) 1:N relations only, 2) the complexity is O(n * (relationCount + 1)) and cannot be improved via indexes, 3) The relation count cannot be set as an parameter.
|
|
OBX_C_API obx_qb_cond | obx_qb_all (OBX_query_builder *builder, const obx_qb_cond conditions[], size_t count) |
| Combine conditions[] to a new condition using operator AND (all).
|
|
OBX_C_API obx_qb_cond | obx_qb_any (OBX_query_builder *builder, const obx_qb_cond conditions[], size_t count) |
| Combine conditions[] to a new condition using operator OR (any).
|
|
OBX_C_API obx_err | obx_qb_param_alias (OBX_query_builder *builder, const char *alias) |
| Create an alias for the previous condition (the one added just before calling this function). This is useful when you have a query with multiple conditions of the same property (e.g. height < 20 or height > 50) and you want to use obx_query_param_* to change the values. Consider the following simplified example.
|
|
OBX_C_API obx_err | obx_qb_order (OBX_query_builder *builder, obx_schema_id property_id, uint32_t flags) |
| Configures an order of results in the query.
|
|
OBX_C_API OBX_query_builder * | obx_qb_link_property (OBX_query_builder *builder, obx_schema_id property_id) |
| Create a link based on a property-relation (many-to-one)
|
|
OBX_C_API OBX_query_builder * | obx_qb_backlink_property (OBX_query_builder *builder, obx_schema_id source_entity_id, obx_schema_id source_property_id) |
| Create a backlink based on a property-relation used in reverse (one-to-many)
|
|
OBX_C_API OBX_query_builder * | obx_qb_link_standalone (OBX_query_builder *builder, obx_schema_id relation_id) |
| Create a link based on a standalone relation (many-to-many)
|
|
OBX_C_API OBX_query_builder * | obx_qb_backlink_standalone (OBX_query_builder *builder, obx_schema_id relation_id) |
| Create a backlink based on a standalone relation (many-to-many, reverse direction)
|
|
OBX_C_API OBX_query_builder * | obx_qb_link_time (OBX_query_builder *builder, obx_schema_id linked_entity_id, obx_schema_id begin_property_id, obx_schema_id end_property_id) |
| Link the (time series) entity type to another entity space using a time point or range defined in the given linked entity type and properties. Note: time series functionality must be available to use this.
|
|
OBX_C_API obx_qb_cond | obx_qb_nearest_neighbors_f32 (OBX_query_builder *builder, obx_schema_id vector_property_id, const float *query_vector, size_t max_result_count) |
| Performs an approximate nearest neighbor (ANN) search to find objects near to the given query_vector. This requires the vector property to have a HNSW index.
|
|
OBX_C_API OBX_query * | obx_query (OBX_query_builder *builder) |
|
OBX_C_API obx_err | obx_query_close (OBX_query *query) |
| Close the query and free resources.
|
|
OBX_C_API OBX_query * | obx_query_clone (OBX_query *query) |
| Create a clone of the given query such that it can be run on a separate thread.
|
|
OBX_C_API obx_err | obx_query_offset (OBX_query *query, size_t offset) |
| Configure an offset for this query - all methods that support offset will return/process objects starting at this offset. Example use case: use together with limit to get a slice of the whole result, e.g. for "result paging". Call with offset=0 to reset to the default behavior, i.e. starting from the first element.
|
|
OBX_C_API obx_err | obx_query_offset_limit (OBX_query *query, size_t offset, size_t limit) |
| Configure an offset and a limit for this query - all methods that support an offset/limit will return/process objects starting at this offset and up to the given limit. Example use case: get a slice of the whole result, e.g. for "result paging". Call with offset/limit=0 to reset to the default behavior, i.e. starting from the first element without limit.
|
|
OBX_C_API obx_err | obx_query_limit (OBX_query *query, size_t limit) |
| Configure a limit for this query - all methods that support limit will return/process only the given number of objects. Example use case: use together with offset to get a slice of the whole result, e.g. for "result paging". Call with limit=0 to reset to the default behavior - zero limit means no limit applied.
|
|
OBX_C_API OBX_bytes_array * | obx_query_find (OBX_query *query) |
| Find objects matching the query. NOTE: You must use an explicit transaction and the returned data is only valid as long the transaction is active! Note: if no order conditions is present, the order is arbitrary (sometimes ordered by ID, but never guaranteed to).
|
|
OBX_C_API OBX_bytes_score_array * | obx_query_find_with_scores (OBX_query *query) |
| Find objects matching the query associated to their query score (e.g. distance in NN search). The resulting array is sorted by score in ascending order (unlike obx_query_find()).
|
|
OBX_C_API OBX_id_score_array * | obx_query_find_ids_with_scores (OBX_query *query) |
| Find object IDs matching the query associated to their query score (e.g. distance in NN search). The resulting array is sorted by score in ascending order (unlike obx_query_find_ids()).
|
|
OBX_C_API OBX_id_array * | obx_query_find_ids_by_score (OBX_query *query) |
| Find object IDs matching the query ordered by their query score (e.g. distance in NN search). The resulting array is sorted by score in ascending order (unlike obx_query_find_ids()). Unlike obx_query_find_ids_with_scores(), this method returns a simple array of IDs without scores.
|
|
OBX_C_API obx_err | obx_query_find_first (OBX_query *query, const void **data, size_t *size) |
| Find the first object matching the query.
|
|
OBX_C_API obx_err | obx_query_find_unique (OBX_query *query, const void **data, size_t *size) |
| Find the only object matching the query.
|
|
OBX_C_API obx_err | obx_query_visit (OBX_query *query, obx_data_visitor *visitor, void *user_data) |
| Walk over matching objects one-by-one using the given data visitor (a callback function). Note: if no order conditions is present, the order is arbitrary (sometimes ordered by ID, but never guaranteed to).
|
|
OBX_C_API obx_err | obx_query_visit_with_score (OBX_query *query, obx_data_score_visitor *visitor, void *user_data) |
| Walk over matching objects with their query score one-by-one using the given data visitor (a callback function). Note: the elements are ordered by the score (ascending).
|
|
OBX_C_API OBX_id_array * | obx_query_find_ids (OBX_query *query) |
| Return the IDs of all matching objects. Note: if no order conditions is present, the order is arbitrary (sometimes ordered by ID, but never guaranteed to).
|
|
OBX_C_API obx_err | obx_query_count (OBX_query *query, uint64_t *out_count) |
| Return the number of matching objects.
|
|
OBX_C_API obx_err | obx_query_remove (OBX_query *query, uint64_t *out_count) |
| Remove all matching objects from the database & return the number of deleted objects.
|
|
OBX_C_API const char * | obx_query_describe (OBX_query *query) |
| The returned char* is valid until another call to describe() is made on the query or until the query is freed.
|
|
OBX_C_API const char * | obx_query_describe_params (OBX_query *query) |
| The returned char* is valid until another call to describe_params() is made on the query or until the query is freed.
|
|
OBX_C_API obx_err | obx_query_cursor_visit (OBX_query *query, OBX_cursor *cursor, obx_data_visitor *visitor, void *user_data) |
|
OBX_C_API OBX_bytes_array * | obx_query_cursor_find (OBX_query *query, OBX_cursor *cursor) |
| Find entities matching the query; NOTE: the returned data is only valid as long the transaction is active!
|
|
OBX_C_API OBX_id_array * | obx_query_cursor_find_ids (OBX_query *query, OBX_cursor *cursor) |
|
OBX_C_API obx_err | obx_query_cursor_count (OBX_query *query, OBX_cursor *cursor, uint64_t *out_count) |
|
OBX_C_API obx_err | obx_query_cursor_remove (OBX_query *query, OBX_cursor *cursor, uint64_t *out_count) |
| Remove (delete!) all matching objects.
|
|
OBX_C_API obx_err | obx_query_param_string (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, const char *value) |
|
OBX_C_API obx_err | obx_query_param_2strings (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, const char *value, const char *value2) |
|
OBX_C_API obx_err | obx_query_param_strings (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, const char *const values[], size_t count) |
|
OBX_C_API obx_err | obx_query_param_int (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, int64_t value) |
|
OBX_C_API obx_err | obx_query_param_2ints (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, int64_t value_a, int64_t value_b) |
|
OBX_C_API obx_err | obx_query_param_int64s (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, const int64_t values[], size_t count) |
|
OBX_C_API obx_err | obx_query_param_int32s (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, const int32_t values[], size_t count) |
|
OBX_C_API obx_err | obx_query_param_double (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, double value) |
|
OBX_C_API obx_err | obx_query_param_2doubles (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, double value_a, double value_b) |
|
OBX_C_API obx_err | obx_query_param_bytes (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, const void *value, size_t size) |
|
OBX_C_API obx_err | obx_query_param_vector_float32 (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id, const float *value, size_t element_count) |
|
OBX_C_API size_t | obx_query_param_get_type_size (OBX_query *query, obx_schema_id entity_id, obx_schema_id property_id) |
| Gets the size of the property type used in a query condition. A typical use case of this is to allow language bindings (e.g. Swift) use the right type (e.g. 32 bit ints) even if the language has a bias towards another type (e.g. 64 bit ints).
|
|
OBX_C_API obx_err | obx_query_param_alias_string (OBX_query *query, const char *alias, const char *value) |
|
OBX_C_API obx_err | obx_query_param_alias_strings (OBX_query *query, const char *alias, const char *const values[], size_t count) |
|
OBX_C_API obx_err | obx_query_param_alias_int (OBX_query *query, const char *alias, int64_t value) |
|
OBX_C_API obx_err | obx_query_param_alias_2ints (OBX_query *query, const char *alias, int64_t value_a, int64_t value_b) |
|
OBX_C_API obx_err | obx_query_param_alias_int64s (OBX_query *query, const char *alias, const int64_t values[], size_t count) |
|
OBX_C_API obx_err | obx_query_param_alias_int32s (OBX_query *query, const char *alias, const int32_t values[], size_t count) |
|
OBX_C_API obx_err | obx_query_param_alias_double (OBX_query *query, const char *alias, double value) |
|
OBX_C_API obx_err | obx_query_param_alias_2doubles (OBX_query *query, const char *alias, double value_a, double value_b) |
|
OBX_C_API obx_err | obx_query_param_alias_bytes (OBX_query *query, const char *alias, const void *value, size_t size) |
|
OBX_C_API obx_err | obx_query_param_alias_vector_float32 (OBX_query *query, const char *alias, const float *value, size_t element_count) |
|
OBX_C_API size_t | obx_query_param_alias_get_type_size (OBX_query *query, const char *alias) |
| Gets the size of the property type used in a query condition. A typical use case of this is to allow language bindings (e.g. Swift) use the right type (e.g. 32 bit ints) even if the language has a bias towards another type (e.g. 64 bit ints).
|
|
OBX_C_API OBX_query_prop * | obx_query_prop (OBX_query *query, obx_schema_id property_id) |
| Create a "property query" with results referring to single property (not complete objects). Also provides aggregates like for example obx_query_prop_avg().
|
|
OBX_C_API obx_err | obx_query_prop_close (OBX_query_prop *query) |
| Close the property query and release resources.
|
|
OBX_C_API obx_err | obx_query_prop_distinct (OBX_query_prop *query, bool distinct) |
| Configure the property query to work only on distinct values.
|
|
OBX_C_API obx_err | obx_query_prop_distinct_case (OBX_query_prop *query, bool distinct, bool case_sensitive) |
| Configure the property query to work only on distinct values. This version is reserved for string properties and defines the case sensitivity for distinctness.
|
|
OBX_C_API obx_err | obx_query_prop_count (OBX_query_prop *query, uint64_t *out_count) |
| Count the number of non-NULL values of the given property across all objects matching the query.
|
|
OBX_C_API obx_err | obx_query_prop_avg (OBX_query_prop *query, double *out_average, int64_t *out_count) |
| Calculate an average value for the given numeric property across all objects matching the query.
|
|
OBX_C_API obx_err | obx_query_prop_avg_int (OBX_query_prop *query, int64_t *out_average, int64_t *out_count) |
| Calculate an average value for the given numeric property across all objects matching the query.
|
|
OBX_C_API obx_err | obx_query_prop_min (OBX_query_prop *query, double *out_minimum, int64_t *out_count) |
| Find the minimum value of the given floating-point property across all objects matching the query.
|
|
OBX_C_API obx_err | obx_query_prop_max (OBX_query_prop *query, double *out_maximum, int64_t *out_count) |
| Find the maximum value of the given floating-point property across all objects matching the query.
|
|
OBX_C_API obx_err | obx_query_prop_sum (OBX_query_prop *query, double *out_sum, int64_t *out_count) |
| Calculate the sum of the given floating-point property across all objects matching the query.
|
|
OBX_C_API obx_err | obx_query_prop_min_int (OBX_query_prop *query, int64_t *out_minimum, int64_t *out_count) |
| Find the minimum value of the given property across all objects matching the query.
|
|
OBX_C_API obx_err | obx_query_prop_max_int (OBX_query_prop *query, int64_t *out_maximum, int64_t *out_count) |
| Find the maximum value of the given property across all objects matching the query.
|
|
OBX_C_API obx_err | obx_query_prop_sum_int (OBX_query_prop *query, int64_t *out_sum, int64_t *out_count) |
| Calculate the sum of the given property across all objects matching the query.
|
|
OBX_C_API OBX_string_array * | obx_query_prop_find_strings (OBX_query_prop *query, const char *value_if_null) |
| Return an array of strings stored as the given property across all objects matching the query.
|
|
OBX_C_API OBX_int64_array * | obx_query_prop_find_int64s (OBX_query_prop *query, const int64_t *value_if_null) |
| Return an array of ints stored as the given property across all objects matching the query.
|
|
OBX_C_API OBX_int32_array * | obx_query_prop_find_int32s (OBX_query_prop *query, const int32_t *value_if_null) |
| Return an array of ints stored as the given property across all objects matching the query.
|
|
OBX_C_API OBX_int16_array * | obx_query_prop_find_int16s (OBX_query_prop *query, const int16_t *value_if_null) |
| Return an array of ints stored as the given property across all objects matching the query.
|
|
OBX_C_API OBX_int8_array * | obx_query_prop_find_int8s (OBX_query_prop *query, const int8_t *value_if_null) |
| Return an array of ints stored as the given property across all objects matching the query.
|
|
OBX_C_API OBX_double_array * | obx_query_prop_find_doubles (OBX_query_prop *query, const double *value_if_null) |
| Return an array of doubles stored as the given property across all objects matching the query.
|
|
OBX_C_API OBX_float_array * | obx_query_prop_find_floats (OBX_query_prop *query, const float *value_if_null) |
| Return an array of int stored as the given property across all objects matching the query.
|
|
OBX_C_API OBX_observer * | obx_observe (OBX_store *store, obx_observer *callback, void *user_data) |
| Create an observer (callback) to be notified about all data changes (for all object types). The callback is invoked right after a successful commit.
|
|
OBX_C_API OBX_observer * | obx_observe_single_type (OBX_store *store, obx_schema_id type_id, obx_observer_single_type *callback, void *user_data) |
| Create an observer (callback) to be notified about data changes for a given object type. The callback is invoked right after a successful commit.
|
|
OBX_C_API obx_err | obx_observer_close (OBX_observer *observer) |
| Free the memory used by the given observer and unsubscribe it from its box or query.
|
|
OBX_C_API OBX_tree_options * | obx_tree_options () |
| Creates a options object that is passed to tree creation via obx_tree().
|
|
OBX_C_API void | obx_tree_options_free (OBX_tree_options *options) |
| Free the tree options if they were not used (and "consumed") by obx_tree(). Note: Only free unused options, obx_tree() frees the options internally.
|
|
OBX_C_API obx_err | obx_tree_opt_path_delimiter (OBX_tree_options *options, char path_delimiter) |
| Adjusts the path delimiter character, which is by default "/".
|
|
OBX_C_API obx_err | obx_tree_opt_flags (OBX_tree_options *options, uint32_t flags) |
| Sets the given OBXTreeOptionFlags at the tree options. Combine multiple flags using bitwise OR.
|
|
OBX_C_API OBX_tree * | obx_tree (OBX_store *store, OBX_tree_options *options) |
| Creates a tree for the given store.
|
|
OBX_C_API void | obx_tree_close (OBX_tree *tree) |
|
OBX_C_API OBX_tree_cursor * | obx_tree_cursor (OBX_tree *tree, OBX_txn *txn) |
| To get/put data from tree, you need to create a tree cursor using this method.
|
|
OBX_C_API size_t | obx_tree_node_conflict_count (OBX_tree *tree) |
| Gets the number of currently tracked node conflicts (non-unique nodes at the same path). This count gets resent when conflicts get consolidated. Only tracked if OBXTreeOptionFlags_DetectNonUniqueNodes (or OBXTreeOptionFlags_AutoConsolidateNonUniqueNodes) is set.
|
|
OBX_C_API void | obx_tree_cursor_close (OBX_tree_cursor *cursor) |
| Closes the tree cursor, e.g. before a transaction is ending. The cursor cannot be used afterwards (consider obx_tree_cursor_reset() if you want to keep using it).
|
|
OBX_C_API obx_err | obx_tree_cursor_txn (OBX_tree_cursor *cursor, OBX_txn *txn) |
| Sets or clears a transaction from the tree cursor.
|
|
OBX_C_API obx_err | obx_tree_cursor_get_raw (OBX_tree_cursor *cursor, const char *path, const void **data, size_t *size, const void **metadata, size_t *metadata_size) |
| A "low-level" get operation to access a tree leaf using the raw FlatBuffer bytes stored in the database. As usual, the data is only valid during the lifetime of the transaction and before the first write to the DB. An advantage of using "raw" operations is that custom properties can be passed in the FlatBuffer.
|
|
OBX_C_API const char * | obx_tree_cursor_get_leaf_path (OBX_tree_cursor *cursor, obx_id leaf_id) |
| Gets the full path (from the root) of the given leaf ID.
|
|
OBX_C_API obx_err | obx_tree_cursor_put_raw (OBX_tree_cursor *cursor, const char *path, void *leaf_data, size_t leaf_data_size, OBXPropertyType type, obx_id *out_id, void *leaf_metadata, size_t leaf_metadata_size, OBXPutMode leaf_put_mode) |
| A "low-level" put operation for a tree leaf using given raw FlatBuffer bytes. Any non-existing branches and meta nodes are put on the fly if an optional meta-leaf FlatBuffers is given. A typical usage pattern is to first try without the meta-leaf, and if it does not work, create the meta-leaf and call again with the meta leaf. This approach takes into account that meta-leaves typically exist, and thus no resources are wasted for meta-leaf creation if it's not required. An advantage of using "raw" operations is that custom properties can be passed in the FlatBuffers.
|
|
OBX_C_API obx_err | obx_tree_cursor_consolidate_node_conflicts (OBX_tree_cursor *cursor, size_t *out_consolidated_count) |
| Explicitly consolidates tree node conflicts (non unique nodes sharing a common path). See also obx_tree_async_consolidate_node_conflicts() for an asynchronous version.
|
|
OBX_C_API OBX_tree_leaves_info * | obx_tree_cursor_get_child_leaves_info (OBX_tree_cursor *cursor, const char *path) |
| Given an existing path, return all existing leaves with their paths. As this traverses the data tree (i.e. not the meta tree), it will only return nodes that exist (obviously). Thus, the meta tree may contain additional paths, but these are unused by the data tree (currently at least).
|
|
OBX_C_API size_t | obx_tree_leaves_info_size (OBX_tree_leaves_info *leaves_info) |
| Gets the number of leaves from the given leaves info.
|
|
OBX_C_API const char * | obx_tree_leaves_info_path (OBX_tree_leaves_info *leaves_info, size_t index) |
| Gets the path of a given leaf (by index).
|
|
OBX_C_API OBXPropertyType | obx_tree_leaves_info_type (OBX_tree_leaves_info *leaves_info, size_t index) |
| Gets the property type (as OBXPropertyType) of a given leaf (by index).
|
|
OBX_C_API obx_id | obx_tree_leaves_info_id (OBX_tree_leaves_info *leaves_info, size_t index) |
| Gets the id of a given leaf (by index).
|
|
OBX_C_API void | obx_tree_leaves_info_free (OBX_tree_leaves_info *leaves_info) |
| Frees a leaves info reference.
|
|
OBX_C_API obx_err | obx_tree_async_get_raw (OBX_tree *tree, const char *path, bool with_metadata, obx_tree_async_get_callback *callback, void *callback_user_data) |
| Like obx_tree_cursor_get_raw(), but asynchronous.
|
|
OBX_C_API obx_err | obx_tree_async_put_raw (OBX_tree *tree, const char *path, void *leaf_data, size_t leaf_data_size, OBXPropertyType type, void *leaf_metadata, size_t leaf_metadata_size, OBXPutMode leaf_put_mode, obx_tree_async_put_callback *callback, void *callback_user_data) |
| Like obx_tree_cursor_put_raw(), but asynchronous.
|
|
OBX_C_API obx_err | obx_tree_async_consolidate_node_conflicts (OBX_tree *tree) |
| Explicitly consolidates tree node conflicts (non unique nodes sharing a common path) asynchronously. See also obx_tree_cursor_consolidate_node_conflicts() for a synchronous version.
|
|
OBX_C_API OBX_weak_store * | obx_weak_store (OBX_store *store) |
| Creates a weak reference to the given store.
|
|
OBX_C_API void | obx_weak_store_free (OBX_weak_store *weak_store) |
| Frees a weak store reference.
|
|
OBX_C_API OBX_weak_store * | obx_weak_store_by_id (uint64_t store_id) |
| Tries to get a weak reference to the store with the given ID.
|
|
OBX_C_API OBX_store * | obx_weak_store_lock (OBX_weak_store *weak_store) |
| Tries to create a regular store instance for the given weak reference.
|
|
OBX_C_API void | obx_bytes_free (OBX_bytes *bytes) |
|
OBX_C_API void | obx_bytes_score_array_free (OBX_bytes_score_array *array) |
| Free the array struct.
|
|
OBX_C_API OBX_bytes_array * | obx_bytes_array (size_t count) |
| Allocate a bytes array struct of the given size, ready for the data to be pushed.
|
|
OBX_C_API obx_err | obx_bytes_array_set (OBX_bytes_array *array, size_t index, const void *data, size_t size) |
| Set the given data as the index in the bytes array. The data is not copied, just referenced through the pointer.
|
|
OBX_C_API void | obx_bytes_array_free (OBX_bytes_array *array) |
| Free the bytes array struct.
|
|
OBX_C_API OBX_id_array * | obx_id_array (const obx_id *ids, size_t count) |
| Create an ID array struct, copying the given IDs as the contents.
|
|
OBX_C_API void | obx_id_array_free (OBX_id_array *array) |
| Free the array struct.
|
|
OBX_C_API void | obx_string_array_free (OBX_string_array *array) |
| Free the array struct.
|
|
OBX_C_API void | obx_id_score_array_free (OBX_id_score_array *array) |
| Free the array struct.
|
|
OBX_C_API void | obx_int64_array_free (OBX_int64_array *array) |
| Free the array struct.
|
|
OBX_C_API void | obx_int32_array_free (OBX_int32_array *array) |
| Free the array struct.
|
|
OBX_C_API void | obx_int16_array_free (OBX_int16_array *array) |
| Free the array struct.
|
|
OBX_C_API void | obx_int8_array_free (OBX_int8_array *array) |
| Free the array struct.
|
|
OBX_C_API void | obx_double_array_free (OBX_double_array *array) |
| Free the array struct.
|
|
OBX_C_API void | obx_float_array_free (OBX_float_array *array) |
| Free the array struct.
|
|
OBX_C_API obx_err | obx_posix_sem_prefix_set (const char *prefix) |
| Only for Apple platforms: set the prefix to use for mutexes based on POSIX semaphores. You must supply the application group identifier for sand-boxed macOS apps here; see also: https://developer.apple.com/library/archive/documentation/Security/Conceptual/AppSandboxDesignGuide/AppSandboxInDepth/AppSandboxInDepth.html#//apple_ref/doc/uid/TP40011183-CH3-SW24.
|
|
OBX_C_API OBX_admin_options * | obx_admin_opt () |
| Create a default set of admin options.
|
|
OBX_C_API obx_err | obx_admin_opt_store (OBX_admin_options *opt, OBX_store *store) |
| Configure admin with an existing, open OBX_store*.
|
|
OBX_C_API obx_err | obx_admin_opt_store_path (OBX_admin_options *opt, const char *directory) |
| Configure admin with an existing, open OBX_store*.
|
|
OBX_C_API obx_err | obx_admin_opt_bind (OBX_admin_options *opt, const char *uri) |
| Set the address and port on which the underlying http-server should server the admin web UI. Defaults to "http://127.0.0.1:8081".
|
|
OBX_C_API obx_err | obx_admin_opt_ssl_cert (OBX_admin_options *opt, const char *cert_path) |
| Configure the server to use SSL, with the given certificate.
|
|
OBX_C_API obx_err | obx_admin_opt_num_threads (OBX_admin_options *opt, size_t num_threads) |
| Sets the number of worker threads the http-server uses to serve requests. Default: 4.
|
|
OBX_C_API obx_err | obx_admin_opt_unsecured_no_authentication (OBX_admin_options *opt, bool value) |
| Disables authentication to make the web app accessible to anyone, e.g. to allow recovery if users have locked themselves out. Otherwise, if users have been defined, authentication is enforced.
|
|
OBX_C_API obx_err | obx_admin_opt_user_management (OBX_admin_options *opt, bool value) |
| Disable user management in the database - this is usually only done during development, with local-only access.
|
|
OBX_C_API obx_err | obx_admin_opt_log_requests (OBX_admin_options *opt, bool value) |
| Logs request info, e.g. timing for serving a request.
|
|
OBX_C_API obx_err | obx_admin_opt_free (OBX_admin_options *opt) |
| Free the options. Note: Only free unused options, obx_admin() frees the options internally.
|
|
OBX_C_API OBX_admin * | obx_admin (OBX_admin_options *options) |
| Initialize the http-server with the given options. Note: the given options are always freed by this function, including when an error occurs.
|
|
OBX_C_API uint16_t | obx_admin_port (OBX_admin *admin) |
| Returns a port this server listens on. This is especially useful if the port was assigned arbitrarily (a "0" port was used in the URL given to obx_admin_opt_bind()).
|
|
OBX_C_API obx_err | obx_admin_close (OBX_admin *admin) |
| Stop the http-server and free all the resources.
|
|