Couchbase Lite C
Couchbase Lite C API
CBLDatabase.h
Go to the documentation of this file.
1//
2// CBLDatabase.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 "fleece/FLSlice.h"
22
24
30#ifdef __APPLE__
31#pragma mark - CONFIGURATION
32#endif
33
37#ifdef COUCHBASE_ENTERPRISE
39typedef CBL_ENUM(uint32_t, CBLEncryptionAlgorithm) {
42};
43
45typedef CBL_ENUM(uint64_t, CBLEncryptionKeySize) {
47};
48
50typedef struct {
52 uint8_t bytes[32];
54#endif
55
57typedef struct {
59#ifdef COUCHBASE_ENTERPRISE
61#endif
63
66
67#ifdef COUCHBASE_ENTERPRISE
75#endif
76
80#ifdef __APPLE__
81#pragma mark - FILE OPERATIONS
82#endif
93
101 FLString toName,
103 CBLError* _cbl_nullable outError) CBLAPI;
104
113 FLString inDirectory,
114 CBLError* _cbl_nullable outError) CBLAPI;
115
119#ifdef __APPLE__
120#pragma mark - LIFECYCLE
121#endif
138 CBLError* _cbl_nullable outError) CBLAPI;
139
142 CBLError* _cbl_nullable outError) CBLAPI;
143
145
149 CBLError* _cbl_nullable outError) CBLAPI;
150
158 CBLError* _cbl_nullable outError) CBLAPI;
159
162 bool commit,
163 CBLError* _cbl_nullable outError) CBLAPI;
164
165#ifdef COUCHBASE_ENTERPRISE
172 const CBLEncryptionKey* _cbl_nullable newKey,
173 CBLError* outError) CBLAPI;
174#endif
175
177typedef CBL_ENUM(uint32_t, CBLMaintenanceType) {
180
183
186
190
196
200 CBLError* _cbl_nullable outError) CBLAPI;
201
205#ifdef __APPLE__
206#pragma mark - ACCESSORS
207#endif
215
219
222
226
230#ifdef __APPLE__
231#pragma mark - LISTENERS
232#endif
249typedef void (*CBLDatabaseChangeListener)(void* _cbl_nullable context,
250 const CBLDatabase* db,
251 unsigned numDocs,
252 FLString docIDs[_cbl_nonnull]);
253
264 void* _cbl_nullable context) CBLAPI;
265 // end of outer \defgroup
268
269
270#ifdef __APPLE__
271#pragma mark - NOTIFICATION SCHEDULING
272#endif
296typedef void (*CBLNotificationsReadyCallback)(void* _cbl_nullable context,
297 CBLDatabase* db);
298
307 void* _cbl_nullable context) CBLAPI;
308
312 // end of outer \defgroup
315
#define CBLAPI
Definition: CBL_Compat.h:98
#define _cbl_nullable
Definition: CBL_Compat.h:86
#define CBL_CAPI_BEGIN
Definition: CBL_Compat.h:99
#define CBL_CAPI_END
Definition: CBL_Compat.h:100
#define CBL_ENUM(_type, _name)
Definition: CBL_Compat.h:56
#define _cbl_warn_unused
Definition: CBL_Compat.h:41
bool CBL_CopyDatabase(FLString fromPath, FLString toName, const CBLDatabaseConfiguration *_cbl_nullable config, CBLError *_cbl_nullable outError)
Copies a database file to a new location, and assigns it a new internal UUID to distinguish it from t...
bool CBLDatabase_EndTransaction(CBLDatabase *, bool commit, CBLError *_cbl_nullable outError)
Ends a transaction, either committing or aborting.
struct CBLDatabase CBLDatabase
A connection to an open database.
Definition: CBLBase.h:182
bool CBLEncryptionKey_FromPassword(CBLEncryptionKey *key, FLString password)
Derives an encryption key from a password.
bool CBLDatabase_Delete(CBLDatabase *, CBLError *_cbl_nullable outError)
Closes and deletes a database.
bool CBLDatabase_Close(CBLDatabase *, CBLError *_cbl_nullable outError)
Closes an open database.
bool CBL_DatabaseExists(FLString name, FLString inDirectory)
Returns true if a database with the given name exists in the given directory.
bool CBLDatabase_ChangeEncryptionKey(CBLDatabase *, const CBLEncryptionKey *_cbl_nullable newKey, CBLError *outError)
Encrypts or decrypts a database, or changes its encryption key.
_cbl_warn_unused CBLDatabase *_cbl_nullable CBLDatabase_Open(FLSlice name, const CBLDatabaseConfiguration *_cbl_nullable config, CBLError *_cbl_nullable outError)
Opens a database, or creates it if it doesn't exist yet, returning a new CBLDatabase instance.
bool CBL_DeleteDatabase(FLString name, FLString inDirectory, CBLError *_cbl_nullable outError)
Deletes a database file.
const CBLDatabaseConfiguration CBLDatabase_Config(const CBLDatabase *)
Returns the database's configuration, as given when it was opened.
void(* CBLDatabaseChangeListener)(void *_cbl_nullable context, const CBLDatabase *db, unsigned numDocs, FLString docIDs[])
A database change listener callback, invoked after one or more documents are changed on disk.
Definition: CBLDatabase.h:249
_cbl_warn_unused CBLListenerToken * CBLDatabase_AddChangeListener(const CBLDatabase *db, CBLDatabaseChangeListener listener, void *_cbl_nullable context)
Registers a database change listener callback.
CBLEncryptionAlgorithm
Database encryption algorithms (available only in the Enterprise Edition).
Definition: CBLDatabase.h:39
bool CBLDatabase_PerformMaintenance(CBLDatabase *db, CBLMaintenanceType type, CBLError *_cbl_nullable outError)
Performs database maintenance.
_cbl_warn_unused FLStringResult CBLDatabase_Path(const CBLDatabase *)
Returns the database's full filesystem path.
CBLDatabaseConfiguration CBLDatabaseConfiguration_Default(void)
Returns the default database configuration.
CBLMaintenanceType
Maintenance Type used when performing database maintenance.
Definition: CBLDatabase.h:177
bool CBLDatabase_BeginTransaction(CBLDatabase *, CBLError *_cbl_nullable outError)
Begins a transaction.
uint64_t CBLDatabase_Count(const CBLDatabase *)
Returns the number of documents in the database.
CBLEncryptionKeySize
Encryption key sizes (in bytes).
Definition: CBLDatabase.h:45
FLString CBLDatabase_Name(const CBLDatabase *)
Returns the database's name.
@ kCBLEncryptionNone
No encryption (default)
Definition: CBLDatabase.h:40
@ kCBLEncryptionAES256
AES with 256-bit key.
Definition: CBLDatabase.h:41
@ kCBLMaintenanceTypeIntegrityCheck
Check for the database’s corruption. If found, an error will be returned.
Definition: CBLDatabase.h:185
@ kCBLMaintenanceTypeCompact
Compact the database file and delete unused attachments.
Definition: CBLDatabase.h:179
@ kCBLMaintenanceTypeOptimize
Partially scan indexes to gather database statistics that help optimize queries.
Definition: CBLDatabase.h:189
@ kCBLMaintenanceTypeReindex
Rebuild the entire database's indexes.
Definition: CBLDatabase.h:182
@ kCBLMaintenanceTypeFullOptimize
Fully scans all indexes to gather database statistics that help optimize queries.
Definition: CBLDatabase.h:194
@ kCBLEncryptionKeySizeAES256
Key size for kCBLEncryptionAES256.
Definition: CBLDatabase.h:46
void(* CBLNotificationsReadyCallback)(void *_cbl_nullable context, CBLDatabase *db)
Callback indicating that the database (or an object belonging to it) is ready to call one or more lis...
Definition: CBLDatabase.h:296
void CBLDatabase_SendNotifications(CBLDatabase *db)
Immediately issues all pending notifications for this database, by calling their listener callbacks.
struct CBLListenerToken CBLListenerToken
An opaque 'cookie' representing a registered listener callback.
Definition: CBLBase.h:259
void CBLDatabase_BufferNotifications(CBLDatabase *db, CBLNotificationsReadyCallback callback, void *_cbl_nullable context)
Switches the database to buffered-notification mode.
#define CBL_REFCOUNTED(TYPE, NAME)
Definition: CBLBase.h:170
Database configuration options.
Definition: CBLDatabase.h:57
FLString directory
The parent directory of the database.
Definition: CBLDatabase.h:58
CBLEncryptionKey encryptionKey
The database's encryption key (if any)
Definition: CBLDatabase.h:60
Encryption key specified in a CBLDatabaseConfiguration.
Definition: CBLDatabase.h:50
CBLEncryptionAlgorithm algorithm
Encryption algorithm.
Definition: CBLDatabase.h:51
A struct holding information about an error.
Definition: CBLBase.h:104
A simple reference to a block of memory.
Definition: FLSlice.h:46
A heap-allocated block of memory returned from an API call.
Definition: FLSlice.h:64