mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-28 05:43:50 +00:00
2a551976f4
Summary: Run format check for .h and .cc files to clean the format Pull Request resolved: https://github.com/facebook/rocksdb/pull/10851 Test Plan: Watch CI tests to pass Reviewed By: ajkr Differential Revision: D40649723 fbshipit-source-id: 62d32cead0b3b8e6540e86d25451bd72642109eb
61 lines
1.9 KiB
C++
61 lines
1.9 KiB
C++
// 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++ for
|
|
// ROCKSDB_NAMESPACE::Comparator.
|
|
|
|
#include <jni.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
#include "include/org_rocksdb_AbstractComparator.h"
|
|
#include "include/org_rocksdb_NativeComparatorWrapper.h"
|
|
#include "rocksjni/comparatorjnicallback.h"
|
|
#include "rocksjni/cplusplus_to_java_convert.h"
|
|
#include "rocksjni/portal.h"
|
|
|
|
/*
|
|
* Class: org_rocksdb_AbstractComparator
|
|
* Method: createNewComparator
|
|
* Signature: (J)J
|
|
*/
|
|
jlong Java_org_rocksdb_AbstractComparator_createNewComparator(
|
|
JNIEnv* env, jobject jcomparator, jlong copt_handle) {
|
|
auto* copt =
|
|
reinterpret_cast<ROCKSDB_NAMESPACE::ComparatorJniCallbackOptions*>(
|
|
copt_handle);
|
|
auto* c =
|
|
new ROCKSDB_NAMESPACE::ComparatorJniCallback(env, jcomparator, copt);
|
|
return GET_CPLUSPLUS_POINTER(c);
|
|
}
|
|
|
|
/*
|
|
* Class: org_rocksdb_AbstractComparator
|
|
* Method: usingDirectBuffers
|
|
* Signature: (J)Z
|
|
*/
|
|
jboolean Java_org_rocksdb_AbstractComparator_usingDirectBuffers(JNIEnv*,
|
|
jobject,
|
|
jlong jhandle) {
|
|
auto* c =
|
|
reinterpret_cast<ROCKSDB_NAMESPACE::ComparatorJniCallback*>(jhandle);
|
|
return static_cast<jboolean>(c->m_options->direct_buffer);
|
|
}
|
|
|
|
/*
|
|
* Class: org_rocksdb_NativeComparatorWrapper
|
|
* Method: disposeInternal
|
|
* Signature: (J)V
|
|
*/
|
|
void Java_org_rocksdb_NativeComparatorWrapper_disposeInternal(
|
|
JNIEnv* /*env*/, jobject /*jobj*/, jlong jcomparator_handle) {
|
|
auto* comparator =
|
|
reinterpret_cast<ROCKSDB_NAMESPACE::Comparator*>(jcomparator_handle);
|
|
delete comparator;
|
|
}
|