Skip to content
Snippets Groups Projects
Commit f0e0512a authored by hofmockel's avatar hofmockel
Browse files

Add definitions to wrap BackupEngine

parent 81833395
No related branches found
No related tags found
No related merge requests found
from libcpp cimport bool as cpp_bool
from libcpp.string cimport string
from libcpp.vector cimport vector
from libc.stdint cimport uint32_t
from libc.stdint cimport int64_t
from libc.stdint cimport uint64_t
from status cimport Status
from db cimport DB
from env cimport Env
cdef extern from "utilities/backupable_db.h" namespace "rocksdb":
ctypedef uint32_t BackupID
cdef cppclass BackupableDBOptions:
BackupableDBOptions(const string& backup_dir)
cdef struct BackupInfo:
BackupID backup_id
int64_t timestamp
uint64_t size
cdef cppclass BackupEngine:
Status CreateNewBackup(DB*, cpp_bool) nogil except+
Status PurgeOldBackups(uint32_t) nogil except+
Status DeleteBackup(BackupID) nogil except+
void StopBackup() nogil except+
void GetBackupInfo(vector[BackupInfo]*) nogil except+
Status RestoreDBFromBackup(BackupID, string&, string&) nogil except+
Status RestoreDBFromLatestBackup(string&, string&) nogil except+
void DeleteBackupsNewerThan(uint64_t) nogil except+
cdef BackupEngine* NewBackupEngine "rocksdb::BackupEngine::NewBackupEngine"(
Env*,
BackupableDBOptions&)
cdef extern from "rocksdb/env.h" namespace "rocksdb":
cdef cppclass Env:
Env()
cdef Env* Env_Default "rocksdb::Env::Default"()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment