Improve observability of checkForLttngTools for debugging
[lttng-ust-java-tests.git] / lttng-ust-java-tests-common / src / main / java / org / lttng / ust / agent / utils / LttngUtils.java
CommitLineData
2b408e85
AM
1/*
2 * Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
b01fe762 19package org.lttng.ust.agent.utils;
8576633f 20
8576633f
AM
21import java.util.Arrays;
22import java.util.List;
23
45d1768c
AM
24import org.lttng.tools.ILttngSession;
25import org.lttng.tools.ILttngSession.Domain;
b01fe762 26import org.lttng.tools.utils.ShellUtils;
8576633f
AM
27
28/**
45d1768c
AM
29 * Utility methods to test the presence of certain LTTng tools or libraries in
30 * the runtime environment.
8576633f 31 */
45d1768c 32public final class LttngUtils {
8576633f 33
45d1768c 34 private LttngUtils() {}
8576633f 35
8576633f
AM
36 /**
37 * Check that lttng-tools and babeltrace are installed on the system and
38 * working.
39 *
40 * @param domain
41 * The tracing domain to test for (we will try to setup a session
42 * with this domain)
43 * @return True if the environment should allow tracing fine, false if there
44 * was an error
45 */
46 public static boolean checkForLttngTools(Domain domain) {
7dcd53ab 47 System.out.println("Sanity check: start");
ff620bef 48 try (ILttngSession session = ILttngSession.createSession(null, domain)) {
8576633f
AM
49 boolean ret1 = session.enableAllEvents();
50 boolean ret2 = session.start();
51 boolean ret3 = session.stop();
52 /*
53 * "lttng view" also tests that Babeltrace is installed and working
54 */
55 List<String> contents = session.view();
7dcd53ab
JR
56 if (!contents.isEmpty()) {
57 System.out.print(String.join("\n", contents));
58 }
59 System.out.println("Sanity check: end");
8576633f
AM
60 return (ret1 && ret2 && ret3 && contents.isEmpty());
61 }
62 }
63
8a0613fa
AM
64 /**
65 * Check if there is a user session daemon currently running on the system.
66 * It needs to be of the same user as the application running this program.
67 *
68 * @return If there is a user session daemon currently running
69 */
8576633f
AM
70 public static boolean checkForUserSessiond() {
71 String userName = System.getProperty("user.name");
72
73 /* The user name is truncated to 7 characters in "ps" */
74 String shortUserName = userName.substring(0, Math.min(userName.length(), 7));
75
76 List<String> command = Arrays.asList("ps", "-e", "u");
7dfd1adf 77 List<String> output = ShellUtils.getOutputFromCommand(false, command);
8576633f
AM
78 return output.stream()
79 .filter(s -> s.contains("lttng-sessiond"))
80 .anyMatch(s -> s.startsWith(shortUserName));
81 }
82
8a0613fa
AM
83 /**
84 * Check if there is a root user session daemon daemon currently running on
85 * the system.
86 *
87 * @return If there is a root session daemon currently running
88 */
8576633f
AM
89 public static boolean checkForRootSessiond() {
90 List<String> command = Arrays.asList("ps", "-e", "u");
7dfd1adf 91 List<String> output = ShellUtils.getOutputFromCommand(false, command);
8576633f
AM
92 return output.stream()
93 .filter(s -> s.contains("lttng-sessiond"))
94 .anyMatch(s -> s.startsWith("root"));
95 }
96
8576633f 97}
This page took 0.027862 seconds and 4 git commands to generate.