// Copyright (c) 2015, 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. #include #include "include/org_rocksdb_RemoveEmptyValueCompactionFilter.h" #include "utilities/compaction_filters/remove_emptyvalue_compactionfilter.h" /* * Class: org_rocksdb_RemoveEmptyValueCompactionFilter * Method: createNewRemoveEmptyValueCompactionFilter0 * Signature: ()V */ void Java_org_rocksdb_RemoveEmptyValueCompactionFilter_createNewRemoveEmptyValueCompactionFilter0( JNIEnv* env, jobject jobj) { const rocksdb::RemoveEmptyValueCompactionFilter* compaction_filter = new rocksdb::RemoveEmptyValueCompactionFilter(); // set the native handle to our native compaction filter static jclass jclazz = env->FindClass("org/rocksdb/RemoveEmptyValueCompactionFilter"); static jfieldID fid = env->GetFieldID(jclazz, "nativeHandle_", "J"); env->SetLongField(jobj, fid, reinterpret_cast(compaction_filter)); }