Update file headers in LTTng Control feature
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / service / LTTngControlServiceConstants.java
1 /**********************************************************************
2 * Copyright (c) 2012, 2013 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 * Bernd Hufmann - Updated for support of LTTng Tools 2.1
12 **********************************************************************/
13 package org.eclipse.linuxtools.internal.lttng2.ui.views.control.service;
14
15 import java.util.regex.Pattern;
16
17 /**
18 * <p>
19 * Constants for LTTng Control Service.
20 * </p>
21 *
22 * @author Bernd Hufmann
23 */
24 public class LTTngControlServiceConstants {
25
26 // ------------------------------------------------------------------------
27 // Version constants
28 // ------------------------------------------------------------------------
29 /**
30 * Pattern to match the LTTng toolchain version 2.x.y.
31 */
32 public final static Pattern VERSION_2_PATTERN = Pattern.compile("(2\\.\\d+\\.\\d+).*"); //$NON-NLS-1$
33
34 // ------------------------------------------------------------------------
35 // Command constants
36 // ------------------------------------------------------------------------
37 /**
38 * The lttng tools command.
39 */
40 public final static String CONTROL_COMMAND = "lttng"; //$NON-NLS-1$
41 /**
42 * Command: lttng version.
43 */
44 public final static String COMMAND_VERSION = " version "; //$NON-NLS-1$
45 /**
46 * Command: lttng list.
47 */
48 public final static String COMMAND_LIST = " list "; //$NON-NLS-1$
49 /**
50 * Command to list kernel tracer information.
51 */
52 public final static String COMMAND_LIST_KERNEL = COMMAND_LIST + "-k"; //$NON-NLS-1$
53 /**
54 * Command to list user space trace information.
55 */
56 public final static String COMMAND_LIST_UST = COMMAND_LIST + "-u"; //$NON-NLS-1$
57 /**
58 * Command to create a session.
59 */
60 public final static String COMMAND_CREATE_SESSION = " create "; //$NON-NLS-1$
61 /**
62 * Command to destroy a session.
63 */
64 public final static String COMMAND_DESTROY_SESSION = " destroy "; //$NON-NLS-1$
65 /**
66 * Command to destroy a session.
67 */
68 public final static String COMMAND_START_SESSION = " start "; //$NON-NLS-1$
69 /**
70 * Command to destroy a session.
71 */
72 public final static String COMMAND_STOP_SESSION = " stop "; //$NON-NLS-1$
73 /**
74 * Command to enable a channel.
75 */
76 public final static String COMMAND_ENABLE_CHANNEL = " enable-channel "; //$NON-NLS-1$
77 /**
78 * Command to disable a channel.
79 */
80 public final static String COMMAND_DISABLE_CHANNEL = " disable-channel "; //$NON-NLS-1$
81 /**
82 * Command to enable a event.
83 */
84 public final static String COMMAND_ENABLE_EVENT = " enable-event "; //$NON-NLS-1$
85 /**
86 * Command to disable a event.
87 */
88 public final static String COMMAND_DISABLE_EVENT = " disable-event "; //$NON-NLS-1$
89 /**
90 * Command to add a context to channels and/or events
91 */
92 public final static String COMMAND_ADD_CONTEXT = " add-context "; //$NON-NLS-1$
93 /**
94 * Command to execute calibrate command to quantify LTTng overhead
95 */
96 public final static String COMMAND_CALIBRATE = " calibrate "; //$NON-NLS-1$
97
98 // ------------------------------------------------------------------------
99 // Command line options constants
100 // ------------------------------------------------------------------------
101 /**
102 * Command line option to add tracing group of user.
103 */
104 public final static String OPTION_TRACING_GROUP = " -g "; //$NON-NLS-1$
105 /**
106 * Command line option for verbose output.
107 */
108 public final static String OPTION_VERBOSE = " -v "; //$NON-NLS-1$
109 /**
110 * Command line option for verbose output.
111 */
112 public final static String OPTION_VERY_VERBOSE = " -vv "; //$NON-NLS-1$
113 /**
114 * Command line option for verbose output.
115 */
116 public final static String OPTION_VERY_VERY_VERBOSE = " -vvv "; //$NON-NLS-1$
117 /**
118 * Command line option for output path.
119 */
120 public final static String OPTION_OUTPUT_PATH = " -o "; //$NON-NLS-1$
121 /**
122 * Command line option for kernel tracer.
123 */
124 public final static String OPTION_KERNEL = " -k "; //$NON-NLS-1$
125 /**
126 * Command line option for UST tracer.
127 */
128 public final static String OPTION_UST = " -u "; //$NON-NLS-1$
129 /**
130 * Command line option for specifying a session.
131 */
132 public final static String OPTION_SESSION = " -s "; //$NON-NLS-1$
133 /**
134 * Command line option for specifying a channel.
135 */
136 public final static String OPTION_CHANNEL = " -c "; //$NON-NLS-1$
137 /**
138 * Command line option for specifying a event.
139 */
140 public final static String OPTION_EVENT = " -e "; //$NON-NLS-1$
141 /**
142 * Command line option for specifying all events.
143 */
144 public final static String OPTION_ALL = " -a "; //$NON-NLS-1$
145 /**
146 * Command line option for specifying a context.
147 */
148 public final static String OPTION_CONTEXT_TYPE = " -t "; //$NON-NLS-1$
149 /**
150 * Command line option for specifying tracepoint events.
151 */
152 public final static String OPTION_TRACEPOINT = " --tracepoint "; //$NON-NLS-1$
153 /**
154 * Command line option for specifying syscall events.
155 */
156 public final static String OPTION_SYSCALL = " --syscall "; //$NON-NLS-1$
157 /**
158 * Command line option for specifying a dynamic probe.
159 */
160 public final static String OPTION_PROBE = " --probe "; //$NON-NLS-1$
161 /**
162 * Command line option for specifying a dynamic function entry/return probe.
163 */
164 public final static String OPTION_FUNCTION_PROBE = " --function "; //$NON-NLS-1$
165 /**
166 * Command line option for specifying a log level range.
167 */
168 public final static String OPTION_LOGLEVEL = " --loglevel "; //$NON-NLS-1$
169 /**
170 * Command line option for specifying a specific log level.
171 */
172 public final static String OPTION_LOGLEVEL_ONLY = " --loglevel-only "; //$NON-NLS-1$
173 /**
174 * Optional command line option for configuring a channel's overwrite mode.
175 */
176 public final static String OPTION_OVERWRITE = " --overwrite "; //$NON-NLS-1$
177 /**
178 * Optional command line option for configuring a channel's number of sub buffers.
179 */
180 public final static String OPTION_NUM_SUB_BUFFERS = " --num-subbuf "; //$NON-NLS-1$
181 /**
182 * Optional command line option for configuring a channel's sub buffer size.
183 */
184 public final static String OPTION_SUB_BUFFER_SIZE = " --subbuf-size "; //$NON-NLS-1$
185 /**
186 * Optional command line option for configuring a channel's switch timer interval.
187 */
188 public final static String OPTION_SWITCH_TIMER = " --switch-timer "; //$NON-NLS-1$
189 /**
190 * Optional command line option for configuring a channel's read timer interval.
191 */
192 public final static String OPTION_READ_TIMER = " --read-timer "; //$NON-NLS-1$
193 /**
194 * Command line option for printing the help of a specif command
195 */
196 public final static String OPTION_HELP = " -h "; //$NON-NLS-1$
197 /**
198 * Command line option for listing the fields of UST tracepoints
199 */
200 public final static String OPTION_FIELDS = " -f "; //$NON-NLS-1$
201 /**
202 * Command line option for configuring event's filter
203 */
204 public final static String OPTION_FILTER = " --filter "; //$NON-NLS-1$
205 /**
206 * Command line option for configuring the streaming network URL (common for control and data channel).
207 */
208 public final static String OPTION_NETWORK_URL = " -U "; //$NON-NLS-1$
209 /**
210 * Command line option for configuring the streaming control URL.
211 */
212 public final static String OPTION_CONTROL_URL = " -C "; //$NON-NLS-1$
213 /**
214 * Command line option for configuring the streaming data URL.
215 */
216 public final static String OPTION_DATA_URL = " -D "; //$NON-NLS-1$
217 /**
218 * Command line option for configuring of no consumer.
219 */
220 public final static String OPTION_NO_CONSUMER = " --no-consumer "; //$NON-NLS-1$
221 /**
222 * Command line option for disabling the consumer.
223 */
224 public final static String OPTION_DISABLE_CONSUMER = " --disable-consumer "; //$NON-NLS-1$
225
226 // ------------------------------------------------------------------------
227 // Parsing constants
228 // ------------------------------------------------------------------------
229 /**
230 * Pattern to match the version.
231 */
232 public final static Pattern VERSION_PATTERN = Pattern.compile(".*lttng\\s+version\\s+(\\d+\\.\\d+\\.\\d+).*"); //$NON-NLS-1$
233 /**
234 * Pattern to match for error output
235 */
236 public final static Pattern ERROR_PATTERN = Pattern.compile("\\s*Error\\:.*"); //$NON-NLS-1$
237 /**
238 * Pattern to match for session information (lttng list)
239 */
240 public final static Pattern SESSION_PATTERN = Pattern.compile("\\s+(\\d+)\\)\\s+(.*)\\s+\\((.*)\\)\\s+\\[(active|inactive)\\].*"); //$NON-NLS-1$
241 /**
242 * Pattern to match for session information (lttng list <session>)
243 */
244 public final static Pattern TRACE_SESSION_PATTERN = Pattern.compile("\\s*Tracing\\s+session\\s+(.*)\\:\\s+\\[(active|inactive)\\].*"); //$NON-NLS-1$
245 /**
246 * Pattern to match for session path information (lttng list <session>)
247 */
248 public final static Pattern TRACE_SESSION_PATH_PATTERN = Pattern.compile("\\s*Trace\\s+path\\:\\s+(.*)"); //$NON-NLS-1$
249 /**
250 * Patter to match session path for network tracing (lttng list <session>)
251 */
252 public final static Pattern TRACE_NETWORK_PATH_PATTERN = Pattern.compile("\\s*Trace\\s+path\\:\\s+(net|net6|file|tcp|tcp6|)\\:\\/\\/(.*)(\\:(\\d*)\\/(.*)\\[data\\:\\s+(\\d*)\\]){0,1}"); //$NON-NLS-1$
253 /**
254 * Pattern to match for kernel domain information (lttng list <session>)
255 */
256 public final static Pattern DOMAIN_KERNEL_PATTERN = Pattern.compile("=== Domain: Kernel ==="); //$NON-NLS-1$
257 /**
258 * Pattern to match for ust domain information (lttng list <session>)
259 */
260 public final static Pattern DOMAIN_UST_GLOBAL_PATTERN = Pattern.compile("=== Domain: UST global ==="); //$NON-NLS-1$
261 /**
262 * Pattern to match for channels section (lttng list <session>)
263 */
264 public final static Pattern CHANNELS_SECTION_PATTERN = Pattern.compile("\\s*Channels\\:"); //$NON-NLS-1$
265 /**
266 * Pattern to match for channel information (lttng list <session>)
267 */
268 public final static Pattern CHANNEL_PATTERN = Pattern.compile("\\s*-\\s+(.*)\\:\\s+\\[(enabled|disabled)\\]"); //$NON-NLS-1$
269 /**
270 * Pattern to match for events section information (lttng list <session>)
271 */
272 public final static Pattern EVENT_SECTION_PATTERN = Pattern.compile("\\s*Events\\:"); //$NON-NLS-1$
273 /**
274 * Pattern to match for event information (no enabled events) (lttng list <session>)
275 */
276 // public final static String EVENT_NONE_PATTERN = "\\s+None"; //$NON-NLS-1$
277 /**
278 * Pattern to match for event information (lttng list <session>)
279 */
280 public final static Pattern EVENT_PATTERN = Pattern.compile("\\s+(.*)\\s+\\(loglevel:\\s+(.*)\\s+\\(\\d*\\)\\)\\s+\\(type:\\s+(.*)\\)\\s+\\[(enabled|disabled)\\]\\s*(\\[.*\\]){0,1}.*"); //$NON-NLS-1$
281 /**
282 * Pattern to match a wildcarded event information (lttng list <session>)
283 */
284 public final static Pattern WILDCARD_EVENT_PATTERN = Pattern.compile("\\s+(.*)\\s+\\(type:\\s+(.*)\\)\\s+\\[(enabled|disabled)\\]\\s*(\\[.*\\]){0,1}.*"); //$NON-NLS-1$
285 /**
286 * Pattern to match a probe address information (lttng list <session>)
287 */
288 public final static Pattern PROBE_ADDRESS_PATTERN = Pattern.compile("\\s+(addr)\\:\\s+(0x[0-9a-fA-F]{1,8})"); //$NON-NLS-1$
289 /**
290 * Pattern to match a probe OFFSET information (lttng list <session>)
291 */
292 public final static Pattern PROBE_OFFSET_PATTERN = Pattern.compile("\\s+(offset)\\:\\s+(0x[0-9a-fA-F]{1,8})"); //$NON-NLS-1$
293 /**
294 * Pattern to match a probe SYMBOL information (lttng list <session>)
295 */
296 public final static Pattern PROBE_SYMBOL_PATTERN = Pattern.compile("\\s+(symbol)\\:\\s+(.+)"); //$NON-NLS-1$
297 /**
298 * Pattern to match for channel (overwite mode) information (lttng list <session>)
299 */
300 public final static Pattern OVERWRITE_MODE_ATTRIBUTE = Pattern.compile("\\s+overwrite\\s+mode\\:.*"); //$NON-NLS-1$
301 /**
302 * Pattern to match indicating false for overwrite mode
303 */
304 public final static String OVERWRITE_MODE_ATTRIBUTE_FALSE = "0"; //$NON-NLS-1$
305 /**
306 * Pattern to match for channel (sub-buffer size) information (lttng list <session>)
307 */
308 public final static Pattern SUBBUFFER_SIZE_ATTRIBUTE = Pattern.compile("\\s+subbufers\\s+size\\:.*"); //$NON-NLS-1$
309 /**
310 * Pattern to match for channel (number of sub-buffers) information (lttng list <session>)
311 */
312 public final static Pattern NUM_SUBBUFFERS_ATTRIBUTE = Pattern.compile("\\s+number\\s+of\\s+subbufers\\:.*"); //$NON-NLS-1$
313 /**
314 * Pattern to match for channel (switch timer) information (lttng list <session>)
315 */
316 public final static Pattern SWITCH_TIMER_ATTRIBUTE = Pattern.compile("\\s+switch\\s+timer\\s+interval\\:.*"); //$NON-NLS-1$
317 /**
318 * Pattern to match for channel (read timer) information (lttng list <session>)
319 */
320 public final static Pattern READ_TIMER_ATTRIBUTE = Pattern.compile("\\s+read\\s+timer\\s+interval\\:.*"); //$NON-NLS-1$
321 /**
322 * Pattern to match for channel (output type) information (lttng list <session>)
323 */
324 public final static Pattern OUTPUT_ATTRIBUTE = Pattern.compile("\\s+output\\:.*"); //$NON-NLS-1$
325 /**
326 * Pattern to match for provider information (lttng list -k/-u)
327 */
328 public final static Pattern PROVIDER_EVENT_PATTERN = Pattern.compile("\\s*(.*)\\s+\\(loglevel:\\s+(.*)\\s+\\(\\d*\\)\\)\\s+\\(type:\\s+(.*)\\)"); //$NON-NLS-1$
329 /**
330 * Pattern to match event fields
331 */
332 // field: content (string)
333 public final static Pattern EVENT_FIELD_PATTERN = Pattern.compile("\\s*(field:)\\s+(.*)\\s+\\((.*)\\)"); //$NON-NLS-1$
334 /**
335 * Pattern to match for UST provider information (lttng list -u)
336 */
337 public final static Pattern UST_PROVIDER_PATTERN = Pattern.compile("\\s*PID\\:\\s+(\\d+)\\s+-\\s+Name\\:\\s+(.*)"); //$NON-NLS-1$
338 /**
339 * Pattern to match for session information (lttng create <session name>)
340 */
341 public final static Pattern CREATE_SESSION_NAME_PATTERN = Pattern.compile(".*Session\\s+(.*)\\s+created\\."); //$NON-NLS-1$
342 /**
343 * Pattern to match for session path information (lttng create <session name>)
344 */
345 public final static Pattern CREATE_SESSION_PATH_PATTERN = Pattern.compile("\\s*Traces\\s+will\\s+be\\s+written\\s+in\\s+(.*).*"); //$NON-NLS-1$
346 /**
347 * Pattern to match for session command output for "session name not found".
348 */
349 public final static Pattern SESSION_NOT_FOUND_ERROR_PATTERN = Pattern.compile("\\s*Error:\\s+Session\\s+name\\s+not\\s+found"); //$NON-NLS-1$
350 /**
351 * Pattern to match introduction line of context list.
352 */
353 public final static Pattern ADD_CONTEXT_HELP_CONTEXTS_INTRO = Pattern.compile("\\s*TYPE can\\s+be\\s+one\\s+of\\s+the\\s+strings\\s+below.*"); //$NON-NLS-1$
354 /**
355 * Pattern to match introduction line of context list.
356 */
357 public final static Pattern ADD_CONTEXT_HELP_CONTEXTS_END_LINE = Pattern.compile("\\s*Example.*"); //$NON-NLS-1$
358 /**
359 * Pattern to match error line if no kernel tracer is available or installed.
360 */
361 public final static Pattern LIST_KERNEL_NO_KERNEL_PROVIDER_PATTERN = Pattern.compile("\\s*Error:\\s+Unable\\s+to\\s+list\\s+kernel\\s+events.*"); //$NON-NLS-1$;
362
363 }
This page took 0.039085 seconds and 5 git commands to generate.