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