blob: a6adc88f53fb054d9a6f0e5cfbbfcbc93afb958d [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/* //device/libs/android_runtime/android_util_Log.cpp
2**
3** Copyright 2006, The Android Open Source Project
4**
Elliott Hughes8451b252011-04-07 19:17:57 -07005** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008**
Elliott Hughes8451b252011-04-07 19:17:57 -07009** http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010**
Elliott Hughes8451b252011-04-07 19:17:57 -070011** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080015** limitations under the License.
16*/
17
18#define LOG_NAMESPACE "log.tag."
19#define LOG_TAG "Log_println"
20
Andreas Gampe8413db82015-12-14 13:54:51 -080021#include <android-base/macros.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022#include <assert.h>
23#include <cutils/properties.h>
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070024#include <log/log.h> // For LOGGER_ENTRY_MAX_PAYLOAD.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025#include <utils/Log.h>
26#include <utils/String8.h>
27
28#include "jni.h"
Steven Moreland2279b252017-07-19 09:50:45 -070029#include <nativehelper/JNIHelp.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030#include "utils/misc.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080031#include "core_jni_helpers.h"
Jeff Brown4b575532012-01-20 12:34:34 -080032#include "android_util_Log.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034namespace android {
35
36struct levels_t {
37 jint verbose;
38 jint debug;
39 jint info;
40 jint warn;
41 jint error;
42 jint assert;
43};
44static levels_t levels;
45
Jeff Brown4b575532012-01-20 12:34:34 -080046static jboolean isLoggable(const char* tag, jint level) {
Mark Salyzynb761d042015-11-16 16:24:52 +000047 return __android_log_is_loggable(level, tag, ANDROID_LOG_INFO);
Jeff Brown4b575532012-01-20 12:34:34 -080048}
49
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050static jboolean android_util_Log_isLoggable(JNIEnv* env, jobject clazz, jstring tag, jint level)
51{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 if (tag == NULL) {
53 return false;
54 }
Elliott Hughes8451b252011-04-07 19:17:57 -070055
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056 const char* chars = env->GetStringUTFChars(tag, NULL);
Jeff Brown4b575532012-01-20 12:34:34 -080057 if (!chars) {
58 return false;
59 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060
Mark Salyzyn8143fa52017-04-07 11:26:26 -070061 jboolean result = isLoggable(chars, level);
Elliott Hughes8451b252011-04-07 19:17:57 -070062
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063 env->ReleaseStringUTFChars(tag, chars);
Jeff Brown4b575532012-01-20 12:34:34 -080064 return result;
65}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066
Jeff Brown4b575532012-01-20 12:34:34 -080067bool android_util_Log_isVerboseLogEnabled(const char* tag) {
68 return isLoggable(tag, levels.verbose);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069}
70
71/*
72 * In class android.util.Log:
Joe Onorato00bb9382010-02-26 18:07:01 -080073 * public static native int println_native(int buffer, int priority, String tag, String msg)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 */
Joe Onorato00bb9382010-02-26 18:07:01 -080075static jint android_util_Log_println_native(JNIEnv* env, jobject clazz,
76 jint bufID, jint priority, jstring tagObj, jstring msgObj)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077{
78 const char* tag = NULL;
79 const char* msg = NULL;
80
81 if (msgObj == NULL) {
Elliott Hughes8451b252011-04-07 19:17:57 -070082 jniThrowNullPointerException(env, "println needs a message");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 return -1;
84 }
85
Joe Onorato00bb9382010-02-26 18:07:01 -080086 if (bufID < 0 || bufID >= LOG_ID_MAX) {
Elliott Hughes8451b252011-04-07 19:17:57 -070087 jniThrowNullPointerException(env, "bad bufID");
Joe Onorato00bb9382010-02-26 18:07:01 -080088 return -1;
89 }
90
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 if (tagObj != NULL)
92 tag = env->GetStringUTFChars(tagObj, NULL);
93 msg = env->GetStringUTFChars(msgObj, NULL);
94
Joe Onorato00bb9382010-02-26 18:07:01 -080095 int res = __android_log_buf_write(bufID, (android_LogPriority)priority, tag, msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096
97 if (tag != NULL)
98 env->ReleaseStringUTFChars(tagObj, tag);
99 env->ReleaseStringUTFChars(msgObj, msg);
100
101 return res;
102}
103
104/*
Andreas Gampe8413db82015-12-14 13:54:51 -0800105 * In class android.util.Log:
106 * private static native int logger_entry_max_payload_native()
107 */
108static jint android_util_Log_logger_entry_max_payload_native(JNIEnv* env ATTRIBUTE_UNUSED,
109 jobject clazz ATTRIBUTE_UNUSED)
110{
111 return static_cast<jint>(LOGGER_ENTRY_MAX_PAYLOAD);
112}
113
114/*
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 * JNI registration.
116 */
Daniel Micay76f6a862015-09-19 17:31:01 -0400117static const JNINativeMethod gMethods[] = {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 /* name, signature, funcPtr */
119 { "isLoggable", "(Ljava/lang/String;I)Z", (void*) android_util_Log_isLoggable },
Joe Onorato00bb9382010-02-26 18:07:01 -0800120 { "println_native", "(IILjava/lang/String;Ljava/lang/String;)I", (void*) android_util_Log_println_native },
Andreas Gampe8413db82015-12-14 13:54:51 -0800121 { "logger_entry_max_payload_native", "()I", (void*) android_util_Log_logger_entry_max_payload_native },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122};
123
124int register_android_util_Log(JNIEnv* env)
125{
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800126 jclass clazz = FindClassOrDie(env, "android/util/Log");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800128 levels.verbose = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "VERBOSE", "I"));
129 levels.debug = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "DEBUG", "I"));
130 levels.info = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "INFO", "I"));
131 levels.warn = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "WARN", "I"));
132 levels.error = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "ERROR", "I"));
133 levels.assert = env->GetStaticIntField(clazz, GetStaticFieldIDOrDie(env, clazz, "ASSERT", "I"));
Elliott Hughes8451b252011-04-07 19:17:57 -0700134
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800135 return RegisterMethodsOrDie(env, "android/util/Log", gMethods, NELEM(gMethods));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136}
137
138}; // namespace android