Fix: initialize RCU callbacks with mixed LGPL/non-LGPL objects
[lttng-ust.git] / liblttng-ust-java-agent / jni / jul / lttng_ust_jul.c
CommitLineData
43e5396b 1/*
8ab5c06b 2 * Copyright (C) 2016 - EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
43e5396b
DG
3 * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; only
8 * version 2.1 of the License.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
6e7bc9e0 20#include "org_lttng_ust_agent_jul_LttngJulApi.h"
43e5396b
DG
21
22#define TRACEPOINT_DEFINE
23#define TRACEPOINT_CREATE_PROBES
24#include "lttng_ust_jul.h"
8ab5c06b 25#include "../common/lttng_ust_context.h"
43e5396b 26
9aabed2d 27/*
8ab5c06b 28 * Deprecated function from before the context information was passed.
9aabed2d 29 */
6e7bc9e0 30JNIEXPORT void JNICALL Java_org_lttng_ust_agent_jul_LttngJulApi_tracepoint(JNIEnv *env,
43e5396b
DG
31 jobject jobj,
32 jstring msg,
33 jstring logger_name,
34 jstring class_name,
35 jstring method_name,
36 jlong millis,
37 jint log_level,
38 jint thread_id)
39{
40 jboolean iscopy;
41 const char *msg_cstr = (*env)->GetStringUTFChars(env, msg, &iscopy);
42 const char *logger_name_cstr = (*env)->GetStringUTFChars(env, logger_name, &iscopy);
43 const char *class_name_cstr = (*env)->GetStringUTFChars(env, class_name, &iscopy);
44 const char *method_name_cstr = (*env)->GetStringUTFChars(env, method_name, &iscopy);
45
8286ff50 46 tracepoint(lttng_jul, event, msg_cstr, logger_name_cstr,
9aabed2d
DG
47 class_name_cstr, method_name_cstr, millis, log_level, thread_id);
48
49 (*env)->ReleaseStringUTFChars(env, msg, msg_cstr);
50 (*env)->ReleaseStringUTFChars(env, logger_name, logger_name_cstr);
51 (*env)->ReleaseStringUTFChars(env, class_name, class_name_cstr);
52 (*env)->ReleaseStringUTFChars(env, method_name, method_name_cstr);
53}
8ab5c06b
AM
54
55/*
56 * Tracepoint used by Java applications using the JUL handler.
57 */
58JNIEXPORT void JNICALL Java_org_lttng_ust_agent_jul_LttngJulApi_tracepointWithContext(JNIEnv *env,
59 jobject jobj,
60 jstring msg,
61 jstring logger_name,
62 jstring class_name,
63 jstring method_name,
64 jlong millis,
65 jint log_level,
66 jint thread_id,
b1ca4c5f
AM
67 jbyteArray context_info_entries,
68 jbyteArray context_info_strings)
8ab5c06b
AM
69{
70 jboolean iscopy;
71 const char *msg_cstr = (*env)->GetStringUTFChars(env, msg, &iscopy);
72 const char *logger_name_cstr = (*env)->GetStringUTFChars(env, logger_name, &iscopy);
73 const char *class_name_cstr = (*env)->GetStringUTFChars(env, class_name, &iscopy);
74 const char *method_name_cstr = (*env)->GetStringUTFChars(env, method_name, &iscopy);
b1ca4c5f
AM
75 signed char *context_info_entries_array;
76 signed char *context_info_strings_array;
8ab5c06b
AM
77
78 /*
79 * Write these to the TLS variables, so that the UST callbacks in
80 * lttng_ust_context.c can access them.
81 */
b1ca4c5f
AM
82 context_info_entries_array = (*env)->GetByteArrayElements(env, context_info_entries, &iscopy);
83 lttng_ust_context_info_tls.ctx_entries = (struct lttng_ust_jni_ctx_entry *) context_info_entries_array;
84 lttng_ust_context_info_tls.ctx_entries_len = (*env)->GetArrayLength(env, context_info_entries);
85 context_info_strings_array = (*env)->GetByteArrayElements(env, context_info_strings, &iscopy);
86 lttng_ust_context_info_tls.ctx_strings = context_info_strings_array;
87 lttng_ust_context_info_tls.ctx_strings_len = (*env)->GetArrayLength(env, context_info_strings);
8ab5c06b
AM
88
89 tracepoint(lttng_jul, event, msg_cstr, logger_name_cstr,
90 class_name_cstr, method_name_cstr, millis, log_level, thread_id);
91
b1ca4c5f
AM
92 lttng_ust_context_info_tls.ctx_entries = NULL;
93 lttng_ust_context_info_tls.ctx_entries_len = 0;
94 lttng_ust_context_info_tls.ctx_strings = NULL;
95 lttng_ust_context_info_tls.ctx_strings_len = 0;
8ab5c06b
AM
96 (*env)->ReleaseStringUTFChars(env, msg, msg_cstr);
97 (*env)->ReleaseStringUTFChars(env, logger_name, logger_name_cstr);
98 (*env)->ReleaseStringUTFChars(env, class_name, class_name_cstr);
99 (*env)->ReleaseStringUTFChars(env, method_name, method_name_cstr);
b1ca4c5f
AM
100 (*env)->ReleaseByteArrayElements(env, context_info_entries, context_info_entries_array, 0);
101 (*env)->ReleaseByteArrayElements(env, context_info_strings, context_info_strings_array, 0);
8ab5c06b 102}
This page took 0.028036 seconds and 4 git commands to generate.