X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=bindings%2Fpython%2Fexamples%2Fsequence_test.py;h=c6313b7e83ad0f943b089f4f81dc884689553e81;hp=2379d9b96cc10083c51e71a9c375ec235c298ab1;hb=HEAD;hpb=74ea15add8dd5d0d6ee70c2062b8671104000b4e diff --git a/bindings/python/examples/sequence_test.py b/bindings/python/examples/sequence_test.py deleted file mode 100644 index 2379d9b9..00000000 --- a/bindings/python/examples/sequence_test.py +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env python3 -# sequence_test.py -# -# Babeltrace example script based on the Babeltrace API test script -# -# Copyright 2013 Xiaona Han -# Copyright 2012 EfficiOS Inc. -# -# Author: Danny Serres -# Author: Xiaona Han -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. - -# This example uses the babeltrace python module -# to partially test the sequence API - -import sys -from babeltrace import * - -# Check for path arg: -if len(sys.argv) < 2: - raise TypeError("Usage: sequence_test.py path/to/file") - -# Create TraceCollection and add trace: -traces = TraceCollection() -trace_handle = traces.add_trace(sys.argv[1], "ctf") -if trace_handle is None: - raise IOError("Error adding trace") - -# Listing events -lst = CTFReader.get_event_decl_list(trace_handle, traces) -print("--- Event list ---") -for item in lst: - print("event : {}".format(item.get_name())) -print("--- Done ---") - -for event in traces.events: - print("TS: {}, {} : {}".format(event.get_timestamp(), - event.get_cycles(), event.get_name())) - field = event.get_field("seq_int_field") - if field is not None: - print("int sequence values: {}". format(field[0].get_value())) - field = event.get_field("seq_long_field") - if field is not None: - print("long sequence values: {}". format(field[0].get_value()))