-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake_track.c
225 lines (193 loc) · 6.83 KB
/
fake_track.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/*
* 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: fake_track.c
*
* Author: Simo Piiroinen
*
* -------------------------------------------------------------------------
*
* History:
*
* 21-Jun-2005 Simo Piiroinen
* - initial version
* ========================================================================= */
/* ========================================================================= *
* Include Files
* ========================================================================= */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "msg.h"
#include "argvec.h"
/* ========================================================================= *
* Configuration
* ========================================================================= */
/* ------------------------------------------------------------------------- *
* Tool Version
* ------------------------------------------------------------------------- */
#define TOOL_NAME "track"
#define TOOL_VERS "0.4.2"
/* ------------------------------------------------------------------------- *
* Runtime Manual
* ------------------------------------------------------------------------- */
static const manual_t app_man[]=
{
MAN_ADD("NAME",
TOOL_NAME"\n"
)
MAN_ADD("SYNOPSIS",
""TOOL_NAME" <options>\n"
)
MAN_ADD("DESCRIPTION",
"This tool records memory and cpu usage information from\n"
"the /proc file system.\n"
)
MAN_ADD("OPTIONS", 0)
MAN_ADD("EXAMPLES",
"% "TOOL_NAME" -otrack.csv -ltrack.log -ptrack.pid &\n"
"% [run applications]\n"
"% kill -HUP `cat track.pid`\n"
"% fixtrack -itrack.csv -oclean.csv\n"
)
MAN_ADD("DATA COLLECTED BY 'TRACK'",
"COLUMN ORIGIN DESCRIPTION\n"
"\n"
"secs track [s] Time since the first poll\n"
"pid track Process identifier\n"
"\n"
"ppid stat Parent process indentifier\n"
"comm stat Command name\n"
"\n"
"VmSize status [kB] TOTAL size of process VM address space.\n"
"VmData status [kB] Size of portions configured as DATA\n"
"VmStk status [kB] Size of portions configured as STACK\n"
"VmExe status [kB] Size of portions configured as APPBIN\n"
"VmLib status [kB] Size of portions configured as DYNLIBS\n"
"VmLck status [kB] Pages locked to stay in RAM.\n"
"VmRSS status [kB] Pages currently resident in RAM.\n"
"\n"
"vsize stat Should be equal to VmSize\n"
"rss stat Should be equal to VmRSS\n"
"utime stat [Jiffies] Time spent in user space.\n"
"stime stat [Jiffies] Time spent in system space.\n"
"\n"
"ttime track [Jiffies] Total time spent = utime + stime\n"
"\n"
"size statm Should be equal to VmSize, but is not\n"
"resident statm Should be equal to VmRSS\n"
"shared statm [kB] Amount of resident RAM shared with other\n"
" processes\n"
"trs statm [kB] amount of APPBIN in RAM.\n"
"drs statm [kB] amount of DATA + STACK in RAM.\n"
"lrs statm [kB] amount of DYNLIBS in RAM.\n"
"dt statm [kB] Amount of ram that is dirty (non-discardable)\n"
)
MAN_ADD("DATA CALCULATED BY 'FIXTRACK' DURING POSTPROCESSING'",
"private fixtrack = resident - shared\n"
"clean fixtrack = resident - dt\n"
"VmMaps fixtrack = VmSize - (VmExe+VmLib+VmStk+VmData)\n"
)
MAN_ADD("COPYRIGHT",
"Copyright (C) 2001, 2004-2007 Nokia Corporation.\n\n"
"This is free software. You may redistribute copies of it under the\n"
"terms of the GNU General Public License v2 included with the software.\n"
"There is NO WARRANTY, to the extent permitted by law.\n"
)
MAN_ADD("SEE ALSO",
"proc(5), top(1),\n"
"/usr/src/linux/Documentation/filesystems/proc.txt\n"
)
MAN_END
};
/* ------------------------------------------------------------------------- *
* Commandline Arguments
* ------------------------------------------------------------------------- */
enum
{
opt_noswitch = -1,
opt_help,
opt_vers,
opt_output,
opt_pidfile,
opt_logfile,
opt_no_scan,
opt_poll_freq,
};
static const option_t app_opt[] =
{
OPT_ADD(opt_help,
"h", "help", 0,
"This help text\n"),
OPT_ADD(opt_vers,
"V", "version", 0,
"Tool version\n"),
OPT_ADD(opt_output,
"o", "output", "<destination path>",
"Output file to use instead of stdout.\n" ),
OPT_ADD(opt_logfile,
"l", "log-file", "<path>",
"Message file to use instead of stderr.\n" ),
OPT_ADD(opt_pidfile,
"p", "pid-file", "<path>",
"Process ID will be written to this file.\n" ),
OPT_ADD(opt_no_scan,
0, "no-scan", 0,
"Only pseudo process information like committed_as is tracked.\n" ),
OPT_ADD(opt_poll_freq,
"F", "poll-freq", "<time>",
"Polling is done every <time> milliseconds [1000ms].\n" ),
OPT_END
};
/* ========================================================================= *
* Main Entry Point
* ========================================================================= */
int main(int ac, char **av)
{
printf("hello, world\n");
argvec_t *args = argvec_create(ac, av, app_opt, app_man);
int tag;
char *par;
while( !argvec_done(args) )
{
if( !argvec_next(args, &tag, &par) )
{
msg_error("(use --help for usage)\n");
exit(1);
}
switch( tag )
{
case opt_help:
//argvec_options(args, 1);
argvec_usage(args);
exit(0);
default:
printf("tag=%d, par='%s'\n", tag, par);
break;
}
}
argvec_delete(args);
printf("bye, world\n");
return 0;
}