2014-05-14 07:20:58 +02:00
|
|
|
// Copyright (c) 2014, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
|
|
|
// This file implements the "bridge" between Java and C++ and enables
|
2014-05-19 07:40:48 +02:00
|
|
|
// calling c++ rocksdb::RestoreBackupableDB and rocksdb::RestoreOptions methods
|
2014-05-14 07:20:58 +02:00
|
|
|
// from Java side.
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <jni.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "include/org_rocksdb_RestoreOptions.h"
|
|
|
|
#include "include/org_rocksdb_RestoreBackupableDB.h"
|
|
|
|
#include "rocksjni/portal.h"
|
2014-07-23 20:15:14 +02:00
|
|
|
#include "rocksdb/utilities/backupable_db.h"
|
2014-05-14 07:20:58 +02:00
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreOptions
|
|
|
|
* Method: newRestoreOptions
|
2014-05-19 07:40:48 +02:00
|
|
|
* Signature: (Z)J
|
2014-05-14 07:20:58 +02:00
|
|
|
*/
|
2014-05-19 07:40:48 +02:00
|
|
|
jlong Java_org_rocksdb_RestoreOptions_newRestoreOptions(JNIEnv* env,
|
2014-05-14 07:20:58 +02:00
|
|
|
jobject jobj, jboolean keep_log_files) {
|
|
|
|
auto ropt = new rocksdb::RestoreOptions(keep_log_files);
|
2014-05-19 07:40:48 +02:00
|
|
|
return reinterpret_cast<jlong>(ropt);
|
2014-05-14 07:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreOptions
|
|
|
|
* Method: dispose
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_RestoreOptions_dispose(JNIEnv* env, jobject jobj,
|
|
|
|
jlong jhandle) {
|
|
|
|
auto ropt = reinterpret_cast<rocksdb::RestoreOptions*>(jhandle);
|
|
|
|
assert(ropt);
|
|
|
|
delete ropt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreBackupableDB
|
|
|
|
* Method: newRestoreBackupableDB
|
2014-05-19 07:40:48 +02:00
|
|
|
* Signature: (J)J
|
2014-05-14 07:20:58 +02:00
|
|
|
*/
|
2014-05-19 07:40:48 +02:00
|
|
|
jlong Java_org_rocksdb_RestoreBackupableDB_newRestoreBackupableDB(JNIEnv* env,
|
2014-05-14 07:20:58 +02:00
|
|
|
jobject jobj, jlong jopt_handle) {
|
|
|
|
auto opt = reinterpret_cast<rocksdb::BackupableDBOptions*>(jopt_handle);
|
|
|
|
auto rdb = new rocksdb::RestoreBackupableDB(rocksdb::Env::Default(), *opt);
|
2014-05-19 07:40:48 +02:00
|
|
|
return reinterpret_cast<jlong>(rdb);
|
2014-05-14 07:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreBackupableDB
|
|
|
|
* Method: restoreDBFromBackup0
|
|
|
|
* Signature: (JJLjava/lang/String;Ljava/lang/String;J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_RestoreBackupableDB_restoreDBFromBackup0(JNIEnv* env,
|
|
|
|
jobject jobj, jlong jhandle, jlong jbackup_id, jstring jdb_dir,
|
|
|
|
jstring jwal_dir, jlong jopt_handle) {
|
|
|
|
auto opt = reinterpret_cast<rocksdb::RestoreOptions*>(jopt_handle);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-05-14 07:20:58 +02:00
|
|
|
const char* cdb_dir = env->GetStringUTFChars(jdb_dir, 0);
|
|
|
|
const char* cwal_dir = env->GetStringUTFChars(jwal_dir, 0);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-05-14 07:20:58 +02:00
|
|
|
auto rdb = reinterpret_cast<rocksdb::RestoreBackupableDB*>(jhandle);
|
|
|
|
rocksdb::Status s =
|
|
|
|
rdb->RestoreDBFromBackup(jbackup_id, cdb_dir, cwal_dir, *opt);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-05-14 07:20:58 +02:00
|
|
|
env->ReleaseStringUTFChars(jdb_dir, cdb_dir);
|
|
|
|
env->ReleaseStringUTFChars(jwal_dir, cwal_dir);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-10-09 23:16:41 +02:00
|
|
|
if (!s.ok()) {
|
2014-05-14 07:20:58 +02:00
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreBackupableDB
|
|
|
|
* Method: restoreDBFromLatestBackup0
|
|
|
|
* Signature: (JLjava/lang/String;Ljava/lang/String;J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_RestoreBackupableDB_restoreDBFromLatestBackup0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jhandle, jstring jdb_dir, jstring jwal_dir,
|
|
|
|
jlong jopt_handle) {
|
|
|
|
auto opt = reinterpret_cast<rocksdb::RestoreOptions*>(jopt_handle);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-05-14 07:20:58 +02:00
|
|
|
const char* cdb_dir = env->GetStringUTFChars(jdb_dir, 0);
|
|
|
|
const char* cwal_dir = env->GetStringUTFChars(jwal_dir, 0);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-05-14 07:20:58 +02:00
|
|
|
auto rdb = reinterpret_cast<rocksdb::RestoreBackupableDB*>(jhandle);
|
|
|
|
rocksdb::Status s =
|
|
|
|
rdb->RestoreDBFromLatestBackup(cdb_dir, cwal_dir, *opt);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-05-14 07:20:58 +02:00
|
|
|
env->ReleaseStringUTFChars(jdb_dir, cdb_dir);
|
|
|
|
env->ReleaseStringUTFChars(jwal_dir, cwal_dir);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-10-09 23:16:41 +02:00
|
|
|
if (!s.ok()) {
|
2014-05-14 07:20:58 +02:00
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreBackupableDB
|
|
|
|
* Method: purgeOldBackups0
|
|
|
|
* Signature: (JI)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_RestoreBackupableDB_purgeOldBackups0(JNIEnv* env,
|
|
|
|
jobject jobj, jlong jhandle, jint jnum_backups_to_keep) {
|
|
|
|
auto rdb = reinterpret_cast<rocksdb::RestoreBackupableDB*>(jhandle);
|
|
|
|
rocksdb::Status s = rdb->PurgeOldBackups(jnum_backups_to_keep);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-10-09 23:16:41 +02:00
|
|
|
if (!s.ok()) {
|
2014-05-14 07:20:58 +02:00
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreBackupableDB
|
|
|
|
* Method: deleteBackup0
|
|
|
|
* Signature: (JJ)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_RestoreBackupableDB_deleteBackup0(JNIEnv* env,
|
|
|
|
jobject jobj, jlong jhandle, jlong jbackup_id) {
|
|
|
|
auto rdb = reinterpret_cast<rocksdb::RestoreBackupableDB*>(jhandle);
|
|
|
|
rocksdb::Status s = rdb->DeleteBackup(jbackup_id);
|
2014-05-19 07:40:48 +02:00
|
|
|
|
2014-10-09 23:16:41 +02:00
|
|
|
if (!s.ok()) {
|
2014-05-14 07:20:58 +02:00
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreBackupableDB
|
|
|
|
* Method: dispose
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_RestoreBackupableDB_dispose(JNIEnv* env, jobject jobj,
|
|
|
|
jlong jhandle) {
|
|
|
|
auto ropt = reinterpret_cast<rocksdb::RestoreBackupableDB*>(jhandle);
|
|
|
|
assert(ropt);
|
|
|
|
delete ropt;
|
2014-05-14 07:34:29 +02:00
|
|
|
}
|