2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2014-05-14 07:20:58 +02:00
|
|
|
//
|
|
|
|
// This file implements the "bridge" between Java and C++ and enables
|
2017-05-03 05:33:25 +02:00
|
|
|
// calling C++ rocksdb::RestoreOptions methods
|
2014-05-14 07:20:58 +02:00
|
|
|
// from Java side.
|
|
|
|
|
2018-04-13 02:55:14 +02:00
|
|
|
#include <jni.h>
|
2014-05-14 07:20:58 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "include/org_rocksdb_RestoreOptions.h"
|
2014-07-23 20:15:14 +02:00
|
|
|
#include "rocksdb/utilities/backupable_db.h"
|
2018-04-13 02:55:14 +02:00
|
|
|
#include "rocksjni/portal.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
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
jlong Java_org_rocksdb_RestoreOptions_newRestoreOptions(
|
|
|
|
JNIEnv* /*env*/, jclass /*jcls*/, jboolean keep_log_files) {
|
2017-02-28 01:26:12 +01:00
|
|
|
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
|
2016-01-20 18:05:41 +01:00
|
|
|
* Method: disposeInternal
|
2014-05-14 07:20:58 +02:00
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
void Java_org_rocksdb_RestoreOptions_disposeInternal(JNIEnv* /*env*/,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2017-02-28 01:26:12 +01:00
|
|
|
auto* ropt = reinterpret_cast<rocksdb::RestoreOptions*>(jhandle);
|
2014-05-14 07:20:58 +02:00
|
|
|
assert(ropt);
|
|
|
|
delete ropt;
|
|
|
|
}
|