Detach the test name printing listener after the test is run
[lttng-ust-java-tests.git] / src / test / java / org / lttng / tools / ILttngSession.java
1 /*
2 * Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program 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
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19 package org.lttng.tools;
20
21 import java.util.List;
22
23 /**
24 * Java representation of a LTTng tracing session.
25 *
26 * @author Alexandre Montplaisir
27 */
28 public interface ILttngSession extends AutoCloseable {
29
30 /**
31 * Tracing domains as they are defined by lttng-tools
32 */
33 enum Domain {
34 /** The JUL (java.util.logging) domain */
35 JUL("-j"), /** The log4j (org.apache.log4j) domain */
36 LOG4J("-l");
37
38 private final String flag;
39
40 private Domain(String flag) {
41 this.flag = flag;
42 }
43
44 /**
45 * @return The corresponding command-line flag to pass to options like
46 * "lttng enable-event"
47 */
48 public String flag() {
49 return flag;
50 }
51 }
52
53 // ------------------------------------------------------------------------
54 // Factory methods
55 // ------------------------------------------------------------------------
56
57 /**
58 * Create a new LTTng tracing session using the default backend.
59 *
60 * @param sessionName
61 * The name of the session to use. It can be null, in which case
62 * we will provide a unique random name.
63 * @param domain
64 * The tracing domain of this session
65 * @return The new session object
66 */
67 static ILttngSession createSession(String sessionName, Domain domain) {
68 return createCommandLineSession(sessionName, domain);
69 }
70
71 /**
72 * Create a new LTTng tracing session, which will use the command-line
73 * "lttng" utility.
74 *
75 * @param sessionName
76 * The name of the session to use. It can be null, in which case
77 * we will provide a unique random name.
78 * @param domain
79 * The tracing domain of this session
80 * @return The new session object
81 */
82 static ILttngSession createCommandLineSession(String sessionName, Domain domain) {
83 return new LttngCommandLineSession(sessionName, domain);
84 }
85
86 // ------------------------------------------------------------------------
87 // AutoCloseable
88 // ------------------------------------------------------------------------
89
90 /**
91 * Should be used to destroy the LTTng session.
92 */
93 @Override
94 void close();
95
96 // ------------------------------------------------------------------------
97 // Session management
98 // ------------------------------------------------------------------------
99
100 /**
101 * Enable all events in the session (as with "enable-event -a").
102 *
103 * @return If the command executed successfully (return code = 0).
104 */
105 boolean enableAllEvents();
106
107 /**
108 * Enable individual event(s).
109 *
110 * @param enabledEvents
111 * The list of events to enable. Should not be null or empty
112 * @return If the command executed successfully (return code = 0).
113 */
114 boolean enableEvents(String... enabledEvents);
115
116 /**
117 * Send a disable-event command. Used to disable events that were previously
118 * enabled.
119 *
120 * @param disabledEvents
121 * The list of disabled events. Should not be null or empty
122 * @return If the command executed successfully (return code = 0).
123 */
124 boolean disableEvents(String... disabledEvents);
125
126 /**
127 * Start tracing
128 *
129 * @return If the command executed successfully (return code = 0).
130 */
131 boolean start();
132
133 /**
134 * Stop the tracing session
135 *
136 * @return If the command executed successfully (return code = 0).
137 */
138 boolean stop();
139
140 /**
141 * Issue a "lttng view" command on the session, and returns its output. This
142 * effectively returns the current content of the trace in text form.
143 *
144 * @return The output of Babeltrace on the session's current trace
145 */
146 List<String> view();
147 }
This page took 0.031441 seconds and 4 git commands to generate.