Internalize lttng.ui Activator
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.jni / src / org / eclipse / linuxtools / lttng / jni_v2_3 / JniTrace_v2_3.java
CommitLineData
0152140d 1package org.eclipse.linuxtools.lttng.jni_v2_3;
3b7509b0 2/*******************************************************************************
a3767fd9 3 * Copyright (c) 2009, 2011 Ericsson, MontaVista Software
3b7509b0
WB
4 *
5 * All rights reserved. This program and the accompanying materials are
6 * made available under the terms of the Eclipse Public License v1.0 which
7 * accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
9 *
10 * Contributors:
11 * William Bourque (wbourque@gmail.com) - Initial API and implementation
a3767fd9 12 * Yufen Kuo (ykuo@mvista.com) - add support to allow user specify trace library path
c9eef0da 13 * Yufen Kuo (ykuo@mvista.com) - bug 340341: handle gracefully when native library failed to initialize
3b7509b0 14 *******************************************************************************/
0152140d
ASL
15
16import org.eclipse.linuxtools.lttng.jni.JniTrace;
17import org.eclipse.linuxtools.lttng.jni.JniTracefile;
c85e8cb2 18import org.eclipse.linuxtools.lttng.jni.common.Jni_C_Pointer_And_Library_Id;
0152140d
ASL
19import org.eclipse.linuxtools.lttng.jni.exception.JniException;
20
3b7509b0
WB
21/**
22 * <b><u>JniTrace_v2_3</u></b>
23 * <p>
24 * JniTrace version to support Lttng traceformat of version 2.3.<br>
25 * This class extend abstract class JniTrace with (possibly) version specific implementation.<br>
26 *
27 * It also make sure the correct library is loaded by liblttvlibraryloader.so
28 * <p>
29 */
0152140d
ASL
30public class JniTrace_v2_3 extends JniTrace {
31
3b7509b0
WB
32 // This is the dynamic library name that is passed to the library loader (liblttvlibraryloader.so) to load.
33 // It needs to be a complete name, like "libXYZ.so", unlike java that would take "XYZ". It could also take a complete path.
34 // The library need to be accessible, i.e. LD_LIBRARY_PATH need to be set correctly.
3b38ea61 35 private static final String LIBRARY_NAME = "liblttvtraceread-2.3.so"; //$NON-NLS-1$
0152140d 36
3b7509b0
WB
37 /*
38 * Forbid access to the default constructor
39 */
0152140d
ASL
40 protected JniTrace_v2_3() {
41 super();
42 }
43
3b7509b0 44
0152140d
ASL
45 public JniTrace_v2_3(String newpath) throws JniException {
46 super(newpath);
47 }
48
49 public JniTrace_v2_3(String newpath, boolean newPrintDebug) throws JniException {
50 super(newpath, newPrintDebug);
51 }
52
53
54 public JniTrace_v2_3(JniTrace_v2_3 oldTrace) {
55 super(oldTrace);
56 }
57
c85e8cb2 58 public JniTrace_v2_3(Jni_C_Pointer_And_Library_Id newPtr, boolean newPrintDebug) throws JniException {
0152140d 59 super(newPtr, newPrintDebug);
c9eef0da
FC
60 }
61
3b7509b0 62 /**
c9eef0da
FC
63 * Get the trace library name
64 * <p>
3b7509b0 65 *
c9eef0da 66 * Get the version specific native trace library name
3b7509b0 67 *
c9eef0da 68 * @return The native trace library name
3b7509b0 69 */
b9fb2d51 70 @Override
c9eef0da
FC
71 public String getTraceLibName() {
72 return LIBRARY_NAME;
0152140d
ASL
73 }
74
3b7509b0
WB
75 /**
76 * Allocate (call constructor for) a new JniTracefile.<p>
77 *
78 * This method is made to bypass limitation related to abstract class, see comment in JniTrace
79 *
80 * @return JniTracefile a newly allocated JniTracefile
81 *
82 * @see org.eclipse.linuxtools.lttng.jni.JniTrace
83 */
b9fb2d51 84 @Override
c85e8cb2 85 public JniTracefile allocateNewJniTracefile(Jni_C_Pointer_And_Library_Id newPtr, JniTrace newParentTrace) throws JniException {
0152140d
ASL
86 return new JniTracefile_v2_3(newPtr, newParentTrace);
87 }
c9eef0da 88
0152140d 89}
This page took 0.032385 seconds and 5 git commands to generate.