Project

General

Profile

Google Summer of Code 2013 » History » Version 11

Christian Babeux, 03/08/2013 12:12 PM

1 1 Christian Babeux
h1. Google Summer of Code 2013
2 3 Christian Babeux
3 2 Christian Babeux
h2. Project Ideas
4
5 4 Christian Babeux
h3. Babeltrace python bindings
6 3 Christian Babeux
7 4 Christian Babeux
*Brief explanation*:
8 2 Christian Babeux
9
Provide Python bindings to the Babeltrace APIs to provide a complete CTF reading/writting infrastructure to Python programmers.
10 1 Christian Babeux
11
Most of the public Babeltrace API is currently mapped using SWIG. However, a more “Pythonic” set of wrapper classes will make trace reading and writting more accessible than using the current native API. The production and interpretation of CTF traces in a high level language such as Python will ease the development of custom trace analysis solutions. It will also provide a convenient language in which to implement trace conversion plugins.
12 4 Christian Babeux
13
*Expected results*: TBD
14
15
*Complementary information*:
16
17
The Common Trace Format (CTF) specifies a trace format based on the requirements of the industry (through collaboration with the Multicore Association) and the Linux community.
18 6 Christian Babeux
19 4 Christian Babeux
Babeltrace is a trace conversion library that aims to provide a convenient to read and convert trace files between different formats. It currently supports CTF, which is the trace format outputted by the LTTng 2.0 tracers and provides the CTF reference implementation.
20
21
*Skill level*: Easy - Medium
22 5 Christian Babeux
23 4 Christian Babeux
*Prerequisite Knowledge*: Python, OO development
24 5 Christian Babeux
25 4 Christian Babeux
*Mentors*: Jérémie Galarneau
26 7 Christian Babeux
27
h3. Trace probe support in C++
28
29
*Brief explanation*:
30
31
The LTTng userspace tracing relies on the instrumentation of target applications with tracepoint probes. Currently, the only way to use tracepoints in C++ applications is by compiling a stand-alone C library linked to liblttng-ust which is then linked to the target C++ application. While this method is functional, it introduces significant development time overhead and confusion for new users. This project aims at making the UST tracepoint probe code compatible with popular C++ compilers to enable direct compilation of the providers with the application. The necessary modifications should not be too complex but are an excellent introductory project.
32
33
*Expected results*: TBD
34
35
*Complementary information*:
36 9 Christian Babeux
37 8 Christian Babeux
Issue #338
38 7 Christian Babeux
39
*Skill level*: Easy - Medium
40
41
*Prerequisite Knowledge*: C++ development, C development, build environments
42
43
*Mentors*: TBD
44 10 Christian Babeux
45
h3. Development of an strace-like wrapper
46
47
*Brief explanation*:
48
49
The LTTng kernel tracer should provide all the functionality required to emulate the behaviour of the strace tracer. The goal of this project is the development of an strace drop-in replacement based on the LTTng tracing toolchain that shall provide the user with the functionality of strace and the performance characteristics of the LTTng kernel tracer. This should ensure backward compatibility with tools based on the strace output format.
50 11 Christian Babeux
51 10 Christian Babeux
This should be implemented as a Babeltrace trace converter plug-in used in “live mode” -- an upcoming Babeltrace feature currently being developped by Julien Desfossez. The resulting plug-in will enable seamless interoperability between CTF and strace-based tools.
52
53
*Expected results*: TBD
54
55
*Complementary information*:
56
57
Issue #15
58
59
*Skill level*: Medium
60 11 Christian Babeux
61 10 Christian Babeux
*Prerequisite Knowledge*:  C development, scripting
62 11 Christian Babeux
63 10 Christian Babeux
*Mentors*: TBD