2 * Copyright (C) 2011 Julien Desfossez
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;
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.
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.
18 #include <babeltrace/ctf/events.h>
20 #include <linux/unistd.h>
24 uint64_t get_cpu_id(const struct bt_ctf_event
*event
)
26 const struct definition
*scope
;
29 scope
= bt_ctf_get_top_level_scope(event
, BT_STREAM_PACKET_CONTEXT
);
30 cpu_id
= bt_ctf_get_uint64(bt_ctf_get_field(event
, scope
, "cpu_id"));
31 if (bt_ctf_field_get_error()) {
32 fprintf(stderr
, "[error] get cpu_id\n");
39 uint64_t get_context_tid(const struct bt_ctf_event
*event
)
41 const struct definition
*scope
;
44 scope
= bt_ctf_get_top_level_scope(event
, BT_STREAM_EVENT_CONTEXT
);
45 tid
= bt_ctf_get_int64(bt_ctf_get_field(event
,
47 if (bt_ctf_field_get_error()) {
48 fprintf(stderr
, "Missing tid context info\n");
55 uint64_t get_context_pid(const struct bt_ctf_event
*event
)
57 const struct definition
*scope
;
60 scope
= bt_ctf_get_top_level_scope(event
, BT_STREAM_EVENT_CONTEXT
);
61 pid
= bt_ctf_get_int64(bt_ctf_get_field(event
,
63 if (bt_ctf_field_get_error()) {
64 fprintf(stderr
, "Missing pid context info\n");
71 uint64_t get_context_ppid(const struct bt_ctf_event
*event
)
73 const struct definition
*scope
;
76 scope
= bt_ctf_get_top_level_scope(event
, BT_STREAM_EVENT_CONTEXT
);
77 ppid
= bt_ctf_get_int64(bt_ctf_get_field(event
,
79 if (bt_ctf_field_get_error()) {
80 fprintf(stderr
, "Missing ppid context info\n");
87 char *get_context_comm(const struct bt_ctf_event
*event
)
89 const struct definition
*scope
;
92 scope
= bt_ctf_get_top_level_scope(event
, BT_STREAM_EVENT_CONTEXT
);
93 comm
= bt_ctf_get_char_array(bt_ctf_get_field(event
,
95 if (bt_ctf_field_get_error()) {
96 fprintf(stderr
, "Missing comm context info\n");
103 struct processtop
*find_process_tid(struct lttngtop
*ctx
, int tid
, char *comm
)
106 struct processtop
*tmp
;
108 for (i
= 0; i
< ctx
->process_table
->len
; i
++) {
109 tmp
= g_ptr_array_index(ctx
->process_table
, i
);
110 if (tmp
&& tmp
->tid
== tid
)
116 struct processtop
* add_proc(struct lttngtop
*ctx
, int tid
, char *comm
,
117 unsigned long timestamp
)
119 struct processtop
*newproc
;
121 /* if the PID already exists, we just rename the process */
122 /* FIXME : need to integrate with clone/fork/exit to be accurate */
123 newproc
= find_process_tid(ctx
, tid
, comm
);
125 newproc
= g_new0(struct processtop
, 1);
127 newproc
->birth
= timestamp
;
128 newproc
->process_files_table
= g_ptr_array_new();
129 newproc
->files_history
= NULL
;
130 newproc
->totalfileread
= 0;
131 newproc
->totalfilewrite
= 0;
132 newproc
->fileread
= 0;
133 newproc
->filewrite
= 0;
134 newproc
->syscall_info
= NULL
;
135 newproc
->threads
= g_ptr_array_new();
136 newproc
->perf
= g_hash_table_new(g_str_hash
, g_str_equal
);
137 g_ptr_array_add(ctx
->process_table
, newproc
);
139 newproc
->comm
= strdup(comm
);
144 struct processtop
* update_proc(struct processtop
* proc
, int pid
, int tid
,
145 int ppid
, char *comm
)
151 if (strcmp(proc
->comm
, comm
) != 0) {
153 proc
->comm
= strdup(comm
);
160 * This function just sets the time of death of a process.
161 * When we rotate the cputime we remove it from the process list.
163 void death_proc(struct lttngtop
*ctx
, int tid
, char *comm
,
164 unsigned long timestamp
)
166 struct processtop
*tmp
;
167 tmp
= find_process_tid(ctx
, tid
, comm
);
168 if (tmp
&& strcmp(tmp
->comm
, comm
) == 0)
169 tmp
->death
= timestamp
;
172 struct processtop
* get_proc(struct lttngtop
*ctx
, int tid
, char *comm
,
173 unsigned long timestamp
)
175 struct processtop
*tmp
;
176 tmp
= find_process_tid(ctx
, tid
, comm
);
177 if (tmp
&& strcmp(tmp
->comm
, comm
) == 0)
179 return add_proc(ctx
, tid
, comm
, timestamp
);
182 void add_thread(struct processtop
*parent
, struct processtop
*thread
)
185 struct processtop
*tmp
;
187 for (i
= 0; i
< parent
->threads
->len
; i
++) {
188 tmp
= g_ptr_array_index(parent
->threads
, i
);
192 g_ptr_array_add(parent
->threads
, thread
);
195 struct cputime
* add_cpu(int cpu
)
197 struct cputime
*newcpu
;
199 newcpu
= g_new0(struct cputime
, 1);
201 newcpu
->current_task
= NULL
;
202 newcpu
->perf
= g_hash_table_new(g_str_hash
, g_str_equal
);
204 g_ptr_array_add(lttngtop
.cpu_table
, newcpu
);
208 struct cputime
* get_cpu(int cpu
)
213 for (i
= 0; i
< lttngtop
.cpu_table
->len
; i
++) {
214 tmp
= g_ptr_array_index(lttngtop
.cpu_table
, i
);
223 * At the end of a sampling period, we need to display the cpu time for each
224 * process and to reset it to zero for the next period
226 void rotate_cputime(unsigned long end
)
230 unsigned long elapsed
;
232 for (i
= 0; i
< lttngtop
.cpu_table
->len
; i
++) {
233 tmp
= g_ptr_array_index(lttngtop
.cpu_table
, i
);
234 elapsed
= end
- tmp
->task_start
;
235 if (tmp
->current_task
) {
236 tmp
->current_task
->totalcpunsec
+= elapsed
;
237 tmp
->current_task
->threadstotalcpunsec
+= elapsed
;
238 if (tmp
->current_task
->pid
!= tmp
->current_task
->tid
&&
239 tmp
->current_task
->threadparent
) {
240 tmp
->current_task
->threadparent
->threadstotalcpunsec
+= elapsed
;
243 tmp
->task_start
= end
;
247 void reset_perf_counter(gpointer key
, gpointer value
, gpointer user_data
)
249 ((struct perfcounter
*) value
)->count
= 0;
252 void copy_perf_counter(gpointer key
, gpointer value
, gpointer new_table
)
254 struct perfcounter
*newperf
;
256 newperf
= g_new0(struct perfcounter
, 1);
257 newperf
->count
= ((struct perfcounter
*) value
)->count
;
258 newperf
->visible
= ((struct perfcounter
*) value
)->visible
;
259 newperf
->sort
= ((struct perfcounter
*) value
)->sort
;
260 g_hash_table_insert((GHashTable
*) new_table
, strdup(key
), newperf
);
263 void rotate_perfcounter() {
265 struct processtop
*tmp
;
266 for (i
= 0; i
< lttngtop
.process_table
->len
; i
++) {
267 tmp
= g_ptr_array_index(lttngtop
.process_table
, i
);
268 g_hash_table_foreach(tmp
->perf
, reset_perf_counter
, NULL
);
272 void cleanup_processtop()
275 struct processtop
*tmp
;
276 struct files
*tmpf
; /* a temporary file */
278 for (i
= 0; i
< lttngtop
.process_table
->len
; i
++) {
279 tmp
= g_ptr_array_index(lttngtop
.process_table
, i
);
280 tmp
->totalcpunsec
= 0;
281 tmp
->threadstotalcpunsec
= 0;
285 for (j
= 0; j
< tmp
->process_files_table
->len
; j
++) {
286 tmpf
= g_ptr_array_index(tmp
->process_files_table
, j
);
291 if (tmpf
->flag
== __NR_close
)
293 tmp
->process_files_table
, j
300 struct lttngtop
* get_copy_lttngtop(unsigned long start
, unsigned long end
)
304 struct lttngtop
*dst
;
305 struct processtop
*tmp
, *tmp2
, *new;
306 struct cputime
*tmpcpu
, *newcpu
;
307 struct files
*tmpfile
, *newfile
;
309 dst
= g_new0(struct lttngtop
, 1);
312 dst
->process_table
= g_ptr_array_new();
313 dst
->files_table
= g_ptr_array_new();
314 dst
->cpu_table
= g_ptr_array_new();
315 dst
->perf_list
= g_hash_table_new(g_str_hash
, g_str_equal
);
319 g_hash_table_foreach(lttngtop
.perf_list
, copy_perf_counter
, dst
->perf_list
);
320 for (i
= 0; i
< lttngtop
.process_table
->len
; i
++) {
321 tmp
= g_ptr_array_index(lttngtop
.process_table
, i
);
322 new = g_new0(struct processtop
, 1);
324 memcpy(new, tmp
, sizeof(struct processtop
));
325 new->threads
= g_ptr_array_new();
326 new->comm
= strdup(tmp
->comm
);
327 new->process_files_table
= g_ptr_array_new();
328 new->files_history
= tmp
->files_history
;
329 new->perf
= g_hash_table_new(g_str_hash
, g_str_equal
);
330 g_hash_table_foreach(tmp
->perf
, copy_perf_counter
, new->perf
);
332 /* compute the stream speed */
333 if (end
- start
!= 0) {
334 time
= (end
- start
) / NSEC_PER_SEC
;
335 new->fileread
= new->fileread
/(time
);
336 new->filewrite
= new->filewrite
/(time
);
339 for (j
= 0; j
< tmp
->process_files_table
->len
; j
++) {
340 tmpfile
= g_ptr_array_index(tmp
->process_files_table
, j
);
342 newfile
= malloc(sizeof(struct files
));
344 if (tmpfile
!= NULL
) {
345 memcpy(newfile
, tmpfile
, sizeof(struct files
));
346 newfile
->name
= strdup(tmpfile
->name
);
348 g_ptr_array_add(new->process_files_table
,
350 g_ptr_array_add(dst
->files_table
, newfile
);
352 g_ptr_array_add(new->process_files_table
, NULL
);
353 g_ptr_array_add(dst
->files_table
, NULL
);
356 * if the process died during the last period, we remove all
357 * files associated with if after the copy
359 if (tmp
->death
> 0 && tmp
->death
< end
) {
360 g_ptr_array_remove(tmp
->process_files_table
, tmpfile
);
364 g_ptr_array_add(dst
->process_table
, new);
367 * if the process died during the last period, we remove it from
368 * the current process list after the copy
370 if (tmp
->death
> 0 && tmp
->death
< end
) {
371 g_ptr_array_remove(lttngtop
.process_table
, tmp
);
372 /* FIXME : TRUE does not mean clears the object in it */
373 g_ptr_array_free(tmp
->threads
, TRUE
);
375 g_ptr_array_free(tmp
->process_files_table
, TRUE
);
376 /* FIXME : clear elements */
377 g_hash_table_destroy(tmp
->perf
);
381 rotate_perfcounter();
383 for (i
= 0; i
< lttngtop
.cpu_table
->len
; i
++) {
384 tmpcpu
= g_ptr_array_index(lttngtop
.cpu_table
, i
);
385 newcpu
= g_new0(struct cputime
, 1);
386 memcpy(newcpu
, tmpcpu
, sizeof(struct cputime
));
387 newcpu
->perf
= g_hash_table_new(g_str_hash
, g_str_equal
);
388 g_hash_table_foreach(tmpcpu
->perf
, copy_perf_counter
, newcpu
->perf
);
390 * note : we don't care about the current process pointer in the copy
391 * so the reference is invalid after the memcpy
393 g_ptr_array_add(dst
->cpu_table
, newcpu
);
395 /* FIXME : better algo */
396 /* create the threads index if required */
397 for (i
= 0; i
< dst
->process_table
->len
; i
++) {
398 tmp
= g_ptr_array_index(dst
->process_table
, i
);
399 if (tmp
->pid
== tmp
->tid
) {
400 for (j
= 0; j
< dst
->process_table
->len
; j
++) {
401 tmp2
= g_ptr_array_index(dst
->process_table
, j
);
402 if (tmp2
->pid
== tmp
->pid
) {
403 tmp2
->threadparent
= tmp
;
404 g_ptr_array_add(tmp
->threads
, tmp2
);
410 // update_global_stats(dst);
411 cleanup_processtop();
This page took 0.036529 seconds and 4 git commands to generate.