hostname filter from gui
authorJulien Desfossez <jdesfossez@efficios.com>
Thu, 30 Aug 2012 18:16:11 +0000 (14:16 -0400)
committerJulien Desfossez <jdesfossez@efficios.com>
Sat, 19 Oct 2013 16:02:38 +0000 (12:02 -0400)
Signed-off-by: Julien Desfossez <jdesfossez@efficios.com>
src/common.c
src/common.h
src/cursesdisplay.c
src/lttngtoptypes.h

index bc3fff3d55b3e0d5023e3ff910658637fa82c435..9f89391b612af6a485fcc6a1167fcf63527dcf99 100644 (file)
@@ -178,6 +178,7 @@ struct processtop* add_proc(struct lttngtop *ctx, int tid, char *comm,
                unsigned long timestamp, char *hostname)
 {
        struct processtop *newproc;
+       struct host *host;
 
        /* if the PID already exists, we just rename the process */
        /* FIXME : need to integrate with clone/fork/exit to be accurate */
@@ -201,21 +202,21 @@ struct processtop* add_proc(struct lttngtop *ctx, int tid, char *comm,
                g_hash_table_insert(ctx->process_hash_table,
                                (gpointer) (unsigned long) tid, newproc);
                if (lookup_tid_list(tid)) {
-                       add_filter_tid_list(tid, newproc);
+                       add_filter_tid_list(newproc);
                }
                ctx->nbnewthreads++;
                ctx->nbthreads++;
        }
        newproc->comm = strdup(comm);
        if (hostname) {
-               if (newproc->hostname && strcmp(newproc->hostname, hostname) != 0) {
-                       free(newproc->hostname);
-               }
-               newproc->hostname = strdup(hostname);
+               host = lookup_hostname_list(hostname);
+               if (!host)
+                       host = add_hostname_list(hostname, 0);
+               if (!newproc->host || (newproc->host != host))
+                       newproc->host = host;
                if (is_hostname_filtered(hostname)) {
-                       add_filter_tid_list(tid, newproc);
+                       add_filter_tid_list(newproc);
                }
-               add_hostname_list(hostname, 0);
        }
 
        return newproc;
@@ -224,6 +225,8 @@ struct processtop* add_proc(struct lttngtop *ctx, int tid, char *comm,
 struct processtop* update_proc(struct processtop* proc, int pid, int tid,
                int ppid, int vpid, int vtid, int vppid, char *comm, char *hostname)
 {
+       struct host *host;
+
        if (proc) {
                proc->pid = pid;
                proc->tid = tid;
@@ -235,12 +238,15 @@ struct processtop* update_proc(struct processtop* proc, int pid, int tid,
                        free(proc->comm);
                        proc->comm = strdup(comm);
                }
-               if (hostname && !proc->hostname) {
-                       proc->hostname = strdup(hostname);
+               if (hostname && !proc->host) {
+                       host = lookup_hostname_list(hostname);
+                       if (!host)
+                               host = add_hostname_list(hostname, 0);
+                       if (!proc->host || (proc->host != host))
+                               proc->host = host;
                        if (is_hostname_filtered(hostname)) {
-                               add_filter_tid_list(tid, proc);
+                               add_filter_tid_list(proc);
                        }
-                       add_hostname_list(hostname, 0);
                }
        }
        return proc;
@@ -379,6 +385,7 @@ void copy_process_table(gpointer key, gpointer value, gpointer new_table)
 void rotate_perfcounter() {
        int i;
        struct processtop *tmp;
+
        for (i = 0; i < lttngtop.process_table->len; i++) {
                tmp = g_ptr_array_index(lttngtop.process_table, i);
                g_hash_table_foreach(tmp->perf, reset_perf_counter, NULL);
@@ -628,12 +635,6 @@ enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data,
                fprintf(stderr, "Missing process name context info\n");
                goto error;
        }
-       /*
-       hostname = bt_ctf_get_char_array(bt_ctf_get_field(call_data,
-                               scope, "_hostname"));
-       if (bt_ctf_field_get_error()) {
-       }
-       */
 
        proc = find_process_tid(&lttngtop, tid, procname);
        if (proc == NULL)
@@ -700,14 +701,14 @@ int *lookup_filter_tid_list(int tid)
        return g_hash_table_lookup(global_filter_list, (gpointer) &tid);
 }
 
-void add_filter_tid_list(int tid, struct processtop *newproc)
+void add_filter_tid_list(struct processtop *proc)
 {
        unsigned long *hash_tid;
 
        hash_tid = malloc(sizeof(unsigned long));
-       *hash_tid = tid;
+       *hash_tid = proc->tid;
        g_hash_table_insert(global_filter_list,
-                       (gpointer) (unsigned long) hash_tid, newproc);
+                       (gpointer) (unsigned long) hash_tid, proc);
 }
 
 void remove_filter_tid_list(int tid)
@@ -716,12 +717,13 @@ void remove_filter_tid_list(int tid)
                        (gpointer) (unsigned long) &tid);
 }
 
-void add_hostname_list(char *hostname, int filter)
+struct host *add_hostname_list(char *hostname, int filter)
 {
        struct host *host;
 
-       if (lookup_hostname_list(hostname))
-               return;
+       host = lookup_hostname_list(hostname);
+       if (host)
+               return host;
 
        host = g_new0(struct host, 1);
        host->hostname = strdup(hostname);
@@ -729,4 +731,22 @@ void add_hostname_list(char *hostname, int filter)
        g_hash_table_insert(global_host_list,
                        (gpointer) host->hostname,
                        (gpointer) host);
+
+       return host;
+}
+
+void update_hostname_filter(struct host *host)
+{
+       struct processtop *tmp;
+       int i;
+
+       for (i = 0; i < lttngtop.process_table->len; i++) {
+               tmp = g_ptr_array_index(lttngtop.process_table, i);
+               if (tmp->host == host) {
+                       if (host->filter)
+                               add_filter_tid_list(tmp);
+                       else
+                               remove_filter_tid_list(tmp->tid);
+               }
+       }
 }
index d3361939b81741334653dbdc85f9eb93544fdd66..74d3624f5f6fbf1bc64fc228e56dd68e30811935 100644 (file)
@@ -87,10 +87,11 @@ struct tm format_timestamp(uint64_t timestamp);
 int *lookup_filter_tid_list(int tid);
 int *lookup_tid_list(int tid);
 void remove_hostname_list(const char *hostname);
-void add_filter_tid_list(int tid, struct processtop *newproc);
+void add_filter_tid_list(struct processtop *proc);
 void remove_filter_tid_list(int tid);
 struct host *lookup_hostname_list(const char *hostname);
 int is_hostname_filtered(const char *hostname);
-void add_hostname_list(char *hostname, int filter);
+struct host *add_hostname_list(char *hostname, int filter);
+void update_hostname_filter(struct host *host);
 
 #endif /* _COMMON_H */
index 2686c621d21f0453066a95e435ad79d7f750f06c..7f52c8b0e88bbc949b28bff376e2283dcca903d5 100644 (file)
@@ -244,7 +244,7 @@ void update_selected_processes()
        if (process_selected(selected_process)) {
                remove_filter_tid_list(selected_process->tid);
        } else {
-               add_filter_tid_list(selected_process->tid, selected_process);
+               add_filter_tid_list(selected_process);
        }
 }
 
@@ -1346,6 +1346,7 @@ void update_hostname_pref(int *line_selected, int toggle_filter, int toggle_sort
                host = g_hash_table_lookup(global_host_list, hostlist->data);
                if (i == *line_selected && toggle_filter == 1) {
                        host->filter = host->filter == 1 ? 0:1;
+                       update_hostname_filter(host);
                        update_current_view();
                }
                if (i == *line_selected) {
index 2642e816fe0d9b6b986fd278b113c31016096363..382fad5431baa3e755acef929d936d4577f86df4 100644 (file)
@@ -43,7 +43,7 @@ struct processtop {
        unsigned int puuid;
        int pid;
        char *comm;
-       char *hostname;
+       struct host *host;
        int tid;
        int ppid;
        int vpid;
This page took 0.025985 seconds and 4 git commands to generate.