Commit | Line | Data |
---|---|---|
1fc22eb4 | 1 | /* |
aa15ac1c | 2 | * Copyright (C) 2011-2012 Julien Desfossez |
1fc22eb4 JD |
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 Version 2 as | |
6 | * published by the Free Software Foundation; | |
7 | * | |
8 | * This program is distributed in the hope that it will be useful, | |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 | * GNU General Public License for more details. | |
12 | * | |
71bd7ce1 AM |
13 | * You should have received a copy of the GNU General Public License along |
14 | * with this program; if not, write to the Free Software Foundation, Inc., | |
15 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
1fc22eb4 JD |
16 | */ |
17 | ||
18 | #ifndef _COMMON_H | |
19 | #define _COMMON_H | |
20 | ||
21 | #include <semaphore.h> | |
22 | #include <babeltrace/ctf/events.h> | |
23 | #include "lttngtoptypes.h" | |
24 | #include "cputop.h" | |
25 | ||
26 | #define NSEC_PER_USEC 1000 | |
27 | #define NSEC_PER_SEC 1000000000L | |
28 | ||
29 | sem_t goodtodisplay, goodtoupdate, timer, pause_sem, end_trace_sem, bootstrap; | |
30 | ||
31 | GPtrArray *copies; /* struct lttngtop */ | |
0d91c12a | 32 | GHashTable *global_perf_liszt; |
da4353bb | 33 | GHashTable *global_filter_list; |
114cae59 | 34 | GHashTable *global_host_list; |
1fc22eb4 | 35 | |
57bff788 | 36 | char *opt_tid; |
c8d75a13 | 37 | char *opt_hostname; |
b1acd2b3 | 38 | char *opt_relay_hostname; |
f16e36fc | 39 | char *opt_kprobes; |
54761a45 JD |
40 | char *opt_exec_name; |
41 | char **opt_exec_argv; | |
42 | char **opt_exec_env; | |
43 | int opt_exec_pid; | |
ea5d1dc9 | 44 | GHashTable *tid_filter_list; |
96aa77de | 45 | |
b1acd2b3 JD |
46 | int remote_live; |
47 | ||
da4353bb JD |
48 | int toggle_filter; |
49 | ||
ae9e85c7 JD |
50 | extern int quit; |
51 | ||
1fc22eb4 JD |
52 | struct lttngtop *data; |
53 | ||
54 | struct processtop *find_process_tid(struct lttngtop *ctx, int pid, char *comm); | |
55 | struct processtop* add_proc(struct lttngtop *ctx, int pid, char *comm, | |
906c08f6 | 56 | unsigned long timestamp, char *hostname); |
1fc22eb4 | 57 | struct processtop* update_proc(struct processtop* proc, int pid, int tid, |
c8d75a13 JD |
58 | int ppid, int vpid, int vtid, int vppid, char *comm, |
59 | char *hostname); | |
1fc22eb4 JD |
60 | void add_thread(struct processtop *parent, struct processtop *thread); |
61 | struct processtop* get_proc(struct lttngtop *ctx, int tid, char *comm, | |
906c08f6 | 62 | unsigned long timestamp, char *hostname); |
59288610 MB |
63 | |
64 | struct processtop *get_proc_pid(struct lttngtop *ctx, int tid, int pid, | |
906c08f6 | 65 | unsigned long timestamp, char *hostname); |
59288610 | 66 | |
1fc22eb4 JD |
67 | void death_proc(struct lttngtop *ctx, int tid, char *comm, |
68 | unsigned long timestamp); | |
69 | struct cputime* add_cpu(int cpu); | |
70 | struct cputime* get_cpu(int cpu); | |
71 | struct lttngtop* get_copy_lttngtop(unsigned long start, unsigned long end); | |
72 | struct perfcounter *add_perf_counter(GPtrArray *perf, GQuark quark, | |
73 | unsigned long count); | |
74 | struct perfcounter *get_perf_counter(const char *name, struct processtop *proc, | |
75 | struct cputime *cpu); | |
e05a35a6 | 76 | void reset_global_counters(void); |
1fc22eb4 | 77 | |
d67167cd | 78 | /* common field access functions */ |
4adc8274 JD |
79 | uint64_t get_cpu_id(const struct bt_ctf_event *event); |
80 | uint64_t get_context_tid(const struct bt_ctf_event *event); | |
81 | uint64_t get_context_pid(const struct bt_ctf_event *event); | |
82 | uint64_t get_context_ppid(const struct bt_ctf_event *event); | |
83 | char *get_context_comm(const struct bt_ctf_event *event); | |
1402044a JD |
84 | uint64_t get_context_vtid(const struct bt_ctf_event *event); |
85 | uint64_t get_context_vpid(const struct bt_ctf_event *event); | |
86 | uint64_t get_context_vppid(const struct bt_ctf_event *event); | |
c8d75a13 | 87 | char *get_context_hostname(const struct bt_ctf_event *event); |
d67167cd | 88 | |
928f18a6 MB |
89 | enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data, |
90 | void *private_data); | |
91 | ||
b520ab45 JD |
92 | struct tm format_timestamp(uint64_t timestamp); |
93 | ||
da4353bb | 94 | int *lookup_filter_tid_list(int tid); |
57bff788 | 95 | int *lookup_tid_list(int tid); |
906c08f6 | 96 | void remove_hostname_list(const char *hostname); |
b99227ca | 97 | void add_filter_tid_list(struct processtop *proc); |
da4353bb | 98 | void remove_filter_tid_list(int tid); |
114cae59 JD |
99 | struct host *lookup_hostname_list(const char *hostname); |
100 | int is_hostname_filtered(const char *hostname); | |
b99227ca JD |
101 | struct host *add_hostname_list(char *hostname, int filter); |
102 | void update_hostname_filter(struct host *host); | |
57bff788 | 103 | |
1fc22eb4 | 104 | #endif /* _COMMON_H */ |