2017-03-30 21:04:09 +02: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).
|
2017-03-30 21:04:09 +02:00
|
|
|
//
|
|
|
|
// This file implements the "bridge" between Java and C++ for
|
2020-02-20 21:07:53 +01:00
|
|
|
// ROCKSDB_NAMESPACE::LRUCache.
|
2017-03-30 21:04:09 +02:00
|
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "cache/lru_cache.h"
|
2017-03-30 21:04:09 +02:00
|
|
|
#include "include/org_rocksdb_LRUCache.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_LRUCache
|
|
|
|
* Method: newLRUCache
|
|
|
|
* Signature: (JIZD)J
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
jlong Java_org_rocksdb_LRUCache_newLRUCache(JNIEnv* /*env*/, jclass /*jcls*/,
|
|
|
|
jlong jcapacity,
|
|
|
|
jint jnum_shard_bits,
|
|
|
|
jboolean jstrict_capacity_limit,
|
|
|
|
jdouble jhigh_pri_pool_ratio) {
|
2020-02-20 21:07:53 +01:00
|
|
|
auto* sptr_lru_cache = new std::shared_ptr<ROCKSDB_NAMESPACE::Cache>(
|
|
|
|
ROCKSDB_NAMESPACE::NewLRUCache(
|
2018-04-13 02:55:14 +02:00
|
|
|
static_cast<size_t>(jcapacity), static_cast<int>(jnum_shard_bits),
|
2017-03-30 21:04:09 +02:00
|
|
|
static_cast<bool>(jstrict_capacity_limit),
|
|
|
|
static_cast<double>(jhigh_pri_pool_ratio)));
|
2022-02-05 01:00:39 +01:00
|
|
|
return reinterpret_cast<size_t>(sptr_lru_cache);
|
2017-03-30 21:04:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_LRUCache
|
|
|
|
* Method: disposeInternal
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
void Java_org_rocksdb_LRUCache_disposeInternal(JNIEnv* /*env*/,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2017-03-30 21:04:09 +02:00
|
|
|
auto* sptr_lru_cache =
|
2020-02-20 21:07:53 +01:00
|
|
|
reinterpret_cast<std::shared_ptr<ROCKSDB_NAMESPACE::Cache>*>(jhandle);
|
2017-03-30 21:04:09 +02:00
|
|
|
delete sptr_lru_cache; // delete std::shared_ptr
|
|
|
|
}
|