2016-09-29 23:04:41 +02:00
|
|
|
// Copyright (c) 2011-present, 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
|
2017-05-03 05:33:25 +02:00
|
|
|
// calling C++ rocksdb::SstFileWriter methods
|
2016-09-29 23:04:41 +02:00
|
|
|
// from Java side.
|
|
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "include/org_rocksdb_SstFileWriter.h"
|
|
|
|
#include "rocksdb/comparator.h"
|
|
|
|
#include "rocksdb/env.h"
|
|
|
|
#include "rocksdb/options.h"
|
|
|
|
#include "rocksdb/sst_file_writer.h"
|
|
|
|
#include "rocksjni/portal.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_SstFileWriter
|
|
|
|
* Method: newSstFileWriter
|
|
|
|
* Signature: (JJJ)J
|
|
|
|
*/
|
2017-03-30 02:13:43 +02:00
|
|
|
jlong Java_org_rocksdb_SstFileWriter_newSstFileWriter__JJJ(JNIEnv *env, jclass jcls,
|
2016-09-29 23:04:41 +02:00
|
|
|
jlong jenvoptions,
|
|
|
|
jlong joptions,
|
|
|
|
jlong jcomparator) {
|
|
|
|
auto *env_options =
|
|
|
|
reinterpret_cast<const rocksdb::EnvOptions *>(jenvoptions);
|
|
|
|
auto *options = reinterpret_cast<const rocksdb::Options *>(joptions);
|
|
|
|
auto *comparator = reinterpret_cast<const rocksdb::Comparator *>(jcomparator);
|
|
|
|
rocksdb::SstFileWriter *sst_file_writer =
|
|
|
|
new rocksdb::SstFileWriter(*env_options, *options, comparator);
|
|
|
|
return reinterpret_cast<jlong>(sst_file_writer);
|
|
|
|
}
|
|
|
|
|
2017-03-30 02:13:43 +02:00
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_SstFileWriter
|
|
|
|
* Method: newSstFileWriter
|
|
|
|
* Signature: (JJ)J
|
|
|
|
*/
|
|
|
|
jlong Java_org_rocksdb_SstFileWriter_newSstFileWriter__JJ(JNIEnv *env, jclass jcls,
|
|
|
|
jlong jenvoptions,
|
|
|
|
jlong joptions) {
|
|
|
|
auto *env_options =
|
|
|
|
reinterpret_cast<const rocksdb::EnvOptions *>(jenvoptions);
|
|
|
|
auto *options = reinterpret_cast<const rocksdb::Options *>(joptions);
|
|
|
|
rocksdb::SstFileWriter *sst_file_writer =
|
|
|
|
new rocksdb::SstFileWriter(*env_options, *options);
|
|
|
|
return reinterpret_cast<jlong>(sst_file_writer);
|
|
|
|
}
|
|
|
|
|
2016-09-29 23:04:41 +02:00
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_SstFileWriter
|
|
|
|
* Method: open
|
|
|
|
* Signature: (JLjava/lang/String;)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_SstFileWriter_open(JNIEnv *env, jobject jobj,
|
|
|
|
jlong jhandle, jstring jfile_path) {
|
2017-02-28 01:26:12 +01:00
|
|
|
const char *file_path = env->GetStringUTFChars(jfile_path, nullptr);
|
|
|
|
if(file_path == nullptr) {
|
|
|
|
// exception thrown: OutOfMemoryError
|
|
|
|
return;
|
|
|
|
}
|
2016-09-29 23:04:41 +02:00
|
|
|
rocksdb::Status s =
|
|
|
|
reinterpret_cast<rocksdb::SstFileWriter *>(jhandle)->Open(file_path);
|
|
|
|
env->ReleaseStringUTFChars(jfile_path, file_path);
|
|
|
|
|
|
|
|
if (!s.ok()) {
|
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 21:05:19 +02:00
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_SstFileWriter
|
|
|
|
* Method: put
|
|
|
|
* Signature: (JJJ)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_SstFileWriter_put(JNIEnv *env, jobject jobj,
|
|
|
|
jlong jhandle, jlong jkey_handle,
|
|
|
|
jlong jvalue_handle) {
|
|
|
|
auto *key_slice = reinterpret_cast<rocksdb::Slice *>(jkey_handle);
|
|
|
|
auto *value_slice = reinterpret_cast<rocksdb::Slice *>(jvalue_handle);
|
|
|
|
rocksdb::Status s =
|
|
|
|
reinterpret_cast<rocksdb::SstFileWriter *>(jhandle)->Put(*key_slice,
|
|
|
|
*value_slice);
|
|
|
|
if (!s.ok()) {
|
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_SstFileWriter
|
|
|
|
* Method: merge
|
|
|
|
* Signature: (JJJ)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_SstFileWriter_merge(JNIEnv *env, jobject jobj,
|
|
|
|
jlong jhandle, jlong jkey_handle,
|
|
|
|
jlong jvalue_handle) {
|
|
|
|
auto *key_slice = reinterpret_cast<rocksdb::Slice *>(jkey_handle);
|
|
|
|
auto *value_slice = reinterpret_cast<rocksdb::Slice *>(jvalue_handle);
|
|
|
|
rocksdb::Status s =
|
|
|
|
reinterpret_cast<rocksdb::SstFileWriter *>(jhandle)->Merge(*key_slice,
|
|
|
|
*value_slice);
|
|
|
|
if (!s.ok()) {
|
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_SstFileWriter
|
|
|
|
* Method: delete
|
|
|
|
* Signature: (JJJ)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_SstFileWriter_delete(JNIEnv *env, jobject jobj,
|
|
|
|
jlong jhandle, jlong jkey_handle) {
|
|
|
|
auto *key_slice = reinterpret_cast<rocksdb::Slice *>(jkey_handle);
|
|
|
|
rocksdb::Status s =
|
|
|
|
reinterpret_cast<rocksdb::SstFileWriter *>(jhandle)->Delete(*key_slice);
|
|
|
|
if (!s.ok()) {
|
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-29 23:04:41 +02:00
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_SstFileWriter
|
|
|
|
* Method: finish
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_SstFileWriter_finish(JNIEnv *env, jobject jobj,
|
|
|
|
jlong jhandle) {
|
|
|
|
rocksdb::Status s =
|
|
|
|
reinterpret_cast<rocksdb::SstFileWriter *>(jhandle)->Finish();
|
|
|
|
if (!s.ok()) {
|
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_SstFileWriter
|
|
|
|
* Method: disposeInternal
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_SstFileWriter_disposeInternal(JNIEnv *env, jobject jobj,
|
|
|
|
jlong jhandle) {
|
|
|
|
delete reinterpret_cast<rocksdb::SstFileWriter *>(jhandle);
|
|
|
|
}
|