2016-02-09 15:12:00 -08:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-15 16:03:42 -07: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-13 22:20:58 -07:00
|
|
|
//
|
|
|
|
// This file implements the "bridge" between Java and C++ and enables
|
2017-05-02 20:33:25 -07:00
|
|
|
// calling C++ rocksdb::RestoreOptions methods
|
2014-05-13 22:20:58 -07:00
|
|
|
// from Java side.
|
|
|
|
|
2018-04-12 17:55:14 -07:00
|
|
|
#include <jni.h>
|
2014-05-13 22:20:58 -07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "include/org_rocksdb_RestoreOptions.h"
|
2014-07-23 11:15:14 -07:00
|
|
|
#include "rocksdb/utilities/backupable_db.h"
|
2018-04-12 17:55:14 -07:00
|
|
|
#include "rocksjni/portal.h"
|
2014-05-13 22:20:58 -07:00
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreOptions
|
|
|
|
* Method: newRestoreOptions
|
2014-05-18 22:40:48 -07:00
|
|
|
* Signature: (Z)J
|
2014-05-13 22:20:58 -07:00
|
|
|
*/
|
2018-04-12 17:55:14 -07:00
|
|
|
jlong Java_org_rocksdb_RestoreOptions_newRestoreOptions(
|
|
|
|
JNIEnv* /*env*/, jclass /*jcls*/, jboolean keep_log_files) {
|
2017-02-27 16:26:12 -08:00
|
|
|
auto* ropt = new rocksdb::RestoreOptions(keep_log_files);
|
2014-05-18 22:40:48 -07:00
|
|
|
return reinterpret_cast<jlong>(ropt);
|
2014-05-13 22:20:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_RestoreOptions
|
2016-01-20 17:05:41 +00:00
|
|
|
* Method: disposeInternal
|
2014-05-13 22:20:58 -07:00
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
2018-04-12 17:55:14 -07:00
|
|
|
void Java_org_rocksdb_RestoreOptions_disposeInternal(JNIEnv* /*env*/,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2017-02-27 16:26:12 -08:00
|
|
|
auto* ropt = reinterpret_cast<rocksdb::RestoreOptions*>(jhandle);
|
2014-05-13 22:20:58 -07:00
|
|
|
assert(ropt);
|
|
|
|
delete ropt;
|
|
|
|
}
|