Couchbase Lite C
Couchbase Lite C API
CBLReplicator.h
Go to the documentation of this file.
1//
2// CBLReplicator.h
3//
4// Copyright (c) 2018 Couchbase, Inc All rights reserved.
5//
6// Licensed under the Apache License, Version 2.0 (the "License");
7// you may not use this file except in compliance with the License.
8// You may obtain a copy of the License at
9//
10// http://www.apache.org/licenses/LICENSE-2.0
11//
12// Unless required by applicable law or agreed to in writing, software
13// distributed under the License is distributed on an "AS IS" BASIS,
14// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15// See the License for the specific language governing permissions and
16// limitations under the License.
17//
18
19#pragma once
20#include "CBLBase.h"
21#include "CBLTLSIdentity.h"
22
24
35
37typedef struct CBLEndpoint CBLEndpoint;
38
50 CBLError* _cbl_nullable outError) CBLAPI;
51
52#ifdef COUCHBASE_ENTERPRISE
56#endif
57
60
61
64
68
74
75#ifdef COUCHBASE_ENTERPRISE
76
81
82#endif
83
86
87
89typedef CBL_ENUM(uint8_t, CBLReplicatorType) {
93};
94
95
97typedef CBL_OPTIONS(unsigned, CBLDocumentFlags) {
101
102
111typedef bool (*CBLReplicationFilter)(void* _cbl_nullable context,
112 CBLDocument* document,
113 CBLDocumentFlags flags);
114
138 FLString documentID,
139 const CBLDocument* _cbl_nullable localDocument,
140 const CBLDocument* _cbl_nullable remoteDocument);
141
144
145
147typedef CBL_ENUM(uint8_t, CBLProxyType) {
150};
151
152
154typedef struct {
157 uint16_t port;
161
162#ifdef COUCHBASE_ENTERPRISE
163
187 void* context,
188 FLString documentID,
189 FLDict properties,
190 FLString keyPath,
191 FLSlice input,
192 FLStringResult* algorithm,
193 FLStringResult* kid,
194 CBLError* error
195);
196
222 void* context,
223 FLString documentID,
224 FLDict properties,
225 FLString keyPath,
226 FLSlice input,
227 FLString algorithm,
228 FLString kid,
229 CBLError* error
230);
231
254 void* context,
255 FLString scope,
256 FLString collection,
257 FLString documentID,
258 FLDict properties,
259 FLString keyPath,
260 FLSlice input,
261 FLStringResult* algorithm,
262 FLStringResult* kid,
263 CBLError* error
264);
265
290 void* context,
291 FLString scope,
292 FLString collection,
293 FLString documentID,
294 FLDict properties,
295 FLString keyPath,
296 FLSlice input,
297 FLString algorithm,
298 FLString kid,
299 CBLError* error
300);
301
302#endif
303
305typedef struct {
307
309
312
318
320typedef struct {
327
328 //-- Types:
329
332
335
336 //-- Auto Purge:
337
347
348 //-- Retry Logic:
349
354 unsigned maxAttempts;
355
359
360 //-- WebSocket:
361
364 unsigned heartbeat;
365
366#ifdef __CBL_REPLICATOR_NETWORK_INTERFACE__
371 FLString networkInterface;
372#endif
373
374 //-- HTTP settings:
375
379
380 //-- TLS settings:
381
386
387 //-- Filtering:
388
394
399
404
409
410 //-- Conflict Resolver:
411
416
417 //-- Context:
419
420#ifdef COUCHBASE_ENTERPRISE
421 //-- Property Encryption
426
431
434
437#endif
438
441
444
445 //-- Advanced HTTP settings:
446
456
457#ifdef COUCHBASE_ENTERPRISE
461#endif
463
464
472
476 CBLError* _cbl_nullable outError) CBLAPI;
477
480
490 bool resetCheckpoint) CBLAPI;
491
496
503 bool reachable) CBLAPI;
504
511
527
532typedef struct {
533 float complete;
534 uint64_t documentCount;
536
538typedef struct {
543
546
565
577 FLString docID,
578 CBLError* _cbl_nullable outError) CBLAPI;
579
590 const CBLCollection* collection,
591 CBLError* _cbl_nullable outError) CBLAPI;
592
602 FLString docID,
603 const CBLCollection* collection,
604 CBLError* _cbl_nullable outError) CBLAPI;
605
613typedef void (*CBLReplicatorChangeListener)(void* _cbl_nullable context,
614 CBLReplicator *replicator,
615 const CBLReplicatorStatus *status);
616
621 void* _cbl_nullable context) CBLAPI;
622
623
625typedef struct {
632
642typedef void (*CBLDocumentReplicationListener)(void *context,
643 CBLReplicator *replicator,
644 bool isPush,
645 unsigned numDocuments,
646 const CBLReplicatedDocument* documents);
647
652 void* _cbl_nullable context) CBLAPI;
653
654#ifdef COUCHBASE_ENTERPRISE
655
660
661
662#endif
663
#define CBL_OPTIONS(_type, _name)
Definition: CBL_Compat.h:63
#define CBLAPI
Definition: CBL_Compat.h:104
#define _cbl_nullable
Definition: CBL_Compat.h:92
#define CBL_CAPI_BEGIN
Definition: CBL_Compat.h:105
#define CBL_CAPI_END
Definition: CBL_Compat.h:106
#define CBL_PUBLIC
Definition: CBL_Compat.h:123
#define CBL_ENUM(_type, _name)
Definition: CBL_Compat.h:62
#define _cbl_warn_unused
Definition: CBL_Compat.h:40
struct CBLCert CBLCert
Definition: CBLBase.h:249
struct CBLTLSIdentity CBLTLSIdentity
An opaque object representing the TLSIdentity.
Definition: CBLTLSIdentity.h:269
struct CBLCollection CBLCollection
A collection, a document container.
Definition: CBLBase.h:195
struct CBLDatabase CBLDatabase
A connection to an open database.
Definition: CBLBase.h:183
struct CBLDocument CBLDocument
An in-memory copy of a document.
Definition: CBLBase.h:204
struct CBLListenerToken CBLListenerToken
An opaque 'cookie' representing a registered listener callback.
Definition: CBLBase.h:284
#define CBL_REFCOUNTED(TYPE, NAME)
Definition: CBLBase.h:171
CBLProxyType
Types of proxy servers, for CBLProxySettings.
Definition: CBLReplicator.h:147
struct CBLAuthenticator CBLAuthenticator
An opaque object representing authentication credentials for a remote server.
Definition: CBLReplicator.h:63
_cbl_warn_unused CBLAuthenticator * CBLAuth_CreateSession(FLString sessionID, FLString cookieName)
Creates an authenticator using a Couchbase Sync Gateway login session identifier, and optionally a co...
struct CBLEndpoint CBLEndpoint
An opaque object representing the location of a database to replicate with.
Definition: CBLReplicator.h:37
bool(* CBLReplicationFilter)(void *_cbl_nullable context, CBLDocument *document, CBLDocumentFlags flags)
A callback that can decide whether a particular document should be pushed or pulled.
Definition: CBLReplicator.h:111
void CBLReplicator_Start(CBLReplicator *replicator, bool resetCheckpoint)
Starts a replicator, asynchronously.
FLSliceResult(* CBLPropertyDecryptor)(void *context, FLString documentID, FLDict properties, FLString keyPath, FLSlice input, FLString algorithm, FLString kid, CBLError *error)
Callback that decrypts encrypted CBLEncryptable properties in documents of the default collection pul...
Definition: CBLReplicator.h:221
_cbl_warn_unused CBLAuthenticator * CBLAuth_CreatePassword(FLString username, FLString password)
Creates an authenticator for HTTP Basic (username/password) auth.
_cbl_warn_unused CBLCert *_cbl_nullable CBLReplicator_ServerCertificate(CBLReplicator *)
Gets the TLS certificate received when connecting to the server.
FLDict _cbl_nullable CBLReplicator_PendingDocumentIDs2(CBLReplicator *, const CBLCollection *collection, CBLError *_cbl_nullable outError)
Indicates which documents in the given collection have local changes that have not yet been pushed to...
bool CBLReplicator_IsDocumentPending(CBLReplicator *repl, FLString docID, CBLError *_cbl_nullable outError)
Indicates whether the document in the default collection with the given ID has local changes that hav...
FLSliceResult(* CBLDocumentPropertyEncryptor)(void *context, FLString scope, FLString collection, FLString documentID, FLDict properties, FLString keyPath, FLSlice input, FLStringResult *algorithm, FLStringResult *kid, CBLError *error)
Callback that encrypts CBLEncryptable properties in the documents pushed by the replicator.
Definition: CBLReplicator.h:253
CBL_PUBLIC const FLString kCBLAuthDefaultCookieName
The name of the HTTP cookie used by Sync Gateway to store session keys.
void CBLReplicator_Stop(CBLReplicator *)
Stops a running replicator, asynchronously.
struct CBLReplicator CBLReplicator
A background task that syncs a CBLDatabase with a remote server or peer.
Definition: CBLBase.h:235
_cbl_warn_unused CBLReplicator *_cbl_nullable CBLReplicator_Create(const CBLReplicatorConfiguration *, CBLError *_cbl_nullable outError)
Creates a replicator with the given configuration.
_cbl_warn_unused FLDict _cbl_nullable CBLReplicator_PendingDocumentIDs(CBLReplicator *, CBLError *_cbl_nullable outError)
Indicates which documents in the default collection have local changes that have not yet been pushed ...
void(* CBLReplicatorChangeListener)(void *_cbl_nullable context, CBLReplicator *replicator, const CBLReplicatorStatus *status)
A callback that notifies you when the replicator's status changes.
Definition: CBLReplicator.h:613
CBLReplicatorStatus CBLReplicator_Status(CBLReplicator *)
Returns the replicator's current status.
void CBLEndpoint_Free(CBLEndpoint *_cbl_nullable)
Frees a CBLEndpoint object.
void(* CBLDocumentReplicationListener)(void *context, CBLReplicator *replicator, bool isPush, unsigned numDocuments, const CBLReplicatedDocument *documents)
A callback that notifies you when documents are replicated.
Definition: CBLReplicator.h:642
CBL_PUBLIC const CBLConflictResolver CBLDefaultConflictResolver
Default conflict resolver.
CBLReplicatorActivityLevel
The possible states a replicator can be in during its lifecycle.
Definition: CBLReplicator.h:520
bool CBLReplicator_IsDocumentPending2(CBLReplicator *repl, FLString docID, const CBLCollection *collection, CBLError *_cbl_nullable outError)
Indicates whether the document with the given ID in the given collection has local changes that have ...
_cbl_warn_unused CBLListenerToken * CBLReplicator_AddChangeListener(CBLReplicator *, CBLReplicatorChangeListener, void *_cbl_nullable context)
Registers a listener that will be called when the replicator's status changes.
void CBLAuth_Free(CBLAuthenticator *_cbl_nullable)
Frees a CBLAuthenticator object.
FLSliceResult(* CBLPropertyEncryptor)(void *context, FLString documentID, FLDict properties, FLString keyPath, FLSlice input, FLStringResult *algorithm, FLStringResult *kid, CBLError *error)
Callback that encrypts CBLEncryptable properties in the documents of the default collection pushed by...
Definition: CBLReplicator.h:186
CBLDocumentFlags
Flags describing a replicated document.
Definition: CBLReplicator.h:97
_cbl_warn_unused CBLAuthenticator * CBLAuth_CreateCertificate(CBLTLSIdentity *identity)
Creates an authenticator that presents a client certificate to the server during the initial SSL/TLS ...
FLSliceResult(* CBLDocumentPropertyDecryptor)(void *context, FLString scope, FLString collection, FLString documentID, FLDict properties, FLString keyPath, FLSlice input, FLString algorithm, FLString kid, CBLError *error)
Callback that decrypts encrypted CBLEncryptable properties in documents pulled by the replicator.
Definition: CBLReplicator.h:289
CBLReplicatorType
Direction of replication: push, pull, or both.
Definition: CBLReplicator.h:89
void CBLReplicator_SetSuspended(CBLReplicator *repl, bool suspended)
Puts the replicator in or out of "suspended" state.
void CBLReplicator_SetHostReachable(CBLReplicator *, bool reachable)
Informs the replicator whether it's considered possible to reach the remote host with the current net...
_cbl_warn_unused CBLEndpoint * CBLEndpoint_CreateWithLocalDB(CBLDatabase *)
Creates a new endpoint representing another local database.
const CBLDocument *_cbl_nullable(* CBLConflictResolver)(void *_cbl_nullable context, FLString documentID, const CBLDocument *_cbl_nullable localDocument, const CBLDocument *_cbl_nullable remoteDocument)
Conflict-resolution callback for use in replications.
Definition: CBLReplicator.h:137
_cbl_warn_unused CBLListenerToken * CBLReplicator_AddDocumentReplicationListener(CBLReplicator *, CBLDocumentReplicationListener, void *_cbl_nullable context)
Registers a listener that will be called when documents are replicated.
_cbl_warn_unused CBLEndpoint *_cbl_nullable CBLEndpoint_CreateWithURL(FLString url, CBLError *_cbl_nullable outError)
Creates a new endpoint representing a server-based database at the given URL.
const CBLReplicatorConfiguration * CBLReplicator_Config(CBLReplicator *)
Returns the configuration of an existing replicator.
@ kCBLProxyHTTP
HTTP proxy; must support 'CONNECT' method.
Definition: CBLReplicator.h:148
@ kCBLProxyHTTPS
HTTPS proxy; must support 'CONNECT' method.
Definition: CBLReplicator.h:149
@ kCBLReplicatorConnecting
The replicator is connecting to the remote host.
Definition: CBLReplicator.h:523
@ kCBLReplicatorOffline
The replicator is offline, as the remote host is unreachable.
Definition: CBLReplicator.h:522
@ kCBLReplicatorStopped
The replicator is unstarted, finished, or hit a fatal error.
Definition: CBLReplicator.h:521
@ kCBLReplicatorIdle
The replicator is inactive, waiting for changes to sync.
Definition: CBLReplicator.h:524
@ kCBLReplicatorBusy
The replicator is actively transferring data.
Definition: CBLReplicator.h:525
@ kCBLDocumentFlagsAccessRemoved
Lost access to the document on the server.
Definition: CBLReplicator.h:99
@ kCBLDocumentFlagsDeleted
The document has been deleted.
Definition: CBLReplicator.h:98
@ kCBLReplicatorTypePushAndPull
Bidirectional; both push and pull.
Definition: CBLReplicator.h:90
@ kCBLReplicatorTypePush
Pushing changes to the target.
Definition: CBLReplicator.h:91
@ kCBLReplicatorTypePull
Pulling changes from the target.
Definition: CBLReplicator.h:92
const struct _FLDict * FLDict
A reference to a dictionary (map) value.
Definition: FLBase.h:37
const struct _FLArray * FLArray
A reference to an array value.
Definition: FLBase.h:36
A struct holding information about an error.
Definition: CBLBase.h:105
Proxy settings for the replicator.
Definition: CBLReplicator.h:154
uint16_t port
Proxy server port.
Definition: CBLReplicator.h:157
FLString hostname
Proxy server hostname or IP address.
Definition: CBLReplicator.h:156
FLString password
Password for proxy auth.
Definition: CBLReplicator.h:159
FLString username
Username for proxy auth (optional)
Definition: CBLReplicator.h:158
CBLProxyType type
Type of proxy.
Definition: CBLReplicator.h:155
Information about a document that's been pushed or pulled.
Definition: CBLReplicator.h:625
CBLError error
If the code is nonzero, the document failed to replicate.
Definition: CBLReplicator.h:628
FLString collection
The collection name.
Definition: CBLReplicator.h:630
CBLDocumentFlags flags
Indicates whether the document was deleted or removed.
Definition: CBLReplicator.h:627
FLString ID
The document ID.
Definition: CBLReplicator.h:626
FLString scope
The scope name of the collection.
Definition: CBLReplicator.h:629
The collection and the configuration that can be configured specifically for the replication.
Definition: CBLReplicator.h:305
CBLReplicationFilter _cbl_nullable pullFilter
Optional callback to validate incoming docs.
Definition: CBLReplicator.h:311
FLArray _cbl_nullable channels
Optional set of channels to pull from.
Definition: CBLReplicator.h:315
CBLReplicationFilter _cbl_nullable pushFilter
Optional callback to filter which docs are pushed.
Definition: CBLReplicator.h:310
CBLConflictResolver _cbl_nullable conflictResolver
Optional conflict-resolver callback.
Definition: CBLReplicator.h:308
FLArray _cbl_nullable documentIDs
Optional set of document IDs to replicate.
Definition: CBLReplicator.h:316
CBLCollection * collection
The collection.
Definition: CBLReplicator.h:306
The configuration of a replicator.
Definition: CBLReplicator.h:320
void *_cbl_nullable context
Arbitrary value that will be passed to callbacks.
Definition: CBLReplicator.h:418
unsigned maxAttemptWaitTime
Max wait time between retry attempts in seconds.
Definition: CBLReplicator.h:358
const CBLProxySettings *_cbl_nullable proxy
HTTP client proxy settings.
Definition: CBLReplicator.h:377
FLArray _cbl_nullable channels
Optional set of channels to pull from when replicating with the default collection.
Definition: CBLReplicator.h:393
bool disableAutoPurge
If auto purge is active, then the library will automatically purge any documents that the replicating...
Definition: CBLReplicator.h:346
bool continuous
Continuous replication?.
Definition: CBLReplicator.h:334
CBLReplicatorType replicatorType
Push, pull or both.
Definition: CBLReplicator.h:331
CBLReplicationCollection *_cbl_nullable collections
The collections to replicate with the target's endpoint (Required if the database is not set).
Definition: CBLReplicator.h:440
FLSlice pinnedServerCertificate
An X.509 cert (PEM or DER) to "pin" for TLS connections.
Definition: CBLReplicator.h:384
unsigned heartbeat
The heartbeat interval in seconds.
Definition: CBLReplicator.h:364
FLArray _cbl_nullable documentIDs
Optional set of document IDs to replicate when replicating with the default collection.
Definition: CBLReplicator.h:398
unsigned maxAttempts
Max retry attempts where the initial connect to replicate counts toward the given value.
Definition: CBLReplicator.h:354
bool acceptParentDomainCookies
The option to remove the restriction that does not allow the replicator to save the parent-domain coo...
Definition: CBLReplicator.h:455
FLDict _cbl_nullable headers
Extra HTTP headers to add to the WebSocket request.
Definition: CBLReplicator.h:378
size_t collectionCount
The number of collections (Required if the database is not set.
Definition: CBLReplicator.h:443
CBLPropertyDecryptor _cbl_nullable propertyDecryptor
Optional callback to decrypt encrypted CBLEncryptable values of the documents in the default collecti...
Definition: CBLReplicator.h:430
CBLPropertyEncryptor _cbl_nullable propertyEncryptor
Optional callback to encrypt CBLEncryptable values of the documents in the default collection.
Definition: CBLReplicator.h:425
CBLAuthenticator *_cbl_nullable authenticator
Authentication credentials, if needed.
Definition: CBLReplicator.h:376
CBLEndpoint * endpoint
The address of the other database to replicate with (Required)
Definition: CBLReplicator.h:326
CBLConflictResolver _cbl_nullable conflictResolver
Optional conflict-resolver callback.
Definition: CBLReplicator.h:415
CBLDocumentPropertyEncryptor _cbl_nullable documentPropertyEncryptor
Optional callback to encrypt CBLEncryptable values.
Definition: CBLReplicator.h:433
CBLDocumentPropertyDecryptor _cbl_nullable documentPropertyDecryptor
Optional callback to decrypt encrypted CBLEncryptable values.
Definition: CBLReplicator.h:436
CBLReplicationFilter _cbl_nullable pushFilter
Optional callback to filter which docs are pushed when replicating with the default collection.
Definition: CBLReplicator.h:403
FLSlice trustedRootCertificates
Set of anchor certs (PEM format)
Definition: CBLReplicator.h:385
bool acceptOnlySelfSignedServerCertificate
Specify the replicator to accept only self-signed certs.
Definition: CBLReplicator.h:460
CBLReplicationFilter _cbl_nullable pullFilter
Optional callback to validate incoming docs when replicating with the default collection.
Definition: CBLReplicator.h:408
CBLDatabase *_cbl_nullable database
The database to replicate.
Definition: CBLReplicator.h:324
A fractional progress value, ranging from 0.0 to 1.0 as replication progresses.
Definition: CBLReplicator.h:532
uint64_t documentCount
Number of documents transferred so far.
Definition: CBLReplicator.h:534
float complete
Very-approximate fractional completion, from 0.0 to 1.0.
Definition: CBLReplicator.h:533
A replicator's current status.
Definition: CBLReplicator.h:538
CBLError error
Error, if any.
Definition: CBLReplicator.h:541
CBLReplicatorActivityLevel activity
Current state.
Definition: CBLReplicator.h:539
CBLReplicatorProgress progress
Approximate fraction complete.
Definition: CBLReplicator.h:540
A simple reference to a block of memory.
Definition: FLSlice.h:45
A heap-allocated block of memory returned from an API call.
Definition: FLSlice.h:63