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-10-13 10:34:52 +02:00
|
|
|
//
|
2018-03-02 19:22:38 +01:00
|
|
|
// This file implements the "bridge" between Java and C++ for
|
|
|
|
// rocksdb::ColumnFamilyHandle.
|
2014-10-13 10:34:52 +02:00
|
|
|
|
2018-04-13 02:55:14 +02:00
|
|
|
#include <jni.h>
|
2014-10-13 10:34:52 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "include/org_rocksdb_ColumnFamilyHandle.h"
|
|
|
|
#include "rocksjni/portal.h"
|
|
|
|
|
2018-03-02 19:22:38 +01:00
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_ColumnFamilyHandle
|
|
|
|
* Method: getName
|
|
|
|
* Signature: (J)[B
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
jbyteArray Java_org_rocksdb_ColumnFamilyHandle_getName(JNIEnv* env,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2018-03-02 19:22:38 +01:00
|
|
|
auto* cfh = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jhandle);
|
|
|
|
std::string cf_name = cfh->GetName();
|
|
|
|
return rocksdb::JniUtil::copyBytes(env, cf_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2018-04-13 02:55:14 +02:00
|
|
|
* Class: org_rocksdb_ColumnFamilyHandle
|
|
|
|
* Method: getID
|
|
|
|
* Signature: (J)I
|
|
|
|
*/
|
|
|
|
jint Java_org_rocksdb_ColumnFamilyHandle_getID(JNIEnv* /*env*/,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2018-03-02 19:22:38 +01:00
|
|
|
auto* cfh = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jhandle);
|
|
|
|
const int32_t id = cfh->GetID();
|
|
|
|
return static_cast<jint>(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_ColumnFamilyHandle
|
|
|
|
* Method: getDescriptor
|
|
|
|
* Signature: (J)Lorg/rocksdb/ColumnFamilyDescriptor;
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
jobject Java_org_rocksdb_ColumnFamilyHandle_getDescriptor(JNIEnv* env,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2018-03-02 19:22:38 +01:00
|
|
|
auto* cfh = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jhandle);
|
|
|
|
rocksdb::ColumnFamilyDescriptor desc;
|
|
|
|
rocksdb::Status s = cfh->GetDescriptor(&desc);
|
|
|
|
if (s.ok()) {
|
|
|
|
return rocksdb::ColumnFamilyDescriptorJni::construct(env, &desc);
|
|
|
|
} else {
|
|
|
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, s);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-13 10:34:52 +02:00
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_ColumnFamilyHandle
|
|
|
|
* Method: disposeInternal
|
|
|
|
* Signature: (J)V
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
void Java_org_rocksdb_ColumnFamilyHandle_disposeInternal(JNIEnv* /*env*/,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jhandle) {
|
2018-03-02 19:22:38 +01:00
|
|
|
auto* cfh = reinterpret_cast<rocksdb::ColumnFamilyHandle*>(jhandle);
|
2017-02-28 01:26:12 +01:00
|
|
|
assert(cfh != nullptr);
|
|
|
|
delete cfh;
|
2014-10-13 10:34:52 +02:00
|
|
|
}
|