2 * Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
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.
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.
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.
19 package org
.lttng
.tools
.utils
;
21 import java
.io
.IOException
;
22 import java
.util
.Arrays
;
23 import java
.util
.List
;
25 import org
.lttng
.tools
.ILttngSession
;
26 import org
.lttng
.tools
.ILttngSession
.Domain
;
27 import org
.lttng
.ust
.agent
.jul
.LttngLogHandler
;
28 import org
.lttng
.ust
.agent
.log4j
.LttngLogAppender
;
31 * Utility methods to test the presence of certain LTTng tools or libraries in
32 * the runtime environment.
34 public final class LttngUtils
{
36 private LttngUtils() {}
39 * Check the the JUL native library is available, effectively allowing LTTng
40 * JUL handlers to be used.
42 * @return True if JUL works fine, false if it does not.
44 public static boolean checkForJulLibrary() {
46 LttngLogHandler testHandler
= new LttngLogHandler();
48 } catch (SecurityException
| IOException e
) {
55 * Check the the Log4j native library is available, effectively allowing
56 * LTTng Log4j appenders to be used.
58 * @return True if Log4j works fine, false if it does not.
60 public static boolean checkForLog4jLibrary() {
62 LttngLogAppender testAppender
= new LttngLogAppender();
64 } catch (SecurityException
| IOException e
) {
71 * Check that lttng-tools and babeltrace are installed on the system and
75 * The tracing domain to test for (we will try to setup a session
77 * @return True if the environment should allow tracing fine, false if there
80 public static boolean checkForLttngTools(Domain domain
) {
81 try (ILttngSession session
= ILttngSession
.newCommandLineSession(null, domain
)) {
82 boolean ret1
= session
.enableAllEvents();
83 boolean ret2
= session
.start();
84 boolean ret3
= session
.stop();
86 * "lttng view" also tests that Babeltrace is installed and working
88 List
<String
> contents
= session
.view();
89 return (ret1
&& ret2
&& ret3
&& contents
.isEmpty());
94 * Check if there is a user session daemon currently running on the system.
95 * It needs to be of the same user as the application running this program.
97 * @return If there is a user session daemon currently running
99 public static boolean checkForUserSessiond() {
100 String userName
= System
.getProperty("user.name");
102 /* The user name is truncated to 7 characters in "ps" */
103 String shortUserName
= userName
.substring(0, Math
.min(userName
.length(), 7));
105 List
<String
> command
= Arrays
.asList("ps", "-e", "u");
106 List
<String
> output
= ShellUtils
.getOutputFromCommand(false, command
);
107 return output
.stream()
108 .filter(s
-> s
.contains("lttng-sessiond"))
109 .anyMatch(s
-> s
.startsWith(shortUserName
));
113 * Check if there is a root user session daemon daemon currently running on
116 * @return If there is a root session daemon currently running
118 public static boolean checkForRootSessiond() {
119 List
<String
> command
= Arrays
.asList("ps", "-e", "u");
120 List
<String
> output
= ShellUtils
.getOutputFromCommand(false, command
);
121 return output
.stream()
122 .filter(s
-> s
.contains("lttng-sessiond"))
123 .anyMatch(s
-> s
.startsWith("root"));