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::ClockCache.
|
2017-03-30 21:04:09 +02:00
|
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "cache/clock_cache.h"
|
2017-03-30 21:04:09 +02:00
|
|
|
#include "include/org_rocksdb_ClockCache.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_ClockCache
|
|
|
|
* Method: newClockCache
|
|
|
|
* Signature: (JIZ)J
|
|
|
|
*/
|
|
|
|
jlong Java_org_rocksdb_ClockCache_newClockCache(
|
2018-04-13 02:55:14 +02:00
|
|
|
JNIEnv* /*env*/, jclass /*jcls*/, jlong jcapacity, jint jnum_shard_bits,
|
2017-03-30 21:04:09 +02:00
|
|
|
jboolean jstrict_capacity_limit) {
|
2020-02-20 21:07:53 +01:00
|
|
|
auto* sptr_clock_cache = new std::shared_ptr<ROCKSDB_NAMESPACE::Cache>(
|
|
|
|
ROCKSDB_NAMESPACE::NewClockCache(
|
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)));
|
|
|
|
return reinterpret_cast<jlong>(sptr_clock_cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_ClockCache
|
|
|
|
* Method: disposeInternal
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
void Java_org_rocksdb_ClockCache_disposeInternal(JNIEnv* /*env*/,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2017-03-30 21:04:09 +02:00
|
|
|
auto* sptr_clock_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_clock_cache; // delete std::shared_ptr
|
|
|
|
}
|