-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproc_status.c
158 lines (137 loc) · 3.75 KB
/
proc_status.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
158
/*
* This file is part of libsysperf
*
* Copyright (C) 2001, 2004-2007 by Nokia Corporation.
*
* Contact: Eero Tamminen <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
/* ========================================================================= *
* File: proc_status.c
*
* Author: Simo Piiroinen
*
* History:
*
* 21-Sep-2006 Simo Piiroinen
* - fixed include paths
*
* 30-May-2006 Simo Piiroinen
* - moved from track2 source tree
*
* 15-Dec-2004 Simo Piiroinen
* - added Name, Pid and PPid parsing
* ========================================================================= */
#include "cstring.h"
#include "xmalloc.h"
#include "proc_status.h"
/* ------------------------------------------------------------------------- *
* proc_status_create
* ------------------------------------------------------------------------- */
proc_status_t *
proc_status_create(void)
{
proc_status_t *self = xcalloc(1, sizeof *self);
proc_status_ctor(self);
return self;
}
/* ------------------------------------------------------------------------- *
* proc_status_delete
* ------------------------------------------------------------------------- */
void
proc_status_delete(proc_status_t *self)
{
if( self != 0 )
{
proc_status_dtor(self);
xfree(self);
}
}
/* ------------------------------------------------------------------------- *
* proc_status_update
* ------------------------------------------------------------------------- */
void
proc_status_update(proc_status_t *self, char *data)
{
char *key, *val;
while( *data )
{
key = cstring_split_at_char(data, &data, '\n');
if( strchr("VNP", *key) == 0 ) continue;
//if( key[0] != 'V' || key[1] != 'm' ) continue;
cstring_split_at_char(key, &val, ':');
#define Xu(v) if( !strcmp(key, #v) )\
{ self->v = strtoul(val,0,0); } else
#define Xs(v) if( !strcmp(key, #v) ) \
{ snprintf(self->v,sizeof self->v, "%s", cstring_strip(val)); } else
Xs(Name);
Xu(Pid);
Xu(PPid);
Xu(VmSize)
Xu(VmLck)
Xu(VmRSS)
Xu(VmData)
Xu(VmStk)
Xu(VmExe)
Xu(VmLib)
{ }
#undef Xu
#undef Xs
}
for( char *s = self->Name; *s; ++s )
{
switch( *s )
{
case '/':
case '[': case ']':
case '(': case ')':
case '{': case '}':
*s = '_';
break;
}
}
}
/* ------------------------------------------------------------------------- *
* proc_status_parse
* ------------------------------------------------------------------------- */
void
proc_status_parse(proc_status_t *self, const char *path)
{
char *data = cstring_from_file(path);
if( data != 0 )
{
proc_status_update(self, data);
xfree(data);
}
}
/* ------------------------------------------------------------------------- *
* proc_status_repr
* ------------------------------------------------------------------------- */
void
proc_status_repr(proc_status_t *self, FILE *file)
{
fprintf(file,
"VmSize=%u,VmLck=%u,VmRSS=%u,VmData=%u,"
"VmStk=%u,VmExe=%u,VmLib=%u\n",
self->VmSize,
self->VmLck,
self->VmRSS,
self->VmData,
self->VmStk,
self->VmExe,
self->VmLib);
}