control: Add enhanced support for loading of sessions
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / service / LTTngControlService.java
1 /**********************************************************************
2 * Copyright (c) 2012, 2015 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 * Simon Delisle - Updated for support of LTTng Tools 2.2
13 * Marc-Andre Laperle - Support for creating a live session
14 * Markus Schorn - Bug 448058: Use org.eclipse.remote in favor of RSE
15 **********************************************************************/
16 package org.eclipse.tracecompass.internal.lttng2.control.ui.views.service;
17
18 import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
19 import static org.eclipse.tracecompass.common.core.NonNullUtils.nullToEmptyString;
20
21 import java.util.ArrayList;
22 import java.util.Arrays;
23 import java.util.Iterator;
24 import java.util.List;
25 import java.util.regex.Matcher;
26 import java.util.regex.Pattern;
27
28 import org.eclipse.core.commands.ExecutionException;
29 import org.eclipse.core.runtime.IProgressMonitor;
30 import org.eclipse.core.runtime.NullProgressMonitor;
31 import org.eclipse.jdt.annotation.NonNull;
32 import org.eclipse.jdt.annotation.Nullable;
33 import org.eclipse.tracecompass.internal.lttng2.control.core.model.IBaseEventInfo;
34 import org.eclipse.tracecompass.internal.lttng2.control.core.model.IChannelInfo;
35 import org.eclipse.tracecompass.internal.lttng2.control.core.model.IDomainInfo;
36 import org.eclipse.tracecompass.internal.lttng2.control.core.model.IEventInfo;
37 import org.eclipse.tracecompass.internal.lttng2.control.core.model.IFieldInfo;
38 import org.eclipse.tracecompass.internal.lttng2.control.core.model.IProbeEventInfo;
39 import org.eclipse.tracecompass.internal.lttng2.control.core.model.ISessionInfo;
40 import org.eclipse.tracecompass.internal.lttng2.control.core.model.ISnapshotInfo;
41 import org.eclipse.tracecompass.internal.lttng2.control.core.model.IUstProviderInfo;
42 import org.eclipse.tracecompass.internal.lttng2.control.core.model.LogLevelType;
43 import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceEventType;
44 import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceLogLevel;
45 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.BaseEventInfo;
46 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.BufferType;
47 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.ChannelInfo;
48 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.DomainInfo;
49 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.EventInfo;
50 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.FieldInfo;
51 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.ProbeEventInfo;
52 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.SessionInfo;
53 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.SnapshotInfo;
54 import org.eclipse.tracecompass.internal.lttng2.control.core.model.impl.UstProviderInfo;
55 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.logging.ControlCommandLogger;
56 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.messages.Messages;
57 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.preferences.ControlPreferences;
58 import org.eclipse.tracecompass.tmf.remote.core.shell.ICommandInput;
59 import org.eclipse.tracecompass.tmf.remote.core.shell.ICommandResult;
60 import org.eclipse.tracecompass.tmf.remote.core.shell.ICommandShell;
61
62 /**
63 * <p>
64 * Service for sending LTTng trace control commands to remote host.
65 * </p>
66 *
67 * @author Bernd Hufmann
68 */
69 public class LTTngControlService implements ILttngControlService {
70
71
72 // ------------------------------------------------------------------------
73 // Attributes
74 // ------------------------------------------------------------------------
75 /**
76 * The command shell implementation
77 */
78 private final @NonNull ICommandShell fCommandShell;
79
80 /**
81 * The version string.
82 */
83 private @NonNull LttngVersion fVersion = LttngVersion.NULL_VERSION;
84
85 // ------------------------------------------------------------------------
86 // Constructors
87 // ------------------------------------------------------------------------
88
89 /**
90 * Constructor
91 *
92 * @param shell
93 * - the command shell implementation to use
94 */
95 public LTTngControlService(@NonNull ICommandShell shell) {
96 fCommandShell = shell;
97 }
98
99 // ------------------------------------------------------------------------
100 // Accessors
101 // ------------------------------------------------------------------------
102
103 @Override
104 public String getVersionString() {
105 return nullToEmptyString(fVersion.toString());
106 }
107
108 @Override
109 public LttngVersion getVersion() {
110 return fVersion;
111 }
112
113 /**
114 * Sets the version of the LTTng 2.0 control service.
115 *
116 * @param version
117 * - a version to set
118 */
119 public void setVersion(@Nullable String version) {
120 if (version != null) {
121 fVersion = new LttngVersion(version);
122 }
123 }
124
125 /**
126 * Sets the version of the LTTng 2.x control service.
127 *
128 * @param version
129 * - a version to set
130 */
131 public void setVersion(LttngVersion version) {
132 if (version != null) {
133 fVersion = version;
134 }
135 }
136
137 @Override
138 public boolean isVersionSupported(String version) {
139 LttngVersion tmp = new LttngVersion(version);
140 return (fVersion.compareTo(tmp) >= 0) ? true : false;
141 }
142
143 /**
144 * Returns the command shell implementation.
145 *
146 * @return the command shell implementation
147 */
148 protected ICommandShell getCommandShell() {
149 return fCommandShell;
150 }
151
152 // ------------------------------------------------------------------------
153 // Operations
154 // ------------------------------------------------------------------------
155
156 @Override
157 public List<String> getSessionNames(IProgressMonitor monitor) throws ExecutionException {
158 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_LIST);
159
160 ICommandResult result = executeCommand(command, monitor);
161
162 // Output:
163 // Available tracing sessions:
164 // 1) mysession1 (/home/user/lttng-traces/mysession1-20120123-083928)
165 // [inactive]
166 // 2) mysession (/home/user/lttng-traces/mysession-20120123-083318)
167 // [inactive]
168 //
169 // Use lttng list <session_name> for more details
170
171 ArrayList<String> retArray = new ArrayList<>();
172 for (String line : result.getOutput()) {
173 Matcher matcher = LTTngControlServiceConstants.SESSION_PATTERN.matcher(line);
174 if (matcher.matches()) {
175 retArray.add(matcher.group(2).trim());
176 }
177 }
178 return retArray;
179 }
180
181 /**
182 * Check if there is a pattern to be ignored into a sequence of string
183 *
184 * @param input
185 * an input list of Strings
186 * @param pattern
187 * the pattern to search for
188 * @return if the pattern exist in the array of string
189 */
190 protected boolean ignoredPattern(List<String> input, Pattern pattern) {
191 for (String line : input) {
192 Matcher matcher = pattern.matcher(line);
193 if (matcher.matches()) {
194 return true;
195 }
196 }
197 return false;
198 }
199
200 @Override
201 public ISessionInfo getSession(String sessionName, IProgressMonitor monitor) throws ExecutionException {
202 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_LIST, sessionName);
203 ICommandResult result = executeCommand(command, monitor);
204
205 int index = 0;
206
207 // Output:
208 // Tracing session mysession2: [inactive]
209 // Trace path: /home/eedbhu/lttng-traces/mysession2-20120123-110330
210 ISessionInfo sessionInfo = new SessionInfo(sessionName);
211
212 while (index < result.getOutput().size()) {
213 // Tracing session mysession2: [inactive]
214 // Trace path: /home/eedbhu/lttng-traces/mysession2-20120123-110330
215 //
216 // === Domain: Kernel ===
217 //
218 String line = result.getOutput().get(index);
219 Matcher matcher = LTTngControlServiceConstants.TRACE_SESSION_PATTERN.matcher(line);
220 if (matcher.matches()) {
221 sessionInfo.setSessionState(matcher.group(2));
222 index++;
223 continue;
224 }
225
226 matcher = LTTngControlServiceConstants.TRACE_SNAPSHOT_SESSION_PATTERN.matcher(line);
227 if (matcher.matches()) {
228 sessionInfo.setSessionState(matcher.group(2));
229 // real name will be set later
230 ISnapshotInfo snapshotInfo = new SnapshotInfo(""); //$NON-NLS-1$
231 sessionInfo.setSnapshotInfo(snapshotInfo);
232 index++;
233 continue;
234 }
235
236 if (!sessionInfo.isSnapshotSession()) {
237 matcher = LTTngControlServiceConstants.TRACE_NETWORK_PATH_PATTERN.matcher(line);
238 if (matcher.matches()) {
239 sessionInfo.setStreamedTrace(true);
240 }
241
242 matcher = LTTngControlServiceConstants.TRACE_SESSION_PATH_PATTERN.matcher(line);
243 if (matcher.matches()) {
244 sessionInfo.setSessionPath(matcher.group(1).trim());
245 index++;
246 continue;
247 }
248 }
249
250 matcher = LTTngControlServiceConstants.DOMAIN_KERNEL_PATTERN.matcher(line);
251 if (matcher.matches()) {
252 // Create Domain
253 IDomainInfo domainInfo = new DomainInfo(Messages.TraceControl_KernelDomainDisplayName);
254
255 // set kernel flag
256 domainInfo.setIsKernel(true);
257
258 // in domain kernel
259 ArrayList<IChannelInfo> channels = new ArrayList<>();
260 index = parseDomain(result.getOutput(), index, channels, domainInfo);
261
262 if (channels.size() > 0) {
263 // add domain
264 sessionInfo.addDomain(domainInfo);
265
266 // set channels
267 domainInfo.setChannels(channels);
268 }
269 continue;
270 }
271
272 matcher = LTTngControlServiceConstants.DOMAIN_UST_GLOBAL_PATTERN.matcher(line);
273 if (matcher.matches()) {
274 IDomainInfo domainInfo = new DomainInfo(Messages.TraceControl_UstGlobalDomainDisplayName);
275
276 // set kernel flag
277 domainInfo.setIsKernel(false);
278
279 // in domain UST
280 ArrayList<IChannelInfo> channels = new ArrayList<>();
281 index = parseDomain(result.getOutput(), index, channels, domainInfo);
282
283 if (channels.size() > 0) {
284 // add domain
285 sessionInfo.addDomain(domainInfo);
286
287 // set channels
288 domainInfo.setChannels(channels);
289 }
290 continue;
291 }
292 matcher = LTTngControlServiceConstants.LIST_LIVE_TIMER_INTERVAL_PATTERN.matcher(line);
293 if (matcher.matches()) {
294 long liveDelay = Long.parseLong(matcher.group(1));
295 if ((liveDelay > 0) && (liveDelay <= LTTngControlServiceConstants.MAX_LIVE_TIMER_INTERVAL)) {
296 sessionInfo.setLive(true);
297 sessionInfo.setLiveUrl(SessionInfo.DEFAULT_LIVE_NETWORK_URL);
298 sessionInfo.setLivePort(SessionInfo.DEFAULT_LIVE_PORT);
299 sessionInfo.setLiveDelay(liveDelay);
300 }
301 index++;
302 continue;
303 }
304
305 index++;
306 }
307
308 if (sessionInfo.isSnapshotSession()) {
309 ISnapshotInfo snapshot = getSnapshotInfo(sessionName, monitor);
310 sessionInfo.setSnapshotInfo(snapshot);
311 }
312
313 return sessionInfo;
314 }
315
316 @Override
317 public ISnapshotInfo getSnapshotInfo(String sessionName, IProgressMonitor monitor) throws ExecutionException {
318 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_SNAPSHOT, LTTngControlServiceConstants.COMMAND_LIST_SNAPSHOT_OUTPUT, LTTngControlServiceConstants.OPTION_SESSION, sessionName);
319 ICommandResult result = executeCommand(command, monitor);
320
321 int index = 0;
322
323 // Output:
324 // [1] snapshot-1: /home/user/lttng-traces/my-20130909-114431
325 // or
326 // [3] snapshot-3: net4://172.0.0.1/
327 ISnapshotInfo snapshotInfo = new SnapshotInfo(""); //$NON-NLS-1$
328
329 while (index < result.getOutput().size()) {
330 String line = result.getOutput().get(index);
331 Matcher matcher = LTTngControlServiceConstants.LIST_SNAPSHOT_OUTPUT_PATTERN.matcher(line);
332 if (matcher.matches()) {
333 snapshotInfo.setId(Integer.valueOf(matcher.group(1)));
334 snapshotInfo.setName(matcher.group(2));
335 snapshotInfo.setSnapshotPath(matcher.group(3));
336
337 Matcher matcher2 = LTTngControlServiceConstants.SNAPSHOT_NETWORK_PATH_PATTERN.matcher(snapshotInfo.getSnapshotPath());
338 if (matcher2.matches()) {
339 snapshotInfo.setStreamedSnapshot(true);
340 }
341
342 index++;
343 break;
344 }
345 index++;
346 }
347
348 return snapshotInfo;
349 }
350
351 @Override
352 public List<IBaseEventInfo> getKernelProvider(IProgressMonitor monitor) throws ExecutionException {
353 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_LIST, LTTngControlServiceConstants.OPTION_KERNEL);
354 ICommandResult result = executeCommand(command, monitor, false);
355
356 List<IBaseEventInfo> events = new ArrayList<>();
357
358 // Ignore the following 2 cases:
359 // Spawning a session daemon
360 // Error: Unable to list kernel events
361 // or:
362 // Error: Unable to list kernel events
363 //
364 if (ignoredPattern(result.getErrorOutput(), LTTngControlServiceConstants.LIST_KERNEL_NO_KERNEL_PROVIDER_PATTERN)) {
365 return events;
366 }
367
368 if (isError(result)) {
369 throw new ExecutionException(Messages.TraceControl_CommandError + " " + command.toString() + "\n" + result.toString()); //$NON-NLS-1$ //$NON-NLS-2$
370 }
371
372 // Kernel events:
373 // -------------
374 // sched_kthread_stop (type: tracepoint)
375 getProviderEventInfo(result.getOutput(), 0, events);
376 return events;
377 }
378
379 @Override
380 public List<IUstProviderInfo> getUstProvider() throws ExecutionException {
381 return getUstProvider(new NullProgressMonitor());
382 }
383
384 @Override
385 public List<IUstProviderInfo> getUstProvider(IProgressMonitor monitor) throws ExecutionException {
386 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_LIST, LTTngControlServiceConstants.OPTION_UST);
387
388 if (isVersionSupported("2.1.0")) { //$NON-NLS-1$
389 command.add(LTTngControlServiceConstants.OPTION_FIELDS);
390 }
391
392 ICommandResult result = executeCommand(command, monitor, false);
393 List<IUstProviderInfo> allProviders = new ArrayList<>();
394
395 // Workaround for versions 2.0.x which causes a segmentation fault for
396 // this command
397 // if LTTng Tools is compiled without UST support.
398 if (!isVersionSupported("2.1.0") && (result.getResult() != 0)) { //$NON-NLS-1$
399 return allProviders;
400 }
401
402 // Ignore the following 2 cases:
403 // Spawning a session daemon
404 // Error: Unable to list UST events: Listing UST events failed
405 // or:
406 // Error: Unable to list UST events: Listing UST events failed
407 //
408 if (ignoredPattern(result.getErrorOutput(), LTTngControlServiceConstants.LIST_UST_NO_UST_PROVIDER_PATTERN)) {
409 return allProviders;
410 }
411
412 if (isError(result)) {
413 throw new ExecutionException(Messages.TraceControl_CommandError + " " + command.toString() + "\n" + result.toString()); //$NON-NLS-1$ //$NON-NLS-2$
414 }
415
416 // Note that field print-outs exists for version >= 2.1.0
417 //
418 // UST events:
419 // -------------
420 //
421 // PID: 3635 - Name:
422 // /home/user/git/lttng-ust/tests/hello.cxx/.libs/lt-hello
423 // ust_tests_hello:tptest_sighandler (loglevel: TRACE_EMERG0) (type:
424 // tracepoint)
425 // ust_tests_hello:tptest (loglevel: TRACE_EMERG0) (type: tracepoint)
426 // field: doublefield (float)
427 // field: floatfield (float)
428 // field: stringfield (string)
429 //
430 // PID: 6459 - Name:
431 // /home/user/git/lttng-ust/tests/hello.cxx/.libs/lt-hello
432 // ust_tests_hello:tptest_sighandler (loglevel: TRACE_EMERG0) (type:
433 // tracepoint)
434 // ust_tests_hello:tptest (loglevel: TRACE_EMERG0) (type: tracepoint)
435 // field: doublefield (float)
436 // field: floatfield (float)
437 // field: stringfield (string)
438
439 IUstProviderInfo provider = null;
440
441 int index = 0;
442 while (index < result.getOutput().size()) {
443 String line = result.getOutput().get(index);
444 Matcher matcher = LTTngControlServiceConstants.UST_PROVIDER_PATTERN.matcher(line);
445 if (matcher.matches()) {
446 provider = new UstProviderInfo(matcher.group(2).trim());
447 provider.setPid(Integer.valueOf(matcher.group(1).trim()));
448 List<IBaseEventInfo> events = new ArrayList<>();
449 index = getProviderEventInfo(result.getOutput(), ++index, events);
450 provider.setEvents(events);
451 allProviders.add(provider);
452 } else {
453 index++;
454 }
455 }
456 return allProviders;
457 }
458
459 @Override
460 public ISessionInfo createSession(ISessionInfo sessionInfo, IProgressMonitor monitor) throws ExecutionException {
461 if (sessionInfo.isStreamedTrace()) {
462 return createStreamedSession(sessionInfo, monitor);
463 }
464
465 ICommandInput command = prepareSessionCreationCommand(sessionInfo);
466
467 ICommandResult result = executeCommand(command, monitor);
468
469 // Session myssession2 created.
470 // Traces will be written in
471 // /home/user/lttng-traces/myssession2-20120209-095418
472 List<String> output = result.getOutput();
473
474 // Get and session name and path
475 String name = null;
476 String path = null;
477
478 for (String line : output) {
479 Matcher nameMatcher = LTTngControlServiceConstants.CREATE_SESSION_NAME_PATTERN.matcher(line);
480 Matcher pathMatcher = LTTngControlServiceConstants.CREATE_SESSION_PATH_PATTERN.matcher(line);
481 if (nameMatcher.matches()) {
482 name = String.valueOf(nameMatcher.group(1).trim());
483 } else if (pathMatcher.matches()) {
484 path = String.valueOf(pathMatcher.group(1).trim());
485 }
486 }
487
488 // Verify session name
489 if ((name == null) || (!"".equals(sessionInfo.getName()) && !name.equals(sessionInfo.getName()))) { //$NON-NLS-1$
490 // Unexpected name returned
491 throw new ExecutionException(Messages.TraceControl_CommandError + " " + command.toString() + "\n" + //$NON-NLS-1$ //$NON-NLS-2$
492 Messages.TraceControl_UnexpectedNameError + ": " + name); //$NON-NLS-1$
493 }
494
495 sessionInfo.setName(name);
496 // Verify session path
497 if (!sessionInfo.isSnapshotSession() &&
498 ((path == null) || ((sessionInfo.getSessionPath() != null) && (!path.contains(sessionInfo.getSessionPath()))))) {
499 // Unexpected path
500 throw new ExecutionException(Messages.TraceControl_CommandError + " " + command.toString() + "\n" + //$NON-NLS-1$ //$NON-NLS-2$
501 Messages.TraceControl_UnexpectedPathError + ": " + name); //$NON-NLS-1$
502 }
503
504 if (sessionInfo.isSnapshotSession()) {
505 // Make it a snapshot session - content of snapshot info need to
506 // set afterwards using getSession() or getSnapshotInfo()
507 sessionInfo.setSnapshotInfo(new SnapshotInfo("")); //$NON-NLS-1$
508 } else {
509 sessionInfo.setSessionPath(path);
510 }
511
512 return sessionInfo;
513
514 }
515
516 /**
517 * Basic generation of command for session creation
518 *
519 * @param sessionInfo
520 * the session to create
521 * @return the basic command for command creation
522 */
523 protected @NonNull ICommandInput prepareSessionCreationCommand(ISessionInfo sessionInfo) {
524 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_CREATE_SESSION);
525 if (!sessionInfo.getName().isEmpty()) {
526 command.add(sessionInfo.getName());
527 }
528
529 String newPath = sessionInfo.getSessionPath();
530 if (newPath != null && !"".equals(newPath)) { //$NON-NLS-1$
531 command.add(LTTngControlServiceConstants.OPTION_OUTPUT_PATH);
532 command.add(newPath);
533 }
534
535 if (sessionInfo.isSnapshotSession()) {
536 command.add(LTTngControlServiceConstants.OPTION_SNAPSHOT);
537 }
538 return command;
539 }
540
541 private @NonNull ISessionInfo createStreamedSession(ISessionInfo sessionInfo, IProgressMonitor monitor) throws ExecutionException {
542
543 ICommandInput command = prepareStreamedSessionCreationCommand(sessionInfo);
544
545 ICommandResult result = executeCommand(command, monitor);
546
547 // Verify output
548 List<String> output = result.getOutput();
549
550 // Get and session name and path
551 String name = null;
552 String path = null;
553
554 for (String line : output) {
555 Matcher nameMatcher = LTTngControlServiceConstants.CREATE_SESSION_NAME_PATTERN.matcher(line);
556 Matcher pathMatcher = LTTngControlServiceConstants.CREATE_SESSION_PATH_PATTERN.matcher(line);
557
558 if (nameMatcher.matches()) {
559 name = String.valueOf(nameMatcher.group(1).trim());
560 } else if (pathMatcher.matches() && (sessionInfo.getNetworkUrl() != null)) {
561 path = String.valueOf(pathMatcher.group(1).trim());
562 }
563 }
564
565 // Verify session name
566 if ((name == null) || (!"".equals(sessionInfo.getName()) && !name.equals(sessionInfo.getName()))) { //$NON-NLS-1$
567 // Unexpected name returned
568 throw new ExecutionException(Messages.TraceControl_CommandError + " " + command.toString() + "\n" + //$NON-NLS-1$ //$NON-NLS-2$
569 Messages.TraceControl_UnexpectedNameError + ": " + name); //$NON-NLS-1$
570 }
571
572 sessionInfo.setName(name);
573
574 sessionInfo.setStreamedTrace(true);
575
576 // Verify session path
577 if (sessionInfo.getNetworkUrl() != null) {
578 if (!sessionInfo.isSnapshotSession() && (path == null)) {
579 // Unexpected path
580 throw new ExecutionException(Messages.TraceControl_CommandError + " " + command.toString() + "\n" + //$NON-NLS-1$ //$NON-NLS-2$
581 Messages.TraceControl_UnexpectedPathError + ": " + name); //$NON-NLS-1$
582 }
583
584 if (sessionInfo.isSnapshotSession()) {
585 sessionInfo.setStreamedTrace(false);
586 } else {
587 sessionInfo.setSessionPath(path);
588 // Check file protocol
589 Matcher matcher = LTTngControlServiceConstants.TRACE_FILE_PROTOCOL_PATTERN.matcher(path);
590 if (matcher.matches()) {
591 sessionInfo.setStreamedTrace(false);
592 }
593 }
594 }
595
596 // When using controlUrl and dataUrl the full session path is not known
597 // yet and will be set later on when listing the session
598
599 return sessionInfo;
600 }
601
602 /**
603 * Basic generation of command for streamed session creation
604 *
605 * @param sessionInfo
606 * the session to create
607 * @return the basic command for command creation
608 */
609 protected @NonNull ICommandInput prepareStreamedSessionCreationCommand(ISessionInfo sessionInfo) {
610 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_CREATE_SESSION);
611 if (!sessionInfo.getName().isEmpty()) {
612 command.add(sessionInfo.getName());
613 }
614
615 if (sessionInfo.isSnapshotSession()) {
616 command.add(LTTngControlServiceConstants.OPTION_SNAPSHOT);
617 } else if (sessionInfo.isLive()) {
618 command.add(LTTngControlServiceConstants.OPTION_LIVE);
619 if (sessionInfo.getLiveDelay() != LTTngControlServiceConstants.UNUSED_VALUE) {
620 command.add(String.valueOf(sessionInfo.getLiveDelay()));
621 }
622 }
623
624 if (sessionInfo.getNetworkUrl() != null) {
625 command.add(LTTngControlServiceConstants.OPTION_NETWORK_URL);
626 command.add(sessionInfo.getNetworkUrl());
627 } else {
628 command.add(LTTngControlServiceConstants.OPTION_CONTROL_URL);
629 command.add(sessionInfo.getControlUrl());
630
631 command.add(LTTngControlServiceConstants.OPTION_DATA_URL);
632 command.add(sessionInfo.getDataUrl());
633 }
634 return command;
635 }
636
637 @Override
638 public void destroySession(String sessionName, IProgressMonitor monitor) throws ExecutionException {
639
640 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_DESTROY_SESSION, sessionName);
641
642 ICommandResult result = executeCommand(command, monitor, false);
643 boolean isError = isError(result);
644 if (isError && !ignoredPattern(result.getErrorOutput(), LTTngControlServiceConstants.SESSION_NOT_FOUND_ERROR_PATTERN)) {
645 throw new ExecutionException(Messages.TraceControl_CommandError + " " + command.toString() + "\n" + result.toString()); //$NON-NLS-1$ //$NON-NLS-2$
646 }
647
648 // Session <sessionName> destroyed
649 }
650
651 @Override
652 public void startSession(String sessionName, IProgressMonitor monitor) throws ExecutionException {
653
654 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_START_SESSION, sessionName);
655
656 executeCommand(command, monitor);
657
658 // Session <sessionName> started
659 }
660
661 @Override
662 public void stopSession(String sessionName, IProgressMonitor monitor) throws ExecutionException {
663 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_STOP_SESSION, sessionName);
664
665 executeCommand(command, monitor);
666
667 // Session <sessionName> stopped
668
669 }
670
671 @Override
672 public void enableChannels(String sessionName, List<String> channelNames, boolean isKernel, IChannelInfo info, IProgressMonitor monitor) throws ExecutionException {
673
674 // no channels to enable
675 if (channelNames.isEmpty()) {
676 return;
677 }
678
679 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_ENABLE_CHANNEL);
680
681 command.add(toCsv(channelNames));
682
683 if (isKernel) {
684 command.add(LTTngControlServiceConstants.OPTION_KERNEL);
685 } else {
686 command.add(LTTngControlServiceConstants.OPTION_UST);
687 }
688
689 command.add(LTTngControlServiceConstants.OPTION_SESSION);
690 command.add(sessionName);
691
692 if (info != null) {
693 // --discard Discard event when buffers are full (default)
694
695 // --overwrite Flight recorder mode
696 if (info.isOverwriteMode()) {
697 command.add(LTTngControlServiceConstants.OPTION_OVERWRITE);
698 }
699 // --subbuf-size SIZE Subbuffer size in bytes
700 // (default: 4096, kernel default: 262144)
701 if (info.getSubBufferSize() != LTTngControlServiceConstants.UNUSED_VALUE) {
702 command.add(LTTngControlServiceConstants.OPTION_SUB_BUFFER_SIZE);
703 command.add(String.valueOf(info.getSubBufferSize()));
704 }
705
706 // --num-subbuf NUM Number of subbufers
707 if (info.getNumberOfSubBuffers() != LTTngControlServiceConstants.UNUSED_VALUE) {
708 command.add(LTTngControlServiceConstants.OPTION_NUM_SUB_BUFFERS);
709 command.add(String.valueOf(info.getNumberOfSubBuffers()));
710 }
711
712 // --switch-timer USEC Switch timer interval in usec
713 if (info.getSwitchTimer() != LTTngControlServiceConstants.UNUSED_VALUE) {
714 command.add(LTTngControlServiceConstants.OPTION_SWITCH_TIMER);
715 command.add(String.valueOf(info.getSwitchTimer()));
716 }
717
718 // --read-timer USEC Read timer interval in usec
719 if (info.getReadTimer() != LTTngControlServiceConstants.UNUSED_VALUE) {
720 command.add(LTTngControlServiceConstants.OPTION_READ_TIMER);
721 command.add(String.valueOf(info.getReadTimer()));
722 }
723
724 if (isVersionSupported("2.2.0")) { //$NON-NLS-1$
725 // --buffers-uid Every application sharing the same UID use the
726 // same buffers --buffers-pid Buffers are allocated per PID
727 if (!isKernel) {
728 if (info.getBufferType() == BufferType.BUFFER_PER_PID) {
729 command.add(LTTngControlServiceConstants.OPTION_PER_PID_BUFFERS);
730
731 } else if (info.getBufferType() == BufferType.BUFFER_PER_UID) {
732 command.add(LTTngControlServiceConstants.OPTION_PER_UID_BUFFERS);
733 }
734 }
735
736 // -C SIZE Maximum size of trace files in bytes
737 if (info.getMaxSizeTraceFiles() != LTTngControlServiceConstants.UNUSED_VALUE) {
738 command.add(LTTngControlServiceConstants.OPTION_MAX_SIZE_TRACE_FILES);
739 command.add(String.valueOf(info.getMaxSizeTraceFiles()));
740 }
741
742 // -W NUM Maximum number of trace files
743 if (info.getMaxNumberTraceFiles() != LTTngControlServiceConstants.UNUSED_VALUE) {
744 command.add(LTTngControlServiceConstants.OPTION_MAX_TRACE_FILES);
745 command.add(String.valueOf(info.getMaxNumberTraceFiles()));
746 }
747 }
748 }
749
750 executeCommand(command, monitor);
751
752 }
753
754 @Override
755 public void disableChannels(String sessionName, List<String> channelNames, boolean isKernel, IProgressMonitor monitor) throws ExecutionException {
756
757 // no channels to enable
758 if (channelNames.isEmpty()) {
759 return;
760 }
761
762 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_DISABLE_CHANNEL);
763
764 command.add(toCsv(channelNames));
765
766 if (isKernel) {
767 command.add(LTTngControlServiceConstants.OPTION_KERNEL);
768 } else {
769 command.add(LTTngControlServiceConstants.OPTION_UST);
770 }
771
772 command.add(LTTngControlServiceConstants.OPTION_SESSION);
773 command.add(sessionName);
774
775 executeCommand(command, monitor);
776 }
777
778 @Override
779 public void enableEvents(String sessionName, String channelName, List<String> eventNames, boolean isKernel, String filterExpression, IProgressMonitor monitor) throws ExecutionException {
780
781 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_ENABLE_EVENT);
782
783 if (eventNames == null || eventNames.isEmpty()) {
784 command.add(LTTngControlServiceConstants.OPTION_ALL);
785 } else {
786 command.add(toCsv(eventNames));
787 }
788
789 if (isKernel) {
790 command.add(LTTngControlServiceConstants.OPTION_KERNEL);
791 } else {
792 command.add(LTTngControlServiceConstants.OPTION_UST);
793 }
794
795 command.add(LTTngControlServiceConstants.OPTION_SESSION);
796 command.add(sessionName);
797
798 if (channelName != null) {
799 command.add(LTTngControlServiceConstants.OPTION_CHANNEL);
800 command.add(channelName);
801 }
802
803 command.add(LTTngControlServiceConstants.OPTION_TRACEPOINT);
804
805 if (filterExpression != null) {
806 command.add(LTTngControlServiceConstants.OPTION_FILTER);
807 command.add(filterExpression);
808 }
809
810 executeCommand(command, monitor);
811
812 }
813
814 @Override
815 public void enableSyscalls(String sessionName, String channelName, IProgressMonitor monitor) throws ExecutionException {
816
817 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_ENABLE_EVENT);
818
819 command.add(LTTngControlServiceConstants.OPTION_ALL);
820 command.add(LTTngControlServiceConstants.OPTION_KERNEL);
821
822
823 command.add(LTTngControlServiceConstants.OPTION_SESSION);
824 command.add(sessionName);
825
826 if (channelName != null) {
827 command.add(LTTngControlServiceConstants.OPTION_CHANNEL);
828 command.add(channelName);
829 }
830
831 command.add(LTTngControlServiceConstants.OPTION_SYSCALL);
832
833 executeCommand(command, monitor);
834 }
835
836 @Override
837 public void enableProbe(String sessionName, String channelName, String eventName, boolean isFunction, String probe, IProgressMonitor monitor) throws ExecutionException {
838 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_ENABLE_EVENT);
839
840 command.add(eventName);
841 command.add(LTTngControlServiceConstants.OPTION_KERNEL);
842
843 command.add(LTTngControlServiceConstants.OPTION_SESSION);
844 command.add(sessionName);
845
846 if (channelName != null) {
847 command.add(LTTngControlServiceConstants.OPTION_CHANNEL);
848 command.add(channelName);
849 }
850 if (isFunction) {
851 command.add(LTTngControlServiceConstants.OPTION_FUNCTION_PROBE);
852 } else {
853 command.add(LTTngControlServiceConstants.OPTION_PROBE);
854 }
855
856 command.add(probe);
857
858 executeCommand(command, monitor);
859 }
860
861 @Override
862 public void enableLogLevel(String sessionName, String channelName, String eventName, LogLevelType logLevelType, TraceLogLevel level, String filterExpression, IProgressMonitor monitor) throws ExecutionException {
863 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_ENABLE_EVENT);
864
865 command.add(eventName);
866 command.add(LTTngControlServiceConstants.OPTION_UST);
867
868 command.add(LTTngControlServiceConstants.OPTION_SESSION);
869 command.add(sessionName);
870
871 if (channelName != null) {
872 command.add(LTTngControlServiceConstants.OPTION_CHANNEL);
873 command.add(channelName);
874 }
875
876 if (logLevelType == LogLevelType.LOGLEVEL) {
877 command.add(LTTngControlServiceConstants.OPTION_LOGLEVEL);
878 } else if (logLevelType == LogLevelType.LOGLEVEL_ONLY) {
879 command.add(LTTngControlServiceConstants.OPTION_LOGLEVEL_ONLY);
880
881 } else {
882 return;
883 }
884 command.add(level.getInName());
885
886 executeCommand(command, monitor);
887 }
888
889 @Override
890 public void disableEvent(String sessionName, String channelName, List<String> eventNames, boolean isKernel, IProgressMonitor monitor) throws ExecutionException {
891 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_DISABLE_EVENT);
892
893 if (eventNames == null) {
894 command.add(LTTngControlServiceConstants.OPTION_ALL);
895 } else {
896 // no events to disable
897 if (eventNames.isEmpty()) {
898 return;
899 }
900
901 StringBuffer eventNameParameter = new StringBuffer();
902 for (Iterator<String> iterator = eventNames.iterator(); iterator.hasNext();) {
903 String event = iterator.next();
904 eventNameParameter.append(event);
905 if (iterator.hasNext()) {
906 eventNameParameter.append(',');
907 }
908 }
909 command.add(eventNameParameter.toString());
910 }
911
912 if (isKernel) {
913 command.add(LTTngControlServiceConstants.OPTION_KERNEL);
914 } else {
915 command.add(LTTngControlServiceConstants.OPTION_UST);
916 }
917
918 command.add(LTTngControlServiceConstants.OPTION_SESSION);
919 command.add(sessionName);
920
921 if (channelName != null) {
922 command.add(LTTngControlServiceConstants.OPTION_CHANNEL);
923 command.add(channelName);
924 }
925
926 executeCommand(command, monitor);
927 }
928
929 @Override
930 public List<String> getContextList(IProgressMonitor monitor) throws ExecutionException {
931
932 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_ADD_CONTEXT, LTTngControlServiceConstants.OPTION_HELP);
933
934 ICommandResult result = executeCommand(command, monitor);
935
936 List<String> output = result.getOutput();
937
938 List<String> contexts = new ArrayList<>(0);
939
940 int index = 0;
941 boolean inList = false;
942 while (index < output.size()) {
943 String line = output.get(index);
944
945 Matcher startMatcher = LTTngControlServiceConstants.ADD_CONTEXT_HELP_CONTEXTS_INTRO.matcher(line);
946 Matcher endMatcher = LTTngControlServiceConstants.ADD_CONTEXT_HELP_CONTEXTS_END_LINE.matcher(line);
947
948 if (startMatcher.matches()) {
949 inList = true;
950 } else if (endMatcher.matches()) {
951 break;
952 } else if (inList == true) {
953 String[] tmp = line.split(","); //$NON-NLS-1$
954 for (int i = 0; i < tmp.length; i++) {
955 contexts.add(tmp[i].trim());
956 }
957 }
958 index++;
959 }
960 return contexts;
961 }
962
963 @Override
964 public void addContexts(String sessionName, String channelName, String eventName, boolean isKernel, List<String> contextNames, IProgressMonitor monitor) throws ExecutionException {
965 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_ADD_CONTEXT);
966
967 command.add(LTTngControlServiceConstants.OPTION_SESSION);
968 command.add(sessionName);
969
970 if (channelName != null) {
971 command.add(LTTngControlServiceConstants.OPTION_CHANNEL);
972 command.add(channelName);
973 }
974
975 if (eventName != null) {
976 command.add(LTTngControlServiceConstants.OPTION_EVENT);
977 command.add(eventName);
978 }
979
980 if (isKernel) {
981 command.add(LTTngControlServiceConstants.OPTION_KERNEL);
982 } else {
983 command.add(LTTngControlServiceConstants.OPTION_UST);
984 }
985
986 for (Iterator<String> iterator = contextNames.iterator(); iterator.hasNext();) {
987 String context = iterator.next();
988 command.add(LTTngControlServiceConstants.OPTION_CONTEXT_TYPE);
989 command.add(context);
990 }
991
992 executeCommand(command, monitor);
993
994 }
995
996 @Override
997 public void calibrate(boolean isKernel, IProgressMonitor monitor) throws ExecutionException {
998 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_CALIBRATE);
999
1000 if (isKernel) {
1001 command.add(LTTngControlServiceConstants.OPTION_KERNEL);
1002 } else {
1003 command.add(LTTngControlServiceConstants.OPTION_UST);
1004 }
1005
1006 command.add(LTTngControlServiceConstants.OPTION_FUNCTION_PROBE);
1007
1008 executeCommand(command, monitor);
1009 }
1010
1011 @Override
1012 public void recordSnapshot(String sessionName, IProgressMonitor monitor)
1013 throws ExecutionException {
1014 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_SNAPSHOT, LTTngControlServiceConstants.COMMAND_RECORD_SNAPSHOT);
1015
1016 String newSessionName = sessionName;
1017 command.add(LTTngControlServiceConstants.OPTION_SESSION);
1018 command.add(newSessionName);
1019
1020 executeCommand(command, monitor);
1021 }
1022
1023 @Override
1024 public void loadSession(String inputPath, boolean isForce, IProgressMonitor monitor)
1025 throws ExecutionException {
1026 ICommandInput command = createCommand(LTTngControlServiceConstants.COMMAND_LOAD_SESSION);
1027
1028 if (inputPath != null) {
1029 command.add(LTTngControlServiceConstants.OPTION_INPUT_PATH);
1030 command.add(inputPath);
1031 }
1032
1033 if (isForce) {
1034 command.add(LTTngControlServiceConstants.OPTION_FORCE);
1035 }
1036 executeCommand(command, monitor);
1037 }
1038
1039 @Override
1040 public void runCommands(IProgressMonitor monitor, List<String> commandLines) throws ExecutionException {
1041 for (String commandLine : commandLines) {
1042 if (monitor.isCanceled()) {
1043 return;
1044 }
1045
1046 if (commandLine.isEmpty() || commandLine.startsWith("#")) { //$NON-NLS-1$
1047 continue;
1048 }
1049 String[] args = commandLine.split("\\s+"); //$NON-NLS-1$
1050 ICommandInput command = fCommandShell.createCommand();
1051 command.addAll(checkNotNull(Arrays.asList(args)));
1052 ICommandResult result = executeCommand(command, monitor);
1053
1054 if (isError(result)) {
1055 throw new ExecutionException(Messages.TraceControl_CommandError + " " + command.toString() + "\n" + result.toString()); //$NON-NLS-1$ //$NON-NLS-2$
1056 }
1057 }
1058 }
1059
1060 // ------------------------------------------------------------------------
1061 // Helper methods
1062 // ------------------------------------------------------------------------
1063
1064 /**
1065 * Checks if command result is an error result.
1066 *
1067 * @param result
1068 * - the command result to check
1069 * @return true if error else false
1070 */
1071 protected boolean isError(ICommandResult result) {
1072 // Check return code and length of returned strings
1073
1074 if ((result.getResult()) != 0) {
1075 return true;
1076 }
1077
1078 // Look for error pattern
1079 for (String line : result.getErrorOutput()) {
1080 Matcher matcher = LTTngControlServiceConstants.ERROR_PATTERN.matcher(line);
1081 if (matcher.matches()) {
1082 return true;
1083 }
1084 }
1085
1086 return false;
1087 }
1088
1089 /**
1090 * Creates a comma separated string from list of names
1091 * @param names
1092 * List of name to convert
1093 * @return comma separated string
1094 */
1095 protected String toCsv(List<String> names) {
1096 StringBuilder csvString = new StringBuilder();
1097 for (Iterator<String> iterator = names.iterator(); iterator.hasNext();) {
1098 String name = iterator.next();
1099 csvString.append(name);
1100 if (iterator.hasNext()) {
1101 csvString.append(',');
1102 }
1103 }
1104 return csvString.toString();
1105 }
1106
1107 /**
1108 * Parses the domain information.
1109 *
1110 * @param output
1111 * a command output list
1112 * @param currentIndex
1113 * current index in command output list
1114 * @param channels
1115 * list for returning channel information
1116 * @param domainInfo
1117 * The domain information
1118 * @return the new current index in command output list
1119 */
1120 protected int parseDomain(List<String> output, int currentIndex, List<IChannelInfo> channels, IDomainInfo domainInfo) {
1121 int index = currentIndex;
1122
1123 // if kernel set the buffer type to shared
1124 if (domainInfo.isKernel()) {
1125 domainInfo.setBufferType(BufferType.BUFFER_SHARED);
1126 }
1127
1128 // Channels:
1129 // -------------
1130 // - channnel1: [enabled]
1131 //
1132 // Attributes:
1133 // overwrite mode: 0
1134 // subbufers size: 262144
1135 // number of subbufers: 4
1136 // switch timer interval: 0
1137 // read timer interval: 200
1138 // output: splice()
1139
1140 while (index < output.size()) {
1141 String line = output.get(index);
1142
1143 if (isVersionSupported("2.2.0")) { //$NON-NLS-1$
1144 Matcher bufferTypeMatcher = LTTngControlServiceConstants.BUFFER_TYPE_PATTERN.matcher(line);
1145 if (bufferTypeMatcher.matches()) {
1146 String bufferTypeString = getAttributeValue(line);
1147 if (BufferType.BUFFER_PER_PID.getInName().equals(bufferTypeString)) {
1148 domainInfo.setBufferType(BufferType.BUFFER_PER_PID);
1149 } else if (BufferType.BUFFER_PER_UID.getInName().equals(bufferTypeString)) {
1150 domainInfo.setBufferType(BufferType.BUFFER_PER_UID);
1151 } else {
1152 domainInfo.setBufferType(BufferType.BUFFER_TYPE_UNKNOWN);
1153 }
1154 }
1155 } else {
1156 domainInfo.setBufferType(BufferType.BUFFER_TYPE_UNKNOWN);
1157 }
1158 Matcher outerMatcher = LTTngControlServiceConstants.CHANNELS_SECTION_PATTERN.matcher(line);
1159 Matcher noKernelChannelMatcher = LTTngControlServiceConstants.DOMAIN_NO_KERNEL_CHANNEL_PATTERN.matcher(line);
1160 Matcher noUstChannelMatcher = LTTngControlServiceConstants.DOMAIN_NO_UST_CHANNEL_PATTERN.matcher(line);
1161 if (outerMatcher.matches()) {
1162 IChannelInfo channelInfo = null;
1163 while (index < output.size()) {
1164 String subLine = output.get(index);
1165
1166 Matcher innerMatcher = LTTngControlServiceConstants.CHANNEL_PATTERN.matcher(subLine);
1167 if (innerMatcher.matches()) {
1168 channelInfo = new ChannelInfo(""); //$NON-NLS-1$
1169 // get channel name
1170 channelInfo.setName(innerMatcher.group(1));
1171
1172 // get channel enablement
1173 channelInfo.setState(innerMatcher.group(2));
1174
1175 // set BufferType
1176 channelInfo.setBufferType(domainInfo.getBufferType());
1177
1178 // add channel
1179 channels.add(channelInfo);
1180
1181 } else if (LTTngControlServiceConstants.OVERWRITE_MODE_ATTRIBUTE.matcher(subLine).matches()) {
1182 String value = getAttributeValue(subLine);
1183 if (channelInfo != null) {
1184 channelInfo.setOverwriteMode(!LTTngControlServiceConstants.OVERWRITE_MODE_ATTRIBUTE_FALSE.equals(value));
1185 }
1186 } else if (LTTngControlServiceConstants.SUBBUFFER_SIZE_ATTRIBUTE.matcher(subLine).matches()) {
1187 if (channelInfo != null) {
1188 channelInfo.setSubBufferSize(Long.valueOf(getAttributeValue(subLine)));
1189 }
1190
1191 } else if (LTTngControlServiceConstants.NUM_SUBBUFFERS_ATTRIBUTE.matcher(subLine).matches()) {
1192 if (channelInfo != null) {
1193 channelInfo.setNumberOfSubBuffers(Integer.valueOf(getAttributeValue(subLine)));
1194 }
1195
1196 } else if (LTTngControlServiceConstants.SWITCH_TIMER_ATTRIBUTE.matcher(subLine).matches()) {
1197 if (channelInfo != null) {
1198 channelInfo.setSwitchTimer(Long.valueOf(getAttributeValue(subLine)));
1199 }
1200
1201 } else if (LTTngControlServiceConstants.READ_TIMER_ATTRIBUTE.matcher(subLine).matches()) {
1202 if (channelInfo != null) {
1203 channelInfo.setReadTimer(Long.valueOf(getAttributeValue(subLine)));
1204 }
1205
1206 } else if (LTTngControlServiceConstants.OUTPUT_ATTRIBUTE.matcher(subLine).matches()) {
1207 if (channelInfo != null) {
1208 channelInfo.setOutputType(getAttributeValue(subLine));
1209 }
1210
1211 } else if (LTTngControlServiceConstants.TRACE_FILE_COUNT_ATTRIBUTE.matcher(subLine).matches()) {
1212 if (channelInfo != null) {
1213 channelInfo.setMaxNumberTraceFiles(Integer.valueOf(getAttributeValue(subLine)));
1214 }
1215
1216 } else if (LTTngControlServiceConstants.TRACE_FILE_SIZE_ATTRIBUTE.matcher(subLine).matches()) {
1217 if (channelInfo != null) {
1218 channelInfo.setMaxSizeTraceFiles(Long.valueOf(getAttributeValue(subLine)));
1219 }
1220 } else if (LTTngControlServiceConstants.EVENT_SECTION_PATTERN.matcher(subLine).matches()) {
1221 List<IEventInfo> events = new ArrayList<>();
1222 index = parseEvents(output, index, events);
1223 if (channelInfo != null) {
1224 channelInfo.setEvents(events);
1225 }
1226 // we want to stay at the current index to be able to
1227 // exit the domain
1228 continue;
1229 } else if (LTTngControlServiceConstants.DOMAIN_KERNEL_PATTERN.matcher(subLine).matches()) {
1230 return index;
1231
1232 } else if (LTTngControlServiceConstants.DOMAIN_UST_GLOBAL_PATTERN.matcher(subLine).matches()) {
1233 return index;
1234 }
1235 index++;
1236 }
1237 } else if (noKernelChannelMatcher.matches() || noUstChannelMatcher.matches()) {
1238 // domain indicates that no channels were found -> return
1239 index++;
1240 return index;
1241 }
1242 index++;
1243 }
1244 return index;
1245 }
1246
1247 /**
1248 * Parses the event information within a domain.
1249 *
1250 * @param output
1251 * a command output list
1252 * @param currentIndex
1253 * current index in command output list
1254 * @param events
1255 * list for returning event information
1256 * @return the new current index in command output list
1257 */
1258 protected int parseEvents(List<String> output, int currentIndex, List<IEventInfo> events) {
1259 int index = currentIndex;
1260
1261 while (index < output.size()) {
1262 String line = output.get(index);
1263 if (LTTngControlServiceConstants.CHANNEL_PATTERN.matcher(line).matches()) {
1264 // end of channel
1265 return index;
1266 } else if (LTTngControlServiceConstants.DOMAIN_KERNEL_PATTERN.matcher(line).matches()) {
1267 // end of domain
1268 return index;
1269 } else if (LTTngControlServiceConstants.DOMAIN_UST_GLOBAL_PATTERN.matcher(line).matches()) {
1270 // end of domain
1271 return index;
1272 }
1273
1274 Matcher matcher = LTTngControlServiceConstants.EVENT_PATTERN.matcher(line);
1275 Matcher matcher2 = LTTngControlServiceConstants.WILDCARD_EVENT_PATTERN.matcher(line);
1276
1277 if (matcher.matches()) {
1278 IEventInfo eventInfo = new EventInfo(matcher.group(1).trim());
1279 eventInfo.setLogLevelType(matcher.group(2).trim());
1280 eventInfo.setLogLevel(matcher.group(3).trim());
1281 eventInfo.setEventType(matcher.group(4).trim());
1282 eventInfo.setState(matcher.group(5));
1283 String filter = matcher.group(6);
1284 if (filter != null) {
1285 // remove '[' and ']'
1286 filter = filter.substring(1, filter.length() - 1);
1287 eventInfo.setFilterExpression(filter);
1288 }
1289 events.add(eventInfo);
1290 index++;
1291 } else if (matcher2.matches()) {
1292 IEventInfo eventInfo = new EventInfo(matcher2.group(1).trim());
1293 eventInfo.setLogLevel(TraceLogLevel.LEVEL_UNKNOWN);
1294 eventInfo.setEventType(matcher2.group(2).trim());
1295 eventInfo.setState(matcher2.group(3));
1296 String filter = matcher2.group(4);
1297 if (filter != null) {
1298 // remove '[' and ']'
1299 filter = filter.substring(1, filter.length() - 1);
1300 eventInfo.setFilterExpression(filter);
1301 }
1302
1303 if ((eventInfo.getEventType() == TraceEventType.PROBE) ||
1304 (eventInfo.getEventType() == TraceEventType.FUNCTION)) {
1305 IProbeEventInfo probeEvent = new ProbeEventInfo(eventInfo.getName());
1306 probeEvent.setLogLevel(eventInfo.getLogLevel());
1307 probeEvent.setEventType(eventInfo.getEventType());
1308 probeEvent.setState(eventInfo.getState());
1309
1310 // Overwrite eventinfo
1311 eventInfo = probeEvent;
1312
1313 // myevent2 (type: probe) [enabled]
1314 // addr: 0xc0101340
1315 // myevent0 (type: function) [enabled]
1316 // offset: 0x0
1317 // symbol: init_post
1318 index++;
1319 while (index < output.size()) {
1320 String probeLine = output.get(index);
1321 // parse probe
1322 Matcher addrMatcher = LTTngControlServiceConstants.PROBE_ADDRESS_PATTERN.matcher(probeLine);
1323 Matcher offsetMatcher = LTTngControlServiceConstants.PROBE_OFFSET_PATTERN.matcher(probeLine);
1324 Matcher symbolMatcher = LTTngControlServiceConstants.PROBE_SYMBOL_PATTERN.matcher(probeLine);
1325 if (addrMatcher.matches()) {
1326 String addr = addrMatcher.group(2).trim();
1327 probeEvent.setAddress(addr);
1328 } else if (offsetMatcher.matches()) {
1329 String offset = offsetMatcher.group(2).trim();
1330 probeEvent.setOffset(offset);
1331 } else if (symbolMatcher.matches()) {
1332 String symbol = symbolMatcher.group(2).trim();
1333 probeEvent.setSymbol(symbol);
1334 } else if ((LTTngControlServiceConstants.EVENT_PATTERN.matcher(probeLine).matches()) || (LTTngControlServiceConstants.WILDCARD_EVENT_PATTERN.matcher(probeLine).matches())) {
1335 break;
1336 } else if (LTTngControlServiceConstants.CHANNEL_PATTERN.matcher(probeLine).matches()) {
1337 break;
1338 } else if (LTTngControlServiceConstants.DOMAIN_KERNEL_PATTERN.matcher(probeLine).matches()) {
1339 // end of domain
1340 break;
1341 } else if (LTTngControlServiceConstants.DOMAIN_UST_GLOBAL_PATTERN.matcher(probeLine).matches()) {
1342 // end of domain
1343 break;
1344 }
1345 index++;
1346 }
1347 events.add(eventInfo);
1348 } else {
1349 events.add(eventInfo);
1350 index++;
1351 continue;
1352 }
1353 } else {
1354 index++;
1355 }
1356 }
1357
1358 return index;
1359 }
1360
1361 /**
1362 * Parses a line with attributes: <attribute Name>: <attribute value>
1363 *
1364 * @param line
1365 * - attribute line to parse
1366 * @return the attribute value as string
1367 */
1368 protected String getAttributeValue(String line) {
1369 String[] temp = line.split("\\: "); //$NON-NLS-1$
1370 return temp[1];
1371 }
1372
1373 /**
1374 * Parses the event information within a provider.
1375 *
1376 * @param output
1377 * a command output list
1378 * @param currentIndex
1379 * current index in command output list
1380 * @param events
1381 * list for returning event information
1382 * @return the new current index in command output list
1383 */
1384 protected int getProviderEventInfo(List<String> output, int currentIndex, List<IBaseEventInfo> events) {
1385 int index = currentIndex;
1386 IBaseEventInfo eventInfo = null;
1387 while (index < output.size()) {
1388 String line = output.get(index);
1389 Matcher matcher = LTTngControlServiceConstants.PROVIDER_EVENT_PATTERN.matcher(line);
1390 if (matcher.matches()) {
1391 // sched_kthread_stop (loglevel: TRACE_EMERG0) (type:
1392 // tracepoint)
1393 eventInfo = new BaseEventInfo(matcher.group(1).trim());
1394 eventInfo.setLogLevel(matcher.group(2).trim());
1395 eventInfo.setEventType(matcher.group(3).trim());
1396 events.add(eventInfo);
1397 index++;
1398 } else if (LTTngControlServiceConstants.EVENT_FIELD_PATTERN.matcher(line).matches()) {
1399 if (eventInfo != null) {
1400 List<IFieldInfo> fields = new ArrayList<>();
1401 index = getFieldInfo(output, index, fields);
1402 eventInfo.setFields(fields);
1403 } else {
1404 index++;
1405 }
1406 }
1407 else if (LTTngControlServiceConstants.UST_PROVIDER_PATTERN.matcher(line).matches()) {
1408 return index;
1409 } else {
1410 index++;
1411 }
1412 }
1413 return index;
1414 }
1415
1416 /**
1417 * Parse a field's information.
1418 *
1419 * @param output
1420 * A command output list
1421 * @param currentIndex
1422 * The current index in the command output list
1423 * @param fields
1424 * List for returning the field information
1425 * @return The new current index in the command output list
1426 */
1427 protected int getFieldInfo(List<String> output, int currentIndex, List<IFieldInfo> fields) {
1428 int index = currentIndex;
1429 IFieldInfo fieldInfo = null;
1430 while (index < output.size()) {
1431 String line = output.get(index);
1432 Matcher matcher = LTTngControlServiceConstants.EVENT_FIELD_PATTERN.matcher(line);
1433 if (matcher.matches()) {
1434 // field: content (string)
1435 fieldInfo = new FieldInfo(matcher.group(2).trim());
1436 fieldInfo.setFieldType(matcher.group(3).trim());
1437 fields.add(fieldInfo);
1438 } else if (LTTngControlServiceConstants.PROVIDER_EVENT_PATTERN.matcher(line).matches()) {
1439 return index;
1440 } else if (LTTngControlServiceConstants.UST_PROVIDER_PATTERN.matcher(line).matches()) {
1441 return index;
1442 }
1443 index++;
1444 }
1445 return index;
1446 }
1447
1448 /**
1449 * Creates a command input instance
1450 *
1451 * @param segments
1452 * array of string that makes up a command line
1453 * @return {@link ICommandInput} instance
1454 */
1455 protected @NonNull ICommandInput createCommand(String... segments) {
1456 ICommandInput command = fCommandShell.createCommand();
1457 command.add(LTTngControlServiceConstants.CONTROL_COMMAND);
1458 List<String> groupOption = getTracingGroupOption();
1459 if (!groupOption.isEmpty()) {
1460 command.addAll(groupOption);
1461 }
1462 String verboseOption = getVerboseOption();
1463 if (!verboseOption.isEmpty()) {
1464 command.add(verboseOption);
1465 }
1466 for (String string : segments) {
1467 command.add(checkNotNull(string));
1468 }
1469 return command;
1470 }
1471
1472 /**
1473 * @return the tracing group option if configured in the preferences
1474 */
1475 protected @NonNull List<String> getTracingGroupOption() {
1476 List<String> groupOption = new ArrayList<>();
1477 if (!ControlPreferences.getInstance().isDefaultTracingGroup() && !ControlPreferences.getInstance().getTracingGroup().equals("")) { //$NON-NLS-1$
1478 groupOption.add(LTTngControlServiceConstants.OPTION_TRACING_GROUP);
1479 groupOption.add(ControlPreferences.getInstance().getTracingGroup());
1480 }
1481 return groupOption;
1482 }
1483
1484 /**
1485 * @return the verbose option as configured in the preferences
1486 */
1487 protected String getVerboseOption() {
1488 if (ControlPreferences.getInstance().isLoggingEnabled()) {
1489 String level = ControlPreferences.getInstance().getVerboseLevel();
1490 if (ControlPreferences.TRACE_CONTROL_VERBOSE_LEVEL_VERBOSE.equals(level)) {
1491 return LTTngControlServiceConstants.OPTION_VERBOSE;
1492 }
1493 if (ControlPreferences.TRACE_CONTROL_VERBOSE_LEVEL_V_VERBOSE.equals(level)) {
1494 return LTTngControlServiceConstants.OPTION_VERY_VERBOSE;
1495 }
1496 if (ControlPreferences.TRACE_CONTROL_VERBOSE_LEVEL_V_V_VERBOSE.equals(level)) {
1497 return LTTngControlServiceConstants.OPTION_VERY_VERY_VERBOSE;
1498 }
1499 }
1500 return ""; //$NON-NLS-1$
1501 }
1502
1503 /**
1504 * Method that logs the command and command result if logging is enabled as
1505 * well as forwards the command execution to the shell.
1506 *
1507 * @param command
1508 * - the command to execute
1509 * @param monitor
1510 * - a progress monitor
1511 * @return the command result
1512 * @throws ExecutionException
1513 * If the command fails
1514 */
1515 protected ICommandResult executeCommand(@NonNull ICommandInput command,
1516 @Nullable IProgressMonitor monitor) throws ExecutionException {
1517 return executeCommand(command, monitor, true);
1518 }
1519
1520 /**
1521 * Method that logs the command and command result if logging is enabled as
1522 * well as forwards the command execution to the shell.
1523 *
1524 * @param command
1525 * - the command to execute
1526 * @param monitor
1527 * - a progress monitor
1528 * @param checkForError
1529 * - true to verify command result, else false
1530 * @return the command result
1531 * @throws ExecutionException
1532 * in case of error result
1533 */
1534 protected ICommandResult executeCommand(@NonNull ICommandInput command,
1535 @Nullable IProgressMonitor monitor, boolean checkForError)
1536 throws ExecutionException {
1537 if (ControlPreferences.getInstance().isLoggingEnabled()) {
1538 ControlCommandLogger.log(command.toString());
1539 }
1540
1541 ICommandResult result = fCommandShell.executeCommand(command, monitor);
1542
1543 if (ControlPreferences.getInstance().isLoggingEnabled()) {
1544 ControlCommandLogger.log(result.toString());
1545 }
1546
1547 if (checkForError && isError(result)) {
1548 throw new ExecutionException(Messages.TraceControl_CommandError
1549 + " " + command.toString() + "\n" + result.toString()); //$NON-NLS-1$ //$NON-NLS-2$
1550 }
1551
1552 return result;
1553 }
1554
1555
1556 }
This page took 0.070674 seconds and 5 git commands to generate.