-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory.cpp
157 lines (139 loc) · 3.69 KB
/
memory.cpp
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
///////////////////////////////////////////////////////
// memory.cpp //
// Por Ginés G.M., basado en el código de la función //
// SafeExec, por Jose Paulo Leal. 25/1/2008 //
//---------------------------------------------------//
// Este programa hace una estimación (aproximada) de //
// la máxima cantidad de memoria usada por otro pro- //
// grama cualquiera. Esto se consigue haciendo un //
// muestreo del uso de memoria unas 16 veces por se- //
// gundo, quedándose con el máximo. //
// Compilar con: g++ memory.cpp -o memory //
///////////////////////////////////////////////////////
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <string.h>
#include <stdio.h>
#include <sys/stat.h>
#include <ctype.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
#define SIZE 8192 /* tamaño de buffer para leer /proc/<pid>/status */
#define INTERVAL 61 /* muestrear unas 16 veces por segundo */
pid_t pid;
int max_data= 0;
int max_stack= 0;
void error (char *pt)
{
if (pt)
fprintf(stderr, pt);
abort();
}
int max (int a, int b)
{
return (a > b ? a : b);
}
/* Kill the child process, noting that the child
can already be a zombie (on this case errno
will be ESRCH)
*/
void terminate (pid_t pid)
{
int v;
v = kill (-1, SIGKILL);
if (v < 0)
if (errno != ESRCH)
error("error en terminate\n");
}
/* high resolution (microsecond) sleep */
void msleep (int ms)
{
struct timeval tv;
int v;
do
{
tv.tv_sec = ms / 1000;
tv.tv_usec = (ms % 1000) * 1000;
v = select (0, NULL, NULL, NULL, &tv);
/* The value of the timeout is undefined after the select returns */
}
while ((v < 0) && (errno == EINTR));
if (v < 0)
error("error en msleep\n");
}
int memusage (pid_t pid)
{
char a[SIZE], *p, *q;
int data, stack;
int n, v, fd;
p = a;
sprintf (p, "/proc/%d/status", pid);
fd = open (p, O_RDONLY);
if (fd < 0)
error ("error despues de fd = open\n");
do
n = read (fd, p, SIZE);
while ((n < 0) && (errno == EINTR));
if (n < 0)
error ("error despues de n = read\n");
do
v = close (fd);
while ((v < 0) && (errno == EINTR));
if (v < 0)
error ("error despues de v = close\n");
data = stack = 0;
q = strstr (p, "VmData:");
if (q != NULL)
{
sscanf (q, "%*s %d", &data);
q = strstr (q, "VmStk:");
if (q != NULL)
sscanf (q, "%*s %d\n", &stack);
}
max_data= max(data, max_data);
max_stack= max(stack, max_stack);
return (data + stack);
}
void printusage (char **p)
{
fprintf (stderr, "Uso: %s <comando>\n", *p);
fprintf (stderr, "\t<comando> Programa ejecutable y parametros, en su caso.\n");
}
int main (int argc, char **argv, char **envp)
{
int status, mem;
int v;
if (argc <= 1 || (argc==2 && !strcmp(argv[1], "--help"))) {
printusage (argv);
return (EXIT_FAILURE);
}
else {
pid = fork ();
if (pid < 0)
error ("error despues del fork\n");
if (pid == 0) {
if (execve (argv[1], argv+1, envp) < 0) {
kill (getpid (), SIGPIPE);
error ("error despues de execve\n");
}
}
else {
mem= 16;
do {
msleep(INTERVAL);
mem= max(mem, memusage(pid));
do
v= waitpid (pid, NULL, WNOHANG | WUNTRACED);
while ((v < 0) && (errno != EINTR));
if (v < 0)
error("error despues de waitpid\n");
} while (v == 0);
fprintf(stderr, "\nMemoria total usada: %d Kbytes\n", mem);
fprintf(stderr, " \" de datos: %d Kbytes\n", max_data);
fprintf(stderr, " \" de pila: %d Kbytes\n", max_stack);
}
}
return (EXIT_SUCCESS);
}