lttng ui: Fix minor sonar warnings
[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 interface LTTngControlServiceConstants {
25
26 // ------------------------------------------------------------------------
27 // Version constants
28 // ------------------------------------------------------------------------
29 /**
30 * Pattern to match the LTTng toolchain version 2.x.y.
31 */
32 public static final 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 static final String CONTROL_COMMAND = "lttng"; //$NON-NLS-1$
41 /**
42 * Command: lttng version.
43 */
44 public static final String COMMAND_VERSION = " version "; //$NON-NLS-1$
45 /**
46 * Command: lttng list.
47 */
48 public static final String COMMAND_LIST = " list "; //$NON-NLS-1$
49 /**
50 * Command to list kernel tracer information.
51 */
52 public static final String COMMAND_LIST_KERNEL = COMMAND_LIST + "-k"; //$NON-NLS-1$
53 /**
54 * Command to list user space trace information.
55 */
56 public static final String COMMAND_LIST_UST = COMMAND_LIST + "-u"; //$NON-NLS-1$
57 /**
58 * Command to create a session.
59 */
60 public static final String COMMAND_CREATE_SESSION = " create "; //$NON-NLS-1$
61 /**
62 * Command to destroy a session.
63 */
64 public static final String COMMAND_DESTROY_SESSION = " destroy "; //$NON-NLS-1$
65 /**
66 * Command to destroy a session.
67 */
68 public static final String COMMAND_START_SESSION = " start "; //$NON-NLS-1$
69 /**
70 * Command to destroy a session.
71 */
72 public static final String COMMAND_STOP_SESSION = " stop "; //$NON-NLS-1$
73 /**
74 * Command to enable a channel.
75 */
76 public static final String COMMAND_ENABLE_CHANNEL = " enable-channel "; //$NON-NLS-1$
77 /**
78 * Command to disable a channel.
79 */
80 public static final String COMMAND_DISABLE_CHANNEL = " disable-channel "; //$NON-NLS-1$
81 /**
82 * Command to enable a event.
83 */
84 public static final String COMMAND_ENABLE_EVENT = " enable-event "; //$NON-NLS-1$
85 /**
86 * Command to disable a event.
87 */
88 public static final String COMMAND_DISABLE_EVENT = " disable-event "; //$NON-NLS-1$
89 /**
90 * Command to add a context to channels and/or events
91 */
92 public static final String COMMAND_ADD_CONTEXT = " add-context "; //$NON-NLS-1$
93 /**
94 * Command to execute calibrate command to quantify LTTng overhead
95 */
96 public static final 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 static final String OPTION_TRACING_GROUP = " -g "; //$NON-NLS-1$
105 /**
106 * Command line option for verbose output.
107 */
108 public static final String OPTION_VERBOSE = " -v "; //$NON-NLS-1$
109 /**
110 * Command line option for verbose output.
111 */
112 public static final String OPTION_VERY_VERBOSE = " -vv "; //$NON-NLS-1$
113 /**
114 * Command line option for verbose output.
115 */
116 public static final String OPTION_VERY_VERY_VERBOSE = " -vvv "; //$NON-NLS-1$
117 /**
118 * Command line option for output path.
119 */
120 public static final String OPTION_OUTPUT_PATH = " -o "; //$NON-NLS-1$
121 /**
122 * Command line option for kernel tracer.
123 */
124 public static final String OPTION_KERNEL = " -k "; //$NON-NLS-1$
125 /**
126 * Command line option for UST tracer.
127 */
128 public static final String OPTION_UST = " -u "; //$NON-NLS-1$
129 /**
130 * Command line option for specifying a session.
131 */
132 public static final String OPTION_SESSION = " -s "; //$NON-NLS-1$
133 /**
134 * Command line option for specifying a channel.
135 */
136 public static final String OPTION_CHANNEL = " -c "; //$NON-NLS-1$
137 /**
138 * Command line option for specifying a event.
139 */
140 public static final String OPTION_EVENT = " -e "; //$NON-NLS-1$
141 /**
142 * Command line option for specifying all events.
143 */
144 public static final String OPTION_ALL = " -a "; //$NON-NLS-1$
145 /**
146 * Command line option for specifying a context.
147 */
148 public static final String OPTION_CONTEXT_TYPE = " -t "; //$NON-NLS-1$
149 /**
150 * Command line option for specifying tracepoint events.
151 */
152 public static final String OPTION_TRACEPOINT = " --tracepoint "; //$NON-NLS-1$
153 /**
154 * Command line option for specifying syscall events.
155 */
156 public static final String OPTION_SYSCALL = " --syscall "; //$NON-NLS-1$
157 /**
158 * Command line option for specifying a dynamic probe.
159 */
160 public static final String OPTION_PROBE = " --probe "; //$NON-NLS-1$
161 /**
162 * Command line option for specifying a dynamic function entry/return probe.
163 */
164 public static final String OPTION_FUNCTION_PROBE = " --function "; //$NON-NLS-1$
165 /**
166 * Command line option for specifying a log level range.
167 */
168 public static final String OPTION_LOGLEVEL = " --loglevel "; //$NON-NLS-1$
169 /**
170 * Command line option for specifying a specific log level.
171 */
172 public static final 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 static final 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 static final 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 static final 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 static final 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 static final 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 static final String OPTION_HELP = " -h "; //$NON-NLS-1$
197 /**
198 * Command line option for listing the fields of UST tracepoints
199 */
200 public static final String OPTION_FIELDS = " -f "; //$NON-NLS-1$
201 /**
202 * Command line option for configuring event's filter
203 */
204 public static final 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 static final String OPTION_NETWORK_URL = " -U "; //$NON-NLS-1$
209 /**
210 * Command line option for configuring the streaming control URL.
211 */
212 public static final String OPTION_CONTROL_URL = " -C "; //$NON-NLS-1$
213 /**
214 * Command line option for configuring the streaming data URL.
215 */
216 public static final String OPTION_DATA_URL = " -D "; //$NON-NLS-1$
217
218 // ------------------------------------------------------------------------
219 // Parsing constants
220 // ------------------------------------------------------------------------
221 /**
222 * Pattern to match the version.
223 */
224 public static final Pattern VERSION_PATTERN = Pattern.compile(".*lttng\\s+version\\s+(\\d+\\.\\d+\\.\\d+).*"); //$NON-NLS-1$
225 /**
226 * Pattern to match for error output
227 */
228 public static final Pattern ERROR_PATTERN = Pattern.compile("\\s*Error\\:.*"); //$NON-NLS-1$
229 /**
230 * Pattern to match for session information (lttng list)
231 */
232 public static final Pattern SESSION_PATTERN = Pattern.compile("\\s+(\\d+)\\)\\s+(.*)\\s+\\((.*)\\)\\s+\\[(active|inactive)\\].*"); //$NON-NLS-1$
233 /**
234 * Pattern to match for session information (lttng list <session>)
235 */
236 public static final Pattern TRACE_SESSION_PATTERN = Pattern.compile("\\s*Tracing\\s+session\\s+(.*)\\:\\s+\\[(active|inactive)\\].*"); //$NON-NLS-1$
237 /**
238 * Pattern to match for session path information (lttng list <session>)
239 */
240 public static final Pattern TRACE_SESSION_PATH_PATTERN = Pattern.compile("\\s*Trace\\s+path\\:\\s+(.*)"); //$NON-NLS-1$
241 /**
242 * Pattern to match session path for network tracing (lttng list <session>)
243 * Note: file for protocol is not considered as network trace since local consumer will be used.
244 */
245 public 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$
246 /**
247 * Sub-pattern to pattern TRACE_NETWORK_PATH_PATTERN to match file protocol
248 */
249 public static final Pattern TRACE_FILE_PROTOCOL_PATTERN = Pattern.compile("(file)\\:\\/\\/(.*)"); //$NON-NLS-1$
250 /**
251 * Pattern to match for kernel domain information (lttng list <session>)
252 */
253 public static final Pattern DOMAIN_KERNEL_PATTERN = Pattern.compile("=== Domain: Kernel ==="); //$NON-NLS-1$
254 /**
255 * Pattern to match for ust domain information (lttng list <session>)
256 */
257 public static final Pattern DOMAIN_UST_GLOBAL_PATTERN = Pattern.compile("=== Domain: UST global ==="); //$NON-NLS-1$
258 /**
259 * Pattern to match for matching warning about no kernel channel
260 */
261 public static final Pattern DOMAIN_NO_KERNEL_CHANNEL_PATTERN = Pattern.compile("\\s*Warning\\:\\s+No kernel\\s+channel.*"); //$NON-NLS-1$
262 /**
263 * Pattern to match for matching warning about no UST channel
264 */
265 public static final Pattern DOMAIN_NO_UST_CHANNEL_PATTERN = Pattern.compile("\\s*Error\\:\\s+UST\\s+channel\\s+not\\s+found.*"); //$NON-NLS-1$
266 /**
267 * Pattern to match for channels section (lttng list <session>)
268 */
269 public static final Pattern CHANNELS_SECTION_PATTERN = Pattern.compile("\\s*Channels\\:"); //$NON-NLS-1$
270 /**
271 * Pattern to match for channel information (lttng list <session>)
272 */
273 public static final Pattern CHANNEL_PATTERN = Pattern.compile("\\s*-\\s+(.*)\\:\\s+\\[(enabled|disabled)\\]"); //$NON-NLS-1$
274 /**
275 * Pattern to match for events section information (lttng list <session>)
276 */
277 public static final Pattern EVENT_SECTION_PATTERN = Pattern.compile("\\s*Events\\:"); //$NON-NLS-1$
278 /**
279 * Pattern to match for event information (lttng list <session>)
280 */
281 public 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$
282 /**
283 * Pattern to match a wildcarded event information (lttng list <session>)
284 */
285 public static final Pattern WILDCARD_EVENT_PATTERN = Pattern.compile("\\s+(.*)\\s+\\(type:\\s+(.*)\\)\\s+\\[(enabled|disabled)\\]\\s*(\\[.*\\]){0,1}.*"); //$NON-NLS-1$
286 /**
287 * Pattern to match a probe address information (lttng list <session>)
288 */
289 public static final Pattern PROBE_ADDRESS_PATTERN = Pattern.compile("\\s+(addr)\\:\\s+(0x[0-9a-fA-F]{1,8})"); //$NON-NLS-1$
290 /**
291 * Pattern to match a probe OFFSET information (lttng list <session>)
292 */
293 public static final Pattern PROBE_OFFSET_PATTERN = Pattern.compile("\\s+(offset)\\:\\s+(0x[0-9a-fA-F]{1,8})"); //$NON-NLS-1$
294 /**
295 * Pattern to match a probe SYMBOL information (lttng list <session>)
296 */
297 public static final Pattern PROBE_SYMBOL_PATTERN = Pattern.compile("\\s+(symbol)\\:\\s+(.+)"); //$NON-NLS-1$
298 /**
299 * Pattern to match for channel (overwite mode) information (lttng list <session>)
300 */
301 public static final Pattern OVERWRITE_MODE_ATTRIBUTE = Pattern.compile("\\s+overwrite\\s+mode\\:.*"); //$NON-NLS-1$
302 /**
303 * Pattern to match indicating false for overwrite mode
304 */
305 public static final String OVERWRITE_MODE_ATTRIBUTE_FALSE = "0"; //$NON-NLS-1$
306 /**
307 * Pattern to match for channel (sub-buffer size) information (lttng list <session>)
308 */
309 public static final Pattern SUBBUFFER_SIZE_ATTRIBUTE = Pattern.compile("\\s+subbufers\\s+size\\:.*"); //$NON-NLS-1$
310 /**
311 * Pattern to match for channel (number of sub-buffers) information (lttng list <session>)
312 */
313 public static final Pattern NUM_SUBBUFFERS_ATTRIBUTE = Pattern.compile("\\s+number\\s+of\\s+subbufers\\:.*"); //$NON-NLS-1$
314 /**
315 * Pattern to match for channel (switch timer) information (lttng list <session>)
316 */
317 public static final Pattern SWITCH_TIMER_ATTRIBUTE = Pattern.compile("\\s+switch\\s+timer\\s+interval\\:.*"); //$NON-NLS-1$
318 /**
319 * Pattern to match for channel (read timer) information (lttng list <session>)
320 */
321 public static final Pattern READ_TIMER_ATTRIBUTE = Pattern.compile("\\s+read\\s+timer\\s+interval\\:.*"); //$NON-NLS-1$
322 /**
323 * Pattern to match for channel (output type) information (lttng list <session>)
324 */
325 public static final Pattern OUTPUT_ATTRIBUTE = Pattern.compile("\\s+output\\:.*"); //$NON-NLS-1$
326 /**
327 * Pattern to match for provider information (lttng list -k/-u)
328 */
329 public static final Pattern PROVIDER_EVENT_PATTERN = Pattern.compile("\\s*(.*)\\s+\\(loglevel:\\s+(.*)\\s+\\(\\d*\\)\\)\\s+\\(type:\\s+(.*)\\)"); //$NON-NLS-1$
330 /**
331 * Pattern to match event fields
332 */
333 public static final 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 static final 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 static final 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 static final 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 static final 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 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$
354 /**
355 * Pattern to match introduction line of context list.
356 */
357 public static final 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 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$;
362 /**
363 * Pattern to match error line if no ust tracer is available or installed.
364 */
365 public static final Pattern LIST_UST_NO_UST_PROVIDER_PATTERN = Pattern.compile(".*Unable\\s*to\\s*list\\s*UST\\s*event.*"); //$NON-NLS-1$;
366 }
This page took 0.042598 seconds and 5 git commands to generate.