Split the JNI APIs in separate classes
[deliverable/lttng-ust.git] / liblttng-ust-java-agent / jni / jul / lttng_ust_jul.c
CommitLineData
43e5396b
DG
1/*
2 * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; only
7 * version 2.1 of the License.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
e736b17f 19#include "org_lttng_ust_agent_jul_LttngJulApi.h"
43e5396b
DG
20
21#define TRACEPOINT_DEFINE
22#define TRACEPOINT_CREATE_PROBES
23#include "lttng_ust_jul.h"
24
9aabed2d 25/*
d60dfbe4 26 * Tracepoint used by Java applications using the JUL handler.
9aabed2d 27 */
e736b17f 28JNIEXPORT void JNICALL Java_org_lttng_ust_agent_jul_LttngJulApi_tracepoint(JNIEnv *env,
43e5396b
DG
29 jobject jobj,
30 jstring msg,
31 jstring logger_name,
32 jstring class_name,
33 jstring method_name,
34 jlong millis,
35 jint log_level,
36 jint thread_id)
37{
38 jboolean iscopy;
39 const char *msg_cstr = (*env)->GetStringUTFChars(env, msg, &iscopy);
40 const char *logger_name_cstr = (*env)->GetStringUTFChars(env, logger_name, &iscopy);
41 const char *class_name_cstr = (*env)->GetStringUTFChars(env, class_name, &iscopy);
42 const char *method_name_cstr = (*env)->GetStringUTFChars(env, method_name, &iscopy);
43
8286ff50 44 tracepoint(lttng_jul, event, msg_cstr, logger_name_cstr,
9aabed2d
DG
45 class_name_cstr, method_name_cstr, millis, log_level, thread_id);
46
47 (*env)->ReleaseStringUTFChars(env, msg, msg_cstr);
48 (*env)->ReleaseStringUTFChars(env, logger_name, logger_name_cstr);
49 (*env)->ReleaseStringUTFChars(env, class_name, class_name_cstr);
50 (*env)->ReleaseStringUTFChars(env, method_name, method_name_cstr);
51}
This page took 0.027403 seconds and 5 git commands to generate.