2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2015-01-03 15:52:07 +01:00
|
|
|
// 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
|
|
|
|
// calling c++ rocksdb::WriteBatchWithIndex methods from Java side.
|
|
|
|
|
2015-01-03 16:23:24 +01:00
|
|
|
#include "include/org_rocksdb_WBWIRocksIterator.h"
|
2015-01-03 15:52:07 +01:00
|
|
|
#include "include/org_rocksdb_WriteBatchWithIndex.h"
|
|
|
|
#include "rocksdb/comparator.h"
|
|
|
|
#include "rocksdb/utilities/write_batch_with_index.h"
|
2015-01-03 16:23:24 +01:00
|
|
|
#include "rocksjni/portal.h"
|
2015-01-03 15:52:07 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: newWriteBatchWithIndex
|
2016-01-20 18:05:41 +01:00
|
|
|
* Signature: ()J
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-01-20 18:05:41 +01:00
|
|
|
jlong Java_org_rocksdb_WriteBatchWithIndex_newWriteBatchWithIndex__(
|
|
|
|
JNIEnv* env, jclass jcls) {
|
2015-01-03 15:52:07 +01:00
|
|
|
rocksdb::WriteBatchWithIndex* wbwi = new rocksdb::WriteBatchWithIndex();
|
2016-01-20 18:05:41 +01:00
|
|
|
return reinterpret_cast<jlong>(wbwi);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: newWriteBatchWithIndex
|
2016-01-20 18:05:41 +01:00
|
|
|
* Signature: (Z)J
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-01-20 18:05:41 +01:00
|
|
|
jlong Java_org_rocksdb_WriteBatchWithIndex_newWriteBatchWithIndex__Z(
|
|
|
|
JNIEnv* env, jclass jcls, jboolean joverwrite_key) {
|
2015-01-03 15:52:07 +01:00
|
|
|
rocksdb::WriteBatchWithIndex* wbwi =
|
|
|
|
new rocksdb::WriteBatchWithIndex(rocksdb::BytewiseComparator(), 0,
|
|
|
|
static_cast<bool>(joverwrite_key));
|
2016-01-20 18:05:41 +01:00
|
|
|
return reinterpret_cast<jlong>(wbwi);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: newWriteBatchWithIndex
|
2016-01-20 18:05:41 +01:00
|
|
|
* Signature: (JIZ)J
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-01-20 18:05:41 +01:00
|
|
|
jlong Java_org_rocksdb_WriteBatchWithIndex_newWriteBatchWithIndex__JIZ(
|
|
|
|
JNIEnv* env, jclass jcls, jlong jfallback_index_comparator_handle,
|
2015-01-03 15:52:07 +01:00
|
|
|
jint jreserved_bytes, jboolean joverwrite_key) {
|
|
|
|
rocksdb::WriteBatchWithIndex* wbwi =
|
|
|
|
new rocksdb::WriteBatchWithIndex(
|
|
|
|
reinterpret_cast<rocksdb::Comparator*>(jfallback_index_comparator_handle),
|
|
|
|
static_cast<size_t>(jreserved_bytes), static_cast<bool>(joverwrite_key));
|
2016-01-20 18:05:41 +01:00
|
|
|
return reinterpret_cast<jlong>(wbwi);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
2016-02-01 21:00:40 +01:00
|
|
|
* Method: count0
|
|
|
|
* Signature: (J)I
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
|
|
|
jint Java_org_rocksdb_WriteBatchWithIndex_count0(
|
2016-02-01 21:00:40 +01:00
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 15:52:07 +01:00
|
|
|
assert(wbwi != nullptr);
|
|
|
|
|
|
|
|
return static_cast<jint>(wbwi->GetWriteBatch()->Count());
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: put
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J[BI[BI)V
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-02-01 21:00:40 +01:00
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_put__J_3BI_3BI(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
|
|
|
|
jint jkey_len, jbyteArray jentry_value, jint jentry_value_len) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 18:52:17 +01:00
|
|
|
assert(wbwi != nullptr);
|
|
|
|
auto put = [&wbwi] (rocksdb::Slice key, rocksdb::Slice value) {
|
|
|
|
wbwi->Put(key, value);
|
|
|
|
};
|
|
|
|
rocksdb::JniUtil::kv_op(put, env, jobj, jkey, jkey_len, jentry_value,
|
|
|
|
jentry_value_len);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: put
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J[BI[BIJ)V
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-02-01 21:00:40 +01:00
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_put__J_3BI_3BIJ(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
|
|
|
|
jint jkey_len, jbyteArray jentry_value, jint jentry_value_len,
|
|
|
|
jlong jcf_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 15:52:07 +01:00
|
|
|
assert(wbwi != nullptr);
|
2015-01-03 18:52:17 +01:00
|
|
|
auto* cf_handle = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jcf_handle);
|
|
|
|
assert(cf_handle != nullptr);
|
|
|
|
auto put = [&wbwi, &cf_handle] (rocksdb::Slice key, rocksdb::Slice value) {
|
|
|
|
wbwi->Put(cf_handle, key, value);
|
|
|
|
};
|
|
|
|
rocksdb::JniUtil::kv_op(put, env, jobj, jkey, jkey_len, jentry_value,
|
2015-01-03 15:52:07 +01:00
|
|
|
jentry_value_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: merge
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J[BI[BI)V
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-02-01 21:00:40 +01:00
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_merge__J_3BI_3BI(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
|
|
|
|
jint jkey_len, jbyteArray jentry_value, jint jentry_value_len) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 18:52:17 +01:00
|
|
|
assert(wbwi != nullptr);
|
|
|
|
auto merge = [&wbwi] (rocksdb::Slice key, rocksdb::Slice value) {
|
|
|
|
wbwi->Merge(key, value);
|
|
|
|
};
|
|
|
|
rocksdb::JniUtil::kv_op(merge, env, jobj, jkey, jkey_len, jentry_value,
|
|
|
|
jentry_value_len);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: merge
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J[BI[BIJ)V
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-02-01 21:00:40 +01:00
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_merge__J_3BI_3BIJ(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
|
|
|
|
jint jkey_len, jbyteArray jentry_value, jint jentry_value_len,
|
|
|
|
jlong jcf_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 15:52:07 +01:00
|
|
|
assert(wbwi != nullptr);
|
2015-01-03 18:52:17 +01:00
|
|
|
auto* cf_handle = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jcf_handle);
|
|
|
|
assert(cf_handle != nullptr);
|
|
|
|
auto merge = [&wbwi, &cf_handle] (rocksdb::Slice key, rocksdb::Slice value) {
|
|
|
|
wbwi->Merge(cf_handle, key, value);
|
|
|
|
};
|
|
|
|
rocksdb::JniUtil::kv_op(merge, env, jobj, jkey, jkey_len, jentry_value,
|
|
|
|
jentry_value_len);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: remove
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J[BI)V
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-02-01 21:00:40 +01:00
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_remove__J_3BI(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
|
|
|
|
jint jkey_len) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 18:52:17 +01:00
|
|
|
assert(wbwi != nullptr);
|
|
|
|
auto remove = [&wbwi] (rocksdb::Slice key) {
|
|
|
|
wbwi->Delete(key);
|
|
|
|
};
|
|
|
|
rocksdb::JniUtil::k_op(remove, env, jobj, jkey, jkey_len);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: remove
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J[BIJ)V
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
2016-02-01 21:00:40 +01:00
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_remove__J_3BIJ(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
|
|
|
|
jint jkey_len, jlong jcf_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 18:52:17 +01:00
|
|
|
assert(wbwi != nullptr);
|
2015-01-03 15:52:07 +01:00
|
|
|
auto* cf_handle = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jcf_handle);
|
2015-01-03 18:52:17 +01:00
|
|
|
assert(cf_handle != nullptr);
|
|
|
|
auto remove = [&wbwi, &cf_handle] (rocksdb::Slice key) {
|
|
|
|
wbwi->Delete(cf_handle, key);
|
|
|
|
};
|
|
|
|
rocksdb::JniUtil::k_op(remove, env, jobj, jkey, jkey_len);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: putLogData
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J[BI)V
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_putLogData(
|
2016-02-01 21:00:40 +01:00
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jblob,
|
|
|
|
jint jblob_len) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 15:52:07 +01:00
|
|
|
assert(wbwi != nullptr);
|
2015-01-03 18:52:17 +01:00
|
|
|
auto putLogData = [&wbwi] (rocksdb::Slice blob) {
|
|
|
|
wbwi->PutLogData(blob);
|
|
|
|
};
|
|
|
|
rocksdb::JniUtil::k_op(putLogData, env, jobj, jblob, jblob_len);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: clear
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J)V
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_clear0(
|
2016-02-01 21:00:40 +01:00
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 15:52:07 +01:00
|
|
|
assert(wbwi != nullptr);
|
|
|
|
|
2016-06-14 18:51:14 +02:00
|
|
|
wbwi->Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: setSavePoint0
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_setSavePoint0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
|
|
|
assert(wbwi != nullptr);
|
|
|
|
|
|
|
|
wbwi->SetSavePoint();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: rollbackToSavePoint0
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_rollbackToSavePoint0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
|
|
|
assert(wbwi != nullptr);
|
|
|
|
|
|
|
|
auto s = wbwi->RollbackToSavePoint();
|
|
|
|
|
|
|
|
if (s.ok()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
2015-01-03 15:52:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: iterator0
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (J)J
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
|
|
|
jlong Java_org_rocksdb_WriteBatchWithIndex_iterator0(
|
2016-02-01 21:00:40 +01:00
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 15:52:07 +01:00
|
|
|
rocksdb::WBWIIterator* wbwi_iterator = wbwi->NewIterator();
|
|
|
|
return reinterpret_cast<jlong>(wbwi_iterator);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: iterator1
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (JJ)J
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
|
|
|
jlong Java_org_rocksdb_WriteBatchWithIndex_iterator1(
|
2016-02-01 21:00:40 +01:00
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jlong jcf_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 15:52:07 +01:00
|
|
|
auto* cf_handle = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jcf_handle);
|
|
|
|
rocksdb::WBWIIterator* wbwi_iterator = wbwi->NewIterator(cf_handle);
|
|
|
|
return reinterpret_cast<jlong>(wbwi_iterator);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: iteratorWithBase
|
2016-02-01 21:00:40 +01:00
|
|
|
* Signature: (JJJ)J
|
2015-01-03 15:52:07 +01:00
|
|
|
*/
|
|
|
|
jlong Java_org_rocksdb_WriteBatchWithIndex_iteratorWithBase(
|
2016-02-01 21:00:40 +01:00
|
|
|
JNIEnv* env, jobject jobj, jlong jwbwi_handle, jlong jcf_handle,
|
|
|
|
jlong jbi_handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(jwbwi_handle);
|
2015-01-03 15:52:07 +01:00
|
|
|
auto* cf_handle = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jcf_handle);
|
|
|
|
auto* base_iterator = reinterpret_cast<rocksdb::Iterator*>(jbi_handle);
|
|
|
|
auto* iterator = wbwi->NewIteratorWithBase(cf_handle, base_iterator);
|
|
|
|
return reinterpret_cast<jlong>(iterator);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WriteBatchWithIndex
|
|
|
|
* Method: disposeInternal
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WriteBatchWithIndex_disposeInternal(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
|
|
|
auto* wbwi = reinterpret_cast<rocksdb::WriteBatchWithIndex*>(handle);
|
|
|
|
delete wbwi;
|
|
|
|
}
|
2015-01-03 16:23:24 +01:00
|
|
|
|
|
|
|
/* WBWIRocksIterator below */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: disposeInternal
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WBWIRocksIterator_disposeInternal(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
|
|
|
auto* it = reinterpret_cast<rocksdb::WBWIIterator*>(handle);
|
|
|
|
delete it;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: isValid0
|
|
|
|
* Signature: (J)Z
|
|
|
|
*/
|
|
|
|
jboolean Java_org_rocksdb_WBWIRocksIterator_isValid0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
|
|
|
return reinterpret_cast<rocksdb::WBWIIterator*>(handle)->Valid();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: seekToFirst0
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WBWIRocksIterator_seekToFirst0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
|
|
|
reinterpret_cast<rocksdb::WBWIIterator*>(handle)->SeekToFirst();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: seekToLast0
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WBWIRocksIterator_seekToLast0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
|
|
|
reinterpret_cast<rocksdb::WBWIIterator*>(handle)->SeekToLast();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: next0
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WBWIRocksIterator_next0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
|
|
|
reinterpret_cast<rocksdb::WBWIIterator*>(handle)->Next();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: prev0
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WBWIRocksIterator_prev0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
|
|
|
reinterpret_cast<rocksdb::WBWIIterator*>(handle)->Prev();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: seek0
|
|
|
|
* Signature: (J[BI)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WBWIRocksIterator_seek0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle, jbyteArray jtarget,
|
|
|
|
jint jtarget_len) {
|
|
|
|
auto* it = reinterpret_cast<rocksdb::WBWIIterator*>(handle);
|
|
|
|
jbyte* target = env->GetByteArrayElements(jtarget, 0);
|
|
|
|
rocksdb::Slice target_slice(
|
|
|
|
reinterpret_cast<char*>(target), jtarget_len);
|
|
|
|
|
|
|
|
it->Seek(target_slice);
|
|
|
|
|
|
|
|
env->ReleaseByteArrayElements(jtarget, target, JNI_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: status0
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_WBWIRocksIterator_status0(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
|
|
|
auto* it = reinterpret_cast<rocksdb::WBWIIterator*>(handle);
|
|
|
|
rocksdb::Status s = it->status();
|
|
|
|
|
|
|
|
if (s.ok()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_WBWIRocksIterator
|
|
|
|
* Method: entry1
|
2016-02-04 15:28:18 +01:00
|
|
|
* Signature: (J)[J
|
2015-01-03 16:23:24 +01:00
|
|
|
*/
|
2016-02-04 15:28:18 +01:00
|
|
|
jlongArray Java_org_rocksdb_WBWIRocksIterator_entry1(
|
|
|
|
JNIEnv* env, jobject jobj, jlong handle) {
|
2015-01-03 16:23:24 +01:00
|
|
|
auto* it = reinterpret_cast<rocksdb::WBWIIterator*>(handle);
|
|
|
|
const rocksdb::WriteEntry& we = it->Entry();
|
2015-07-02 08:22:03 +02:00
|
|
|
|
2016-02-04 15:28:18 +01:00
|
|
|
jlong results[3];
|
|
|
|
|
|
|
|
//set the type of the write entry
|
|
|
|
switch (we.type) {
|
|
|
|
case rocksdb::kPutRecord:
|
|
|
|
results[0] = 0x1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case rocksdb::kMergeRecord:
|
|
|
|
results[0] = 0x2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case rocksdb::kDeleteRecord:
|
|
|
|
results[0] = 0x4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case rocksdb::kLogDataRecord:
|
|
|
|
results[0] = 0x8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
results[0] = 0x0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO(AR) do we leak buf and value_buf?
|
|
|
|
|
|
|
|
//set the pointer to the key slice
|
2015-07-02 08:22:03 +02:00
|
|
|
char* buf = new char[we.key.size()];
|
|
|
|
memcpy(buf, we.key.data(), we.key.size());
|
|
|
|
auto* key_slice = new rocksdb::Slice(buf, we.key.size());
|
2016-02-04 15:28:18 +01:00
|
|
|
results[1] = reinterpret_cast<jlong>(key_slice);
|
2015-07-02 08:22:03 +02:00
|
|
|
|
2016-02-04 15:28:18 +01:00
|
|
|
//set the pointer to the value slice
|
2015-01-03 16:23:24 +01:00
|
|
|
if (we.type == rocksdb::kDeleteRecord || we.type == rocksdb::kLogDataRecord) {
|
|
|
|
// set native handle of value slice to null if no value available
|
2016-02-04 15:28:18 +01:00
|
|
|
results[2] = 0;
|
2015-01-03 16:23:24 +01:00
|
|
|
} else {
|
2015-07-02 08:22:03 +02:00
|
|
|
char* value_buf = new char[we.value.size()];
|
|
|
|
memcpy(value_buf, we.value.data(), we.value.size());
|
|
|
|
auto* value_slice = new rocksdb::Slice(value_buf, we.value.size());
|
2016-02-04 15:28:18 +01:00
|
|
|
results[2] = reinterpret_cast<jlong>(value_slice);
|
2015-01-03 16:23:24 +01:00
|
|
|
}
|
2016-02-04 15:28:18 +01:00
|
|
|
|
|
|
|
jlongArray jresults = env->NewLongArray(3);
|
|
|
|
env->SetLongArrayRegion(jresults, 0, 3, results);
|
|
|
|
return jresults;
|
2015-01-03 16:23:24 +01:00
|
|
|
}
|