1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
#!/usr/bin/env python3
#
# SPDX-FileCopyrightText: 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
#
# SPDX-License-Identifier: GPL-2.0-only
#
import uuid
import os
import subprocess
import shutil
import sys
import time
import tempfile
# Import lttng bindings generated in the current tree
lttng_bindings_path = os.path.dirname(os.path.abspath(__file__)) + "/"
for i in range(3):
lttng_bindings_path = os.path.dirname(lttng_bindings_path)
lttng_bindings_path = lttng_bindings_path + "/extras/bindings/swig/python"
lttng_bindings_libs_path = lttng_bindings_path + "/.libs"
sys.path.append(lttng_bindings_path)
sys.path.append(lttng_bindings_libs_path)
from lttng import *
_time_tests = True
if os.getenv("LTTNG_TESTS_TAP_AUTOTIME", "1") == "0":
_time_tests = False
def _get_time_ns():
# type: () -> int
# time.monotonic is only available since Python 3.3. We don't support
# those older versions so we can simply assert here.
assert sys.version_info >= (3, 3, 0)
# time.monotonic_ns is only available for python >= 3.8,
# so the value is multiplied by 10^9 to maintain compatibility with
# older versions of the interpreter.
return int(time.monotonic() * 1000000000)
_last_time = _get_time_ns()
BABELTRACE_BIN = "babeltrace2"
class SessionInfo:
def __init__(self, handle, session_name, tmp_directory, channel_name):
self.handle = handle
self.name = session_name
self.tmp_directory = tmp_directory
self.trace_path = tmp_directory + "/" + session_name
self.channel_name = channel_name
def bail(diag, session_info=None):
print("Bail out!")
print("#", diag)
if session_info is not None:
stop_session(session_info, True)
if os.path.exists(session_info.tmp_directory):
shutil.rmtree(session_info.tmp_directory)
exit(-1)
def print_automatic_test_timing():
global _time_tests
global _last_time
if not _time_tests:
return
duration_ns = _get_time_ns() - _last_time
print(" ---\n duration_ms: {:02f}\n ...".format(duration_ns / 1000000))
_last_time = _get_time_ns()
def print_test_result(result, number, description):
result_string = None
if result is True:
result_string = "ok"
else:
result_string = "not ok"
result_string += " {0} - {1}".format(number, description)
print(result_string)
print_automatic_test_timing()
def skip_test(number, description):
print("ok {} # skip {}".format(number, description))
print_automatic_test_timing()
def enable_ust_tracepoint_event(session_info, event_name):
event = Event()
event.name = event_name
event.type = EVENT_TRACEPOINT
event.loglevel = EVENT_LOGLEVEL_ALL
res = enable_event(session_info.handle, event, session_info.channel_name)
if res < 0:
bail("Failed to enable userspace event " + event_name, session_info)
def create_session():
dom = Domain()
dom.type = DOMAIN_UST
session_name = str(uuid.uuid1())
tmp_directory = tempfile.mkdtemp()
trace_path = tmp_directory + "/" + session_name
res = create(session_name, trace_path)
if res < 0:
bail("Failed to create recording session.")
channel = Channel()
channel.name = "channel0"
channel_set_default_attr(dom, channel.attr)
han = Handle(session_name, dom)
res = enable_channel(han, channel)
session_info = SessionInfo(han, session_name, tmp_directory, channel.name)
if res < 0:
bail("Failed to enable channel " + channel.name, session_info)
return session_info
def start_session(session_info):
start(session_info.name)
def stop_session(session_info, bailing=False):
# Workaround lttng-ctl outputing directly to stdout by spawning a subprocess.
lttng_binary_path = os.path.dirname(os.path.abspath(__file__)) + "/"
for i in range(3):
lttng_binary_path = os.path.dirname(lttng_binary_path)
lttng_binary_path = lttng_binary_path + "/src/bin/lttng/lttng"
retcode = subprocess.call(
[lttng_binary_path, "stop", session_info.name],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
if retcode != 0 and not bailing:
bail("Unable to stop session " + session_info.name, session_info)
destroy(session_info.name)
|