2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02: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-04-22 08:56:19 +02:00
|
|
|
//
|
2014-04-22 09:09:40 +02:00
|
|
|
// This file implements the "bridge" between Java and C++ for
|
|
|
|
// rocksdb::FilterPolicy.
|
2014-04-22 08:56:19 +02:00
|
|
|
|
2018-04-13 02:55:14 +02:00
|
|
|
#include <jni.h>
|
2014-04-22 08:56:19 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string>
|
|
|
|
|
2014-04-22 17:58:43 +02:00
|
|
|
#include "include/org_rocksdb_BloomFilter.h"
|
2018-04-13 02:55:14 +02:00
|
|
|
#include "include/org_rocksdb_Filter.h"
|
2014-04-22 08:56:19 +02:00
|
|
|
#include "rocksdb/filter_policy.h"
|
2018-04-13 02:55:14 +02:00
|
|
|
#include "rocksjni/portal.h"
|
2014-04-22 08:56:19 +02:00
|
|
|
|
|
|
|
/*
|
2014-04-22 17:58:43 +02:00
|
|
|
* Class: org_rocksdb_BloomFilter
|
2014-10-06 23:34:27 +02:00
|
|
|
* Method: createBloomFilter
|
2016-01-20 18:05:41 +01:00
|
|
|
* Signature: (IZ)J
|
2014-04-22 08:56:19 +02:00
|
|
|
*/
|
2016-01-20 18:05:41 +01:00
|
|
|
jlong Java_org_rocksdb_BloomFilter_createNewBloomFilter(
|
2018-04-13 02:55:14 +02:00
|
|
|
JNIEnv* /*env*/, jclass /*jcls*/, jint bits_per_key,
|
2014-10-06 23:34:27 +02:00
|
|
|
jboolean use_block_base_builder) {
|
2018-04-13 02:55:14 +02:00
|
|
|
auto* sptr_filter = new std::shared_ptr<const rocksdb::FilterPolicy>(
|
|
|
|
rocksdb::NewBloomFilterPolicy(bits_per_key, use_block_base_builder));
|
2017-02-28 01:26:12 +01:00
|
|
|
return reinterpret_cast<jlong>(sptr_filter);
|
2014-04-22 08:56:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_Filter
|
[Java] Generalize dis-own native handle and refine dispose framework.
Summary:
1. Move disOwnNativeHandle() function from RocksDB to RocksObject
to allow other RocksObject to use disOwnNativeHandle() when its
ownership of native handle has been transferred.
2. RocksObject now has an abstract implementation of dispose(),
which does the following two things. First, it checks whether
both isOwningNativeHandle() and isInitialized() return true.
If so, it will call the protected abstract function dispose0(),
which all the subclasses of RocksObject should implement. Second,
it sets nativeHandle_ = 0. This redesign ensure all subclasses
of RocksObject have the same dispose behavior.
3. All subclasses of RocksObject now should implement dispose0()
instead of dispose(), and dispose0() will be called only when
isInitialized() returns true.
Test Plan:
make rocksdbjava
make jtest
Reviewers: dhruba, sdong, ankgup87, rsumbaly, swapnilghike, zzbennett, haobo
Reviewed By: haobo
Subscribers: leveldb
Differential Revision: https://reviews.facebook.net/D18801
2014-05-29 03:16:29 +02:00
|
|
|
* Method: disposeInternal
|
2014-04-22 08:56:19 +02:00
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
void Java_org_rocksdb_Filter_disposeInternal(JNIEnv* /*env*/, jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2017-02-28 01:26:12 +01:00
|
|
|
auto* handle =
|
2018-04-13 02:55:14 +02:00
|
|
|
reinterpret_cast<std::shared_ptr<const rocksdb::FilterPolicy>*>(jhandle);
|
2017-02-28 01:26:12 +01:00
|
|
|
delete handle; // delete std::shared_ptr
|
2014-04-22 09:04:56 +02:00
|
|
|
}
|