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-08-03 22:11:44 +02:00
|
|
|
//
|
|
|
|
// This file implements the "bridge" between Java and C++ for
|
|
|
|
// rocksdb::Comparator.
|
|
|
|
|
2018-04-13 02:55:14 +02:00
|
|
|
#include <jni.h>
|
2014-08-03 22:11:44 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <functional>
|
2018-04-13 02:55:14 +02:00
|
|
|
#include <string>
|
2014-08-03 22:11:44 +02:00
|
|
|
|
|
|
|
#include "include/org_rocksdb_Comparator.h"
|
|
|
|
#include "include/org_rocksdb_DirectComparator.h"
|
2018-03-08 20:16:46 +01:00
|
|
|
#include "include/org_rocksdb_NativeComparatorWrapper.h"
|
2014-08-03 22:11:44 +02:00
|
|
|
#include "rocksjni/comparatorjnicallback.h"
|
|
|
|
#include "rocksjni/portal.h"
|
|
|
|
|
2014-08-21 22:55:51 +02:00
|
|
|
// <editor-fold desc="org.rocksdb.Comparator>
|
2014-08-03 22:11:44 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_Comparator
|
|
|
|
* Method: createNewComparator0
|
2016-01-20 18:05:41 +01:00
|
|
|
* Signature: ()J
|
2014-08-03 22:11:44 +02:00
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
jlong Java_org_rocksdb_Comparator_createNewComparator0(JNIEnv* env,
|
|
|
|
jobject jobj,
|
|
|
|
jlong copt_handle) {
|
2017-10-12 20:06:51 +02:00
|
|
|
auto* copt =
|
|
|
|
reinterpret_cast<rocksdb::ComparatorJniCallbackOptions*>(copt_handle);
|
2018-04-13 02:55:14 +02:00
|
|
|
auto* c = new rocksdb::ComparatorJniCallback(env, jobj, copt);
|
2016-01-20 18:05:41 +01:00
|
|
|
return reinterpret_cast<jlong>(c);
|
2014-08-03 22:11:44 +02:00
|
|
|
}
|
2014-08-21 22:55:51 +02:00
|
|
|
// </editor-fold>
|
2014-08-03 22:11:44 +02:00
|
|
|
|
2014-08-21 22:55:51 +02:00
|
|
|
// <editor-fold desc="org.rocksdb.DirectComparator>
|
2014-08-03 22:11:44 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_DirectComparator
|
|
|
|
* Method: createNewDirectComparator0
|
2016-01-20 18:05:41 +01:00
|
|
|
* Signature: ()J
|
2014-08-03 22:11:44 +02:00
|
|
|
*/
|
2016-01-20 18:05:41 +01:00
|
|
|
jlong Java_org_rocksdb_DirectComparator_createNewDirectComparator0(
|
2014-08-15 14:34:10 +02:00
|
|
|
JNIEnv* env, jobject jobj, jlong copt_handle) {
|
2017-10-12 20:06:51 +02:00
|
|
|
auto* copt =
|
|
|
|
reinterpret_cast<rocksdb::ComparatorJniCallbackOptions*>(copt_handle);
|
2018-04-13 02:55:14 +02:00
|
|
|
auto* c = new rocksdb::DirectComparatorJniCallback(env, jobj, copt);
|
2016-01-20 18:05:41 +01:00
|
|
|
return reinterpret_cast<jlong>(c);
|
2014-08-03 22:11:44 +02:00
|
|
|
}
|
2018-03-08 20:16:46 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_NativeComparatorWrapper
|
|
|
|
* Method: disposeInternal
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
|
|
|
void Java_org_rocksdb_NativeComparatorWrapper_disposeInternal(
|
2018-04-13 02:55:14 +02:00
|
|
|
JNIEnv* /*env*/, jobject /*jobj*/, jlong jcomparator_handle) {
|
|
|
|
auto* comparator = reinterpret_cast<rocksdb::Comparator*>(jcomparator_handle);
|
2018-03-08 20:16:46 +01:00
|
|
|
delete comparator;
|
|
|
|
}
|
2014-08-21 22:55:51 +02:00
|
|
|
// </editor-fold>
|