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).
|
2015-02-10 21:59:40 +01:00
|
|
|
//
|
|
|
|
// This file implements the callback "bridge" between Java and C++ for
|
|
|
|
// rocksdb::Logger
|
|
|
|
|
|
|
|
#ifndef JAVA_ROCKSJNI_LOGGERJNICALLBACK_H_
|
|
|
|
#define JAVA_ROCKSJNI_LOGGERJNICALLBACK_H_
|
|
|
|
|
|
|
|
#include <jni.h>
|
2017-02-28 01:26:12 +01:00
|
|
|
#include <memory>
|
2015-02-10 21:59:40 +01:00
|
|
|
#include <string>
|
2017-10-12 20:06:51 +02:00
|
|
|
#include "rocksjni/jnicallback.h"
|
2015-02-10 21:59:40 +01:00
|
|
|
#include "port/port.h"
|
|
|
|
#include "rocksdb/env.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
2017-10-12 20:06:51 +02:00
|
|
|
class LoggerJniCallback : public JniCallback, public Logger {
|
2015-03-10 23:16:21 +01:00
|
|
|
public:
|
|
|
|
LoggerJniCallback(JNIEnv* env, jobject jLogger);
|
2017-10-12 20:06:51 +02:00
|
|
|
~LoggerJniCallback();
|
2015-03-10 22:57:15 +01:00
|
|
|
|
2015-03-10 23:16:21 +01:00
|
|
|
using Logger::SetInfoLogLevel;
|
|
|
|
using Logger::GetInfoLogLevel;
|
|
|
|
// Write an entry to the log file with the specified format.
|
|
|
|
virtual void Logv(const char* format, va_list ap);
|
|
|
|
// Write an entry to the log file with the specified log level
|
|
|
|
// and format. Any log with level under the internal log level
|
|
|
|
// of *this (see @SetInfoLogLevel and @GetInfoLogLevel) will not be
|
|
|
|
// printed.
|
|
|
|
virtual void Logv(const InfoLogLevel log_level,
|
|
|
|
const char* format, va_list ap);
|
2015-02-10 21:59:40 +01:00
|
|
|
|
2015-03-10 23:16:21 +01:00
|
|
|
private:
|
|
|
|
jmethodID m_jLogMethodId;
|
2016-07-29 01:54:06 +02:00
|
|
|
jobject m_jdebug_level;
|
|
|
|
jobject m_jinfo_level;
|
|
|
|
jobject m_jwarn_level;
|
|
|
|
jobject m_jerror_level;
|
|
|
|
jobject m_jfatal_level;
|
|
|
|
jobject m_jheader_level;
|
2017-02-28 01:26:12 +01:00
|
|
|
std::unique_ptr<char[]> format_str(const char* format, va_list ap) const;
|
2015-02-10 21:59:40 +01:00
|
|
|
};
|
2015-03-10 23:16:21 +01:00
|
|
|
} // namespace rocksdb
|
2015-02-10 21:59:40 +01:00
|
|
|
|
2015-03-10 23:16:21 +01:00
|
|
|
#endif // JAVA_ROCKSJNI_LOGGERJNICALLBACK_H_
|