Ditto 4.8.0-rc.2
|
The entrypoint to the Ditto SDK. More...
#include <Ditto.hpp>
Classes | |
struct | Fields |
Public Member Functions | |
Ditto (std::shared_ptr< Identity > identity=Identity::OfflinePlayground(), std::string persistence_dir="") | |
Initializes a new Ditto instance. | |
Ditto (Ditto const &other)=delete | |
Ditto (Ditto &&other) noexcept | |
Ditto & | operator= (Ditto const &other)=delete |
Ditto & | operator= (Ditto &&other) noexcept |
std::shared_ptr< Authenticator > | get_auth () const |
Provides access to authentication information and methods for logging on to Ditto Cloud. | |
Store & | get_store () const |
Provides access to the SDK's store functionality. | |
SmallPeerInfo & | get_small_peer_info () const |
Provides access to the SDK's Small Peer Info functionality. | |
Sync & | sync () const |
Provides access to the SDK's sync functionality. | |
Presence & | get_presence () const |
Provides access to the SDK's presence functionality. | |
DiskUsage & | get_disk_usage () const |
Provides access to the SDK's disk usage. | |
TransportConfig | get_transport_config () const |
Returns the current transport config. | |
bool | get_is_sync_active () const |
Returns a flag indicating whether or not sync is active. Use start_sync to activate sync and stop_sync to deactivate sync. | |
void | set_offline_only_license_token (std::string license_token) |
Activate an offline Ditto instance by setting a license token. You cannot initiate sync on an offline (OfflinePlayground, Manual or SharedKey) Ditto instance before you have activated it. | |
void | set_device_name (std::string const &name) |
Set a custom identifier for the current device. | |
void | start_sync () const |
Starts the network transports. Ditto will connect to other devices and sync with them where appropriate. | |
void | stop_sync () const |
Stops all network transports. | |
void | disable_sync_with_v3 () const |
Disable sync with peers running version 3 or lower of the Ditto SDK. | |
void | set_transport_config (TransportConfig config) |
Assign a new transports configuration. | |
void | update_transport_config (std::function< void(TransportConfig &config)> lambda) |
Convenience method to update the current transport config of the receiver. | |
void | run_garbage_collection () const |
Removes all sync metadata for any remote peers which aren't currently connected. | |
std::string | get_app_id () const |
Get the Ditto application Id. | |
std::string | get_persistence_directory () const |
The persistence directory used by Ditto to persist data. | |
PresenceObserver | observe_peers (PresenceCallback cb) |
Request information about Ditto peers in range of this device. | |
void | close () |
Shut down Ditto and release all resources. Must be called before recreating a Ditto instance that uses the same persistence directory. | |
Static Public Member Functions | |
static std::string | get_sdk_version () |
Returns a string identifying the version of the Ditto SDK. | |
static bool | get_logging_enabled () |
Gets whether or not logging is enabled for Ditto. | |
static void | set_logging_enabled (bool enabled) |
Sets whether or not logging is enabled for Ditto. | |
static bool | get_emoji_log_level_headings_enabled () |
Gets whether or not emoji log level headings are enabled for Ditto. | |
static void | set_emoji_log_level_headings_enabled (bool enabled) |
Sets whether or not emoji log level headings are enabled for Ditto. | |
static LogLevel | get_minimum_log_level () |
Gets the minimum log level at which logs will be emitted for Ditto. | |
static void | set_minimum_log_level (LogLevel log_level) |
Sets the minimum log level at which logs should be emitted for Ditto. | |
The entrypoint to the Ditto SDK.
For a Ditto instance to continue to connect to other devices it must be kept in scope.
|
explicit |
void ditto::Ditto::disable_sync_with_v3 | ( | ) | const |
Disable sync with peers running version 3 or lower of the Ditto SDK.
Required for the execution of mutating DQL statements.
This setting spreads to other peers on connection. Those peers will in turn spread it further until all peers in the mesh take on the same setting. This is irreversible and will persist across restarts of the Ditto instance.
Calling this method before start_sync() is recommended whenever possible. This improves performance of initial sync when this peer has never before connected to a Ditto mesh for which sync with v3 peers is disabled.
DittoError | thrown if the operation fails. |
std::string ditto::Ditto::get_app_id | ( | ) | const |
std::shared_ptr< Authenticator > ditto::Ditto::get_auth | ( | ) | const |
Provides access to authentication information and methods for logging on to Ditto Cloud.
Authenticator
. DiskUsage & ditto::Ditto::get_disk_usage | ( | ) | const |
Provides access to the SDK's disk usage.
DiskUsage
object.
|
static |
bool ditto::Ditto::get_is_sync_active | ( | ) | const |
Returns a flag indicating whether or not sync is active. Use start_sync
to activate sync and stop_sync
to deactivate sync.
|
static |
|
static |
std::string ditto::Ditto::get_persistence_directory | ( | ) | const |
The persistence directory used by Ditto to persist data.
It is not recommended to directly read or write to this directory as its structure and contents are managed by Ditto and may change in future versions.
When Log::set_logging_enabled(), logs may be written to this directory even after a Ditto instance was deallocated. Please refer to the documentation of Log for more information.
Presence & ditto::Ditto::get_presence | ( | ) | const |
Provides access to the SDK's presence functionality.
Presence
object.
|
static |
SmallPeerInfo & ditto::Ditto::get_small_peer_info | ( | ) | const |
Provides access to the SDK's Small Peer Info functionality.
SmallPeerInfo
object. Store & ditto::Ditto::get_store | ( | ) | const |
Provides access to the SDK's store functionality.
Store
object. TransportConfig ditto::Ditto::get_transport_config | ( | ) | const |
Returns the current transport config.
PresenceObserver ditto::Ditto::observe_peers | ( | PresenceCallback | cb | ) |
Request information about Ditto peers in range of this device.
This method returns an observer which should be held as long as updates are required. A newly registered observer will have a peers update delivered to it immediately. Then it will be invoked repeatedly when Ditto devices come and go, or the active connections to them change.
cb |
void ditto::Ditto::run_garbage_collection | ( | ) | const |
Removes all sync metadata for any remote peers which aren't currently connected.
This method shouldn't usually be called. Manually running garbage collection often will result in slower sync times. Ditto automatically runs a garbage a collection process in the background at optimal times.
Manually running garbage collection is typically only useful during testing if large amounts of data are being generated. Alternatively, if an entire data set is to be evicted and it's clear that maintaining this metadata isn't necessary, then garbage collection could be run after evicting the old data.
void ditto::Ditto::set_device_name | ( | std::string const & | name | ) |
Set a custom identifier for the current device.
When using observe_peers(), each remote peer is represented by a short UTF-8 “device name”. By default this will be a truncated version of the device’s hostname.
Changes to this property after start_sync() was called will only take effect after the next restart of sync. The value does not need to be unique among peers. Device names longer than 24 bytes will be truncated once start_sync() is called.
|
static |
|
static |
|
static |
void ditto::Ditto::set_offline_only_license_token | ( | std::string | license_token | ) |
Activate an offline Ditto instance by setting a license token. You cannot initiate sync on an offline (OfflinePlayground, Manual or SharedKey) Ditto instance before you have activated it.
[in] | license_str | the license token to activate the Ditto instance with, which you can find on the Ditto portal (https://portal.ditto.live). |
void ditto::Ditto::set_transport_config | ( | TransportConfig | config | ) |
Assign a new transports configuration.
By default peer-to-peer transports (Bluetooth and WiFi, where available) are enabled.
You may use this method to alter the configuration at any time. Sync will not begin until start_sync is called.
void ditto::Ditto::start_sync | ( | ) | const |
Starts the network transports. Ditto will connect to other devices and sync with them where appropriate.
By default Ditto will enable all peer-to-peer transport types. The network configuration can be customized using set_transport_config.
Performance of initial sync when bootstrapping a new peer can be improved by calling disable_sync_with_v3() before calling start_sync(). Only do this when all peers in the mesh are known to be running Ditto v4 or higher.
DittoError | thrown if the Ditto instance hasn't been activated by a successful call to set_license_token. If running on Android, throws if a Context has not been provided via set_android_context. |
void ditto::Ditto::stop_sync | ( | ) | const |
Stops all network transports.
You may continue to use the database locally but no data will sync to or from other devices.
Sync & ditto::Ditto::sync | ( | ) | const |
Provides access to the SDK's sync functionality.
Sync
object. void ditto::Ditto::update_transport_config | ( | std::function< void(TransportConfig &config)> | lambda | ) |
Convenience method to update the current transport config of the receiver.
Invokes the block with a mutable copy of the current transport config which you can alter to your liking. The updated transport config is then set on the receiver.
You may use this method to alter the configuration at any time. Sync will not begin until start_sync
is invoked.