forked from rostedt/trace-cmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trace-hash.c
157 lines (124 loc) · 3.19 KB
/
trace-hash.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
* Copyright (C) 2009, Steven Rostedt <[email protected]>
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License (not later!)
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include "trace-hash.h"
#define FILTER_TASK_HASH_SIZE 256
struct filter_task_item *
filter_task_find_pid(struct filter_task *hash, gint pid)
{
gint key = trace_hash(pid) % FILTER_TASK_HASH_SIZE;
struct filter_task_item *task = hash->hash[key];
while (task) {
if (task->pid == pid)
break;
task = task->next;
}
return task;
}
void filter_task_add_pid(struct filter_task *hash, gint pid)
{
gint key = trace_hash(pid) % FILTER_TASK_HASH_SIZE;
struct filter_task_item *task;
task = g_new0(typeof(*task), 1);
g_assert(task);
task->pid = pid;
task->next = hash->hash[key];
hash->hash[key] = task;
hash->count++;
}
void filter_task_remove_pid(struct filter_task *hash, gint pid)
{
gint key = trace_hash(pid) % FILTER_TASK_HASH_SIZE;
struct filter_task_item **next = &hash->hash[key];
struct filter_task_item *task;
while (*next) {
if ((*next)->pid == pid)
break;
next = &(*next)->next;
}
if (!*next)
return;
g_assert(hash->count);
hash->count--;
task = *next;
*next = task->next;
g_free(task);
}
void filter_task_clear(struct filter_task *hash)
{
struct filter_task_item *task, *next;;
gint i;
for (i = 0; i < FILTER_TASK_HASH_SIZE; i++) {
next = hash->hash[i];
if (!next)
continue;
hash->hash[i] = NULL;
while (next) {
task = next;
next = task->next;
g_free(task);
}
}
hash->count = 0;
}
struct filter_task *filter_task_hash_alloc(void)
{
struct filter_task *hash;
hash = g_new0(typeof(*hash), 1);
g_assert(hash);
hash->hash = g_new0(typeof(*hash->hash), FILTER_TASK_HASH_SIZE);
return hash;
}
void filter_task_hash_free(struct filter_task *hash)
{
if (!hash)
return;
filter_task_clear(hash);
g_free(hash->hash);
g_free(hash);
}
struct filter_task *filter_task_hash_copy(struct filter_task *hash)
{
struct filter_task *new_hash;
struct filter_task_item *task, **ptask;
gint i;
if (!hash)
return NULL;
new_hash = filter_task_hash_alloc();
g_assert(new_hash);
for (i = 0; i < FILTER_TASK_HASH_SIZE; i++) {
task = hash->hash[i];
if (!task)
continue;
ptask = &new_hash->hash[i];
while (task) {
*ptask = g_new0(typeof(*task), 1);
g_assert(*ptask);
**ptask = *task;
ptask = &(*ptask)->next;
task = task->next;
}
}
new_hash->count = hash->count;
return new_hash;
}