| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862 |
- // Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
- // 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).
- //
- // This file implements the "bridge" between Java and C++ and enables
- // calling c++ ROCKSDB_NAMESPACE::WriteBatchWithIndex methods from Java side.
- #include "rocksdb/utilities/write_batch_with_index.h"
- #include "include/org_rocksdb_WBWIRocksIterator.h"
- #include "include/org_rocksdb_WriteBatchWithIndex.h"
- #include "rocksdb/comparator.h"
- #include "rocksjni/portal.h"
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: newWriteBatchWithIndex
- * Signature: ()J
- */
- jlong Java_org_rocksdb_WriteBatchWithIndex_newWriteBatchWithIndex__(
- JNIEnv* /*env*/, jclass /*jcls*/) {
- auto* wbwi = new ROCKSDB_NAMESPACE::WriteBatchWithIndex();
- return reinterpret_cast<jlong>(wbwi);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: newWriteBatchWithIndex
- * Signature: (Z)J
- */
- jlong Java_org_rocksdb_WriteBatchWithIndex_newWriteBatchWithIndex__Z(
- JNIEnv* /*env*/, jclass /*jcls*/, jboolean joverwrite_key) {
- auto* wbwi = new ROCKSDB_NAMESPACE::WriteBatchWithIndex(
- ROCKSDB_NAMESPACE::BytewiseComparator(), 0,
- static_cast<bool>(joverwrite_key));
- return reinterpret_cast<jlong>(wbwi);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: newWriteBatchWithIndex
- * Signature: (JBIZ)J
- */
- jlong Java_org_rocksdb_WriteBatchWithIndex_newWriteBatchWithIndex__JBIZ(
- JNIEnv* /*env*/, jclass /*jcls*/, jlong jfallback_index_comparator_handle,
- jbyte jcomparator_type, jint jreserved_bytes, jboolean joverwrite_key) {
- ROCKSDB_NAMESPACE::Comparator* fallback_comparator = nullptr;
- switch (jcomparator_type) {
- // JAVA_COMPARATOR
- case 0x0:
- fallback_comparator =
- reinterpret_cast<ROCKSDB_NAMESPACE::ComparatorJniCallback*>(
- jfallback_index_comparator_handle);
- break;
- // JAVA_NATIVE_COMPARATOR_WRAPPER
- case 0x1:
- fallback_comparator = reinterpret_cast<ROCKSDB_NAMESPACE::Comparator*>(
- jfallback_index_comparator_handle);
- break;
- }
- auto* wbwi = new ROCKSDB_NAMESPACE::WriteBatchWithIndex(
- fallback_comparator, static_cast<size_t>(jreserved_bytes),
- static_cast<bool>(joverwrite_key));
- return reinterpret_cast<jlong>(wbwi);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: count0
- * Signature: (J)I
- */
- jint Java_org_rocksdb_WriteBatchWithIndex_count0(JNIEnv* /*env*/,
- jobject /*jobj*/,
- jlong jwbwi_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- return static_cast<jint>(wbwi->GetWriteBatch()->Count());
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: put
- * Signature: (J[BI[BI)V
- */
- 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_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto put = [&wbwi](ROCKSDB_NAMESPACE::Slice key,
- ROCKSDB_NAMESPACE::Slice value) {
- return wbwi->Put(key, value);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::kv_op(put, env, jobj, jkey, jkey_len,
- jentry_value, jentry_value_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: put
- * Signature: (J[BI[BIJ)V
- */
- 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_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- assert(cf_handle != nullptr);
- auto put = [&wbwi, &cf_handle](ROCKSDB_NAMESPACE::Slice key,
- ROCKSDB_NAMESPACE::Slice value) {
- return wbwi->Put(cf_handle, key, value);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::kv_op(put, env, jobj, jkey, jkey_len,
- jentry_value, jentry_value_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: putDirect
- * Signature: (JLjava/nio/ByteBuffer;IILjava/nio/ByteBuffer;IIJ)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_putDirect(
- JNIEnv* env, jobject /*jobj*/, jlong jwb_handle, jobject jkey,
- jint jkey_offset, jint jkey_len, jobject jval, jint jval_offset,
- jint jval_len, jlong jcf_handle) {
- auto* wb = reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatch*>(jwb_handle);
- assert(wb != nullptr);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- auto put = [&wb, &cf_handle](ROCKSDB_NAMESPACE::Slice& key,
- ROCKSDB_NAMESPACE::Slice& value) {
- if (cf_handle == nullptr) {
- wb->Put(key, value);
- } else {
- wb->Put(cf_handle, key, value);
- }
- };
- ROCKSDB_NAMESPACE::JniUtil::kv_op_direct(
- put, env, jkey, jkey_offset, jkey_len, jval, jval_offset, jval_len);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: merge
- * Signature: (J[BI[BI)V
- */
- 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_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto merge = [&wbwi](ROCKSDB_NAMESPACE::Slice key,
- ROCKSDB_NAMESPACE::Slice value) {
- return wbwi->Merge(key, value);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::kv_op(merge, env, jobj, jkey, jkey_len,
- jentry_value, jentry_value_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: merge
- * Signature: (J[BI[BIJ)V
- */
- 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_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- assert(cf_handle != nullptr);
- auto merge = [&wbwi, &cf_handle](ROCKSDB_NAMESPACE::Slice key,
- ROCKSDB_NAMESPACE::Slice value) {
- return wbwi->Merge(cf_handle, key, value);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::kv_op(merge, env, jobj, jkey, jkey_len,
- jentry_value, jentry_value_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: delete
- * Signature: (J[BI)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_delete__J_3BI(JNIEnv* env,
- jobject jobj,
- jlong jwbwi_handle,
- jbyteArray jkey,
- jint jkey_len) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto remove = [&wbwi](ROCKSDB_NAMESPACE::Slice key) {
- return wbwi->Delete(key);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::k_op(remove, env, jobj, jkey, jkey_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: delete
- * Signature: (J[BIJ)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_delete__J_3BIJ(
- JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
- jint jkey_len, jlong jcf_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- assert(cf_handle != nullptr);
- auto remove = [&wbwi, &cf_handle](ROCKSDB_NAMESPACE::Slice key) {
- return wbwi->Delete(cf_handle, key);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::k_op(remove, env, jobj, jkey, jkey_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: singleDelete
- * Signature: (J[BI)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_singleDelete__J_3BI(
- JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
- jint jkey_len) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto single_delete = [&wbwi](ROCKSDB_NAMESPACE::Slice key) {
- return wbwi->SingleDelete(key);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::k_op(single_delete, env, jobj, jkey,
- jkey_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: singleDelete
- * Signature: (J[BIJ)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_singleDelete__J_3BIJ(
- JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jkey,
- jint jkey_len, jlong jcf_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- assert(cf_handle != nullptr);
- auto single_delete = [&wbwi, &cf_handle](ROCKSDB_NAMESPACE::Slice key) {
- return wbwi->SingleDelete(cf_handle, key);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::k_op(single_delete, env, jobj, jkey,
- jkey_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: removeDirect
- * Signature: (JLjava/nio/ByteBuffer;IIJ)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_removeDirect(
- JNIEnv* env, jobject /*jobj*/, jlong jwb_handle, jobject jkey,
- jint jkey_offset, jint jkey_len, jlong jcf_handle) {
- auto* wb = reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatch*>(jwb_handle);
- assert(wb != nullptr);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- auto remove = [&wb, &cf_handle](ROCKSDB_NAMESPACE::Slice& key) {
- if (cf_handle == nullptr) {
- wb->Delete(key);
- } else {
- wb->Delete(cf_handle, key);
- }
- };
- ROCKSDB_NAMESPACE::JniUtil::k_op_direct(remove, env, jkey, jkey_offset,
- jkey_len);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: deleteRange
- * Signature: (J[BI[BI)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_deleteRange__J_3BI_3BI(
- JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jbegin_key,
- jint jbegin_key_len, jbyteArray jend_key, jint jend_key_len) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto deleteRange = [&wbwi](ROCKSDB_NAMESPACE::Slice beginKey,
- ROCKSDB_NAMESPACE::Slice endKey) {
- return wbwi->DeleteRange(beginKey, endKey);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::kv_op(deleteRange, env, jobj, jbegin_key,
- jbegin_key_len, jend_key, jend_key_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: deleteRange
- * Signature: (J[BI[BIJ)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_deleteRange__J_3BI_3BIJ(
- JNIEnv* env, jobject jobj, jlong jwbwi_handle, jbyteArray jbegin_key,
- jint jbegin_key_len, jbyteArray jend_key, jint jend_key_len,
- jlong jcf_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- assert(cf_handle != nullptr);
- auto deleteRange = [&wbwi, &cf_handle](ROCKSDB_NAMESPACE::Slice beginKey,
- ROCKSDB_NAMESPACE::Slice endKey) {
- return wbwi->DeleteRange(cf_handle, beginKey, endKey);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::kv_op(deleteRange, env, jobj, jbegin_key,
- jbegin_key_len, jend_key, jend_key_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: putLogData
- * Signature: (J[BI)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_putLogData(JNIEnv* env, jobject jobj,
- jlong jwbwi_handle,
- jbyteArray jblob,
- jint jblob_len) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto putLogData = [&wbwi](ROCKSDB_NAMESPACE::Slice blob) {
- return wbwi->PutLogData(blob);
- };
- std::unique_ptr<ROCKSDB_NAMESPACE::Status> status =
- ROCKSDB_NAMESPACE::JniUtil::k_op(putLogData, env, jobj, jblob, jblob_len);
- if (status != nullptr && !status->ok()) {
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, status);
- }
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: clear
- * Signature: (J)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_clear0(JNIEnv* /*env*/,
- jobject /*jobj*/,
- jlong jwbwi_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- 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_NAMESPACE::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_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto s = wbwi->RollbackToSavePoint();
- if (s.ok()) {
- return;
- }
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, s);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: popSavePoint
- * Signature: (J)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_popSavePoint(JNIEnv* env,
- jobject /*jobj*/,
- jlong jwbwi_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto s = wbwi->PopSavePoint();
- if (s.ok()) {
- return;
- }
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, s);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: setMaxBytes
- * Signature: (JJ)V
- */
- void Java_org_rocksdb_WriteBatchWithIndex_setMaxBytes(JNIEnv* /*env*/,
- jobject /*jobj*/,
- jlong jwbwi_handle,
- jlong jmax_bytes) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- wbwi->SetMaxBytes(static_cast<size_t>(jmax_bytes));
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: getWriteBatch
- * Signature: (J)Lorg/rocksdb/WriteBatch;
- */
- jobject Java_org_rocksdb_WriteBatchWithIndex_getWriteBatch(JNIEnv* env,
- jobject /*jobj*/,
- jlong jwbwi_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- assert(wbwi != nullptr);
- auto* wb = wbwi->GetWriteBatch();
- // TODO(AR) is the `wb` object owned by us?
- return ROCKSDB_NAMESPACE::WriteBatchJni::construct(env, wb);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: iterator0
- * Signature: (J)J
- */
- jlong Java_org_rocksdb_WriteBatchWithIndex_iterator0(JNIEnv* /*env*/,
- jobject /*jobj*/,
- jlong jwbwi_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- auto* wbwi_iterator = wbwi->NewIterator();
- return reinterpret_cast<jlong>(wbwi_iterator);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: iterator1
- * Signature: (JJ)J
- */
- jlong Java_org_rocksdb_WriteBatchWithIndex_iterator1(JNIEnv* /*env*/,
- jobject /*jobj*/,
- jlong jwbwi_handle,
- jlong jcf_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- auto* wbwi_iterator = wbwi->NewIterator(cf_handle);
- return reinterpret_cast<jlong>(wbwi_iterator);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: iteratorWithBase
- * Signature: (JJJ)J
- */
- jlong Java_org_rocksdb_WriteBatchWithIndex_iteratorWithBase(JNIEnv* /*env*/,
- jobject /*jobj*/,
- jlong jwbwi_handle,
- jlong jcf_handle,
- jlong jbi_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- auto* base_iterator =
- reinterpret_cast<ROCKSDB_NAMESPACE::Iterator*>(jbi_handle);
- auto* iterator = wbwi->NewIteratorWithBase(cf_handle, base_iterator);
- return reinterpret_cast<jlong>(iterator);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: getFromBatch
- * Signature: (JJ[BI)[B
- */
- jbyteArray JNICALL Java_org_rocksdb_WriteBatchWithIndex_getFromBatch__JJ_3BI(
- JNIEnv* env, jobject /*jobj*/, jlong jwbwi_handle, jlong jdbopt_handle,
- jbyteArray jkey, jint jkey_len) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- auto* dbopt = reinterpret_cast<ROCKSDB_NAMESPACE::DBOptions*>(jdbopt_handle);
- auto getter = [&wbwi, &dbopt](const ROCKSDB_NAMESPACE::Slice& key,
- std::string* value) {
- return wbwi->GetFromBatch(*dbopt, key, value);
- };
- return ROCKSDB_NAMESPACE::JniUtil::v_op(getter, env, jkey, jkey_len);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: getFromBatch
- * Signature: (JJ[BIJ)[B
- */
- jbyteArray Java_org_rocksdb_WriteBatchWithIndex_getFromBatch__JJ_3BIJ(
- JNIEnv* env, jobject /*jobj*/, jlong jwbwi_handle, jlong jdbopt_handle,
- jbyteArray jkey, jint jkey_len, jlong jcf_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- auto* dbopt = reinterpret_cast<ROCKSDB_NAMESPACE::DBOptions*>(jdbopt_handle);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- auto getter = [&wbwi, &cf_handle, &dbopt](const ROCKSDB_NAMESPACE::Slice& key,
- std::string* value) {
- return wbwi->GetFromBatch(cf_handle, *dbopt, key, value);
- };
- return ROCKSDB_NAMESPACE::JniUtil::v_op(getter, env, jkey, jkey_len);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: getFromBatchAndDB
- * Signature: (JJJ[BI)[B
- */
- jbyteArray Java_org_rocksdb_WriteBatchWithIndex_getFromBatchAndDB__JJJ_3BI(
- JNIEnv* env, jobject /*jobj*/, jlong jwbwi_handle, jlong jdb_handle,
- jlong jreadopt_handle, jbyteArray jkey, jint jkey_len) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- auto* db = reinterpret_cast<ROCKSDB_NAMESPACE::DB*>(jdb_handle);
- auto* readopt =
- reinterpret_cast<ROCKSDB_NAMESPACE::ReadOptions*>(jreadopt_handle);
- auto getter = [&wbwi, &db, &readopt](const ROCKSDB_NAMESPACE::Slice& key,
- std::string* value) {
- return wbwi->GetFromBatchAndDB(db, *readopt, key, value);
- };
- return ROCKSDB_NAMESPACE::JniUtil::v_op(getter, env, jkey, jkey_len);
- }
- /*
- * Class: org_rocksdb_WriteBatchWithIndex
- * Method: getFromBatchAndDB
- * Signature: (JJJ[BIJ)[B
- */
- jbyteArray Java_org_rocksdb_WriteBatchWithIndex_getFromBatchAndDB__JJJ_3BIJ(
- JNIEnv* env, jobject /*jobj*/, jlong jwbwi_handle, jlong jdb_handle,
- jlong jreadopt_handle, jbyteArray jkey, jint jkey_len, jlong jcf_handle) {
- auto* wbwi =
- reinterpret_cast<ROCKSDB_NAMESPACE::WriteBatchWithIndex*>(jwbwi_handle);
- auto* db = reinterpret_cast<ROCKSDB_NAMESPACE::DB*>(jdb_handle);
- auto* readopt =
- reinterpret_cast<ROCKSDB_NAMESPACE::ReadOptions*>(jreadopt_handle);
- auto* cf_handle =
- reinterpret_cast<ROCKSDB_NAMESPACE::ColumnFamilyHandle*>(jcf_handle);
- auto getter = [&wbwi, &db, &cf_handle, &readopt](
- const ROCKSDB_NAMESPACE::Slice& key, std::string* value) {
- return wbwi->GetFromBatchAndDB(db, *readopt, cf_handle, key, value);
- };
- return ROCKSDB_NAMESPACE::JniUtil::v_op(getter, env, jkey, jkey_len);
- }
- /*
- * 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_NAMESPACE::WriteBatchWithIndex*>(handle);
- assert(wbwi != nullptr);
- delete wbwi;
- }
- /* 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_NAMESPACE::WBWIIterator*>(handle);
- assert(it != nullptr);
- 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_NAMESPACE::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_NAMESPACE::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_NAMESPACE::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_NAMESPACE::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_NAMESPACE::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_NAMESPACE::WBWIIterator*>(handle);
- jbyte* target = env->GetByteArrayElements(jtarget, nullptr);
- if (target == nullptr) {
- // exception thrown: OutOfMemoryError
- return;
- }
- ROCKSDB_NAMESPACE::Slice target_slice(reinterpret_cast<char*>(target),
- jtarget_len);
- it->Seek(target_slice);
- env->ReleaseByteArrayElements(jtarget, target, JNI_ABORT);
- }
- /*
- * Class: org_rocksdb_WBWIRocksIterator
- * Method: seekDirect0
- * Signature: (JLjava/nio/ByteBuffer;II)V
- */
- void Java_org_rocksdb_WBWIRocksIterator_seekDirect0(
- JNIEnv* env, jobject /*jobj*/, jlong handle, jobject jtarget,
- jint jtarget_off, jint jtarget_len) {
- auto* it = reinterpret_cast<ROCKSDB_NAMESPACE::WBWIIterator*>(handle);
- auto seek = [&it](ROCKSDB_NAMESPACE::Slice& target_slice) {
- it->Seek(target_slice);
- };
- ROCKSDB_NAMESPACE::JniUtil::k_op_direct(seek, env, jtarget, jtarget_off,
- jtarget_len);
- }
- /*
- * Class: org_rocksdb_WBWIRocksIterator
- * Method: seekForPrev0
- * Signature: (J[BI)V
- */
- void Java_org_rocksdb_WBWIRocksIterator_seekForPrev0(JNIEnv* env,
- jobject /*jobj*/,
- jlong handle,
- jbyteArray jtarget,
- jint jtarget_len) {
- auto* it = reinterpret_cast<ROCKSDB_NAMESPACE::WBWIIterator*>(handle);
- jbyte* target = env->GetByteArrayElements(jtarget, nullptr);
- if (target == nullptr) {
- // exception thrown: OutOfMemoryError
- return;
- }
- ROCKSDB_NAMESPACE::Slice target_slice(reinterpret_cast<char*>(target),
- jtarget_len);
- it->SeekForPrev(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_NAMESPACE::WBWIIterator*>(handle);
- ROCKSDB_NAMESPACE::Status s = it->status();
- if (s.ok()) {
- return;
- }
- ROCKSDB_NAMESPACE::RocksDBExceptionJni::ThrowNew(env, s);
- }
- /*
- * Class: org_rocksdb_WBWIRocksIterator
- * Method: entry1
- * Signature: (J)[J
- */
- jlongArray Java_org_rocksdb_WBWIRocksIterator_entry1(JNIEnv* env,
- jobject /*jobj*/,
- jlong handle) {
- auto* it = reinterpret_cast<ROCKSDB_NAMESPACE::WBWIIterator*>(handle);
- const ROCKSDB_NAMESPACE::WriteEntry& we = it->Entry();
- jlong results[3];
- // set the type of the write entry
- results[0] = ROCKSDB_NAMESPACE::WriteTypeJni::toJavaWriteType(we.type);
- // NOTE: key_slice and value_slice will be freed by
- // org.rocksdb.DirectSlice#close
- auto* key_slice = new ROCKSDB_NAMESPACE::Slice(we.key.data(), we.key.size());
- results[1] = reinterpret_cast<jlong>(key_slice);
- if (we.type == ROCKSDB_NAMESPACE::kDeleteRecord ||
- we.type == ROCKSDB_NAMESPACE::kSingleDeleteRecord ||
- we.type == ROCKSDB_NAMESPACE::kLogDataRecord) {
- // set native handle of value slice to null if no value available
- results[2] = 0;
- } else {
- auto* value_slice =
- new ROCKSDB_NAMESPACE::Slice(we.value.data(), we.value.size());
- results[2] = reinterpret_cast<jlong>(value_slice);
- }
- jlongArray jresults = env->NewLongArray(3);
- if (jresults == nullptr) {
- // exception thrown: OutOfMemoryError
- if (results[2] != 0) {
- auto* value_slice =
- reinterpret_cast<ROCKSDB_NAMESPACE::Slice*>(results[2]);
- delete value_slice;
- }
- delete key_slice;
- return nullptr;
- }
- env->SetLongArrayRegion(jresults, 0, 3, results);
- if (env->ExceptionCheck()) {
- // exception thrown: ArrayIndexOutOfBoundsException
- env->DeleteLocalRef(jresults);
- if (results[2] != 0) {
- auto* value_slice =
- reinterpret_cast<ROCKSDB_NAMESPACE::Slice*>(results[2]);
- delete value_slice;
- }
- delete key_slice;
- return nullptr;
- }
- return jresults;
- }
|