1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
2 | // permet d'obtenir des informations sur les ressources utilisees
|
---|
3 | // R. Ansari - Juillet 2002
|
---|
4 | // LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA
|
---|
5 |
|
---|
6 | #ifndef RESUSAGE_H_SEEN
|
---|
7 | #define RESUSAGE_H_SEEN
|
---|
8 |
|
---|
9 | #include "machdefs.h"
|
---|
10 | #include <iostream>
|
---|
11 |
|
---|
12 | namespace SOPHYA {
|
---|
13 |
|
---|
14 | //! Acces to information about resource usage (memory, CPU, ...)
|
---|
15 |
|
---|
16 | class ResourceUsage
|
---|
17 | {
|
---|
18 | public:
|
---|
19 | enum RU_ProcGrp {RU_Self=0, RU_Children=1, RU_All=2};
|
---|
20 | // RU_Self: Resource usage for the process itself
|
---|
21 | // RU_Children: Resource usage for the child processes
|
---|
22 | // RU_All: Process itself and child processes
|
---|
23 | ResourceUsage(RU_ProcGrp pg=RU_Self);
|
---|
24 | ~ResourceUsage();
|
---|
25 |
|
---|
26 | int Update();
|
---|
27 |
|
---|
28 | // Process Id
|
---|
29 | //! Returns the process id.
|
---|
30 | inline uint_8 getProcessId() { return cur_pid; }
|
---|
31 |
|
---|
32 | // Memory usage in kilo-bytes
|
---|
33 | // NOTE: getDataSize() getStackSize() retournent des valeurs bizarres
|
---|
34 | //! Returns the current memory (Resident) size (in kilo-bytes)
|
---|
35 | inline uint_8 getMemorySize() { return cur_rss; }
|
---|
36 | //! Returns the maximum allowed memory size: Min( \c MaxResidentSize , \c MaxDataSize ))
|
---|
37 | inline uint_8 getMaxMemorySize()
|
---|
38 | { return((getMaxResidentSize()<getMaxDataSize()) ?
|
---|
39 | getMaxResidentSize() :getMaxDataSize() ); }
|
---|
40 | //! Returns the increase in memory usage since the previous call to \b Update()
|
---|
41 | inline uint_8 getDeltaMemorySize() { return delta_rss; }
|
---|
42 |
|
---|
43 | //! Returns the maximum allowd data segment size (in kilo-bytes)
|
---|
44 | inline uint_8 getMaxDataSize() { return((max_datasz>0)?max_datasz:1024); }
|
---|
45 | //! Returns the current data segment size (in kilo-bytes)
|
---|
46 | inline uint_8 getDataSize() { return cur_datasz; }
|
---|
47 | //! Returns the maximum allowed resident size (in kilo-bytes)
|
---|
48 | inline uint_8 getMaxResidentSize() { return((max_rss>0)?max_rss:1024); }
|
---|
49 | //! Returns the current resident memory size (in kilo-bytes)
|
---|
50 | inline uint_8 getResidentSize() { return cur_rss; }
|
---|
51 | //! Returns the maximum allowed stack size (in kilo-bytes)
|
---|
52 | inline uint_8 getMaxStackSize() { return max_stack; }
|
---|
53 | //! Returns the current stack size (in kilo-bytes)
|
---|
54 | inline uint_8 getStackSize() { return cur_stack; }
|
---|
55 |
|
---|
56 |
|
---|
57 | // Time in milli-second
|
---|
58 | //! Returns the total CPU time used (in milli-second)
|
---|
59 | inline uint_8 getCPUTime() { return cur_tottm; }
|
---|
60 | //! Returns the total elapsed time (in milli-second)
|
---|
61 | inline uint_8 getElapsedTime() { return elapsed_time; }
|
---|
62 | //! Returns the average load ( CPU time / elapsed time)
|
---|
63 | inline double getAverageCPULoad()
|
---|
64 | { return ((elapsed_time>1) ? (double)cur_tottm/(double)elapsed_time: 1.);}
|
---|
65 |
|
---|
66 | //! Returns the CPU time used since the previous call to \b Update() (in milli-second)
|
---|
67 | inline uint_8 getDeltaCPUTime() { return delta_tottm; }
|
---|
68 | //! Returns the elapsed time since the previous call to \b Update() (in milli-second)
|
---|
69 | inline uint_8 getDeltaElapsedTime() { return delta_elapsed_time; }
|
---|
70 | //! Returns the CPU load since the previous call to \b Update()
|
---|
71 | inline double getCPULoad()
|
---|
72 | { return ((delta_elapsed_time>1) ? (double)delta_tottm/(double)delta_elapsed_time: 1.);}
|
---|
73 |
|
---|
74 |
|
---|
75 | //! Returns the total CPU time (in milli-second)
|
---|
76 | inline uint_8 getTotalCPUTime() { return cur_tottm; }
|
---|
77 | //! Returns the CPU time in user mode (in milli-second)
|
---|
78 | inline uint_8 getUserCPUTime() { return cur_usrtm; }
|
---|
79 | //! Returns the CPU time in system mode (in milli-second)
|
---|
80 | inline uint_8 getSysCPUTime() { return cur_systm; }
|
---|
81 |
|
---|
82 |
|
---|
83 | void Print(ostream& os, int lp=0, bool upd=true);
|
---|
84 | //! Alias for the \b Print() method.
|
---|
85 | inline void print(ostream& os, int lp=0, bool upd=true){ Print(os,lp,upd); }
|
---|
86 |
|
---|
87 | void ReadLinuxMem(); // methode de lecture des infos memoire ss Linux - OPerdereau
|
---|
88 | void ReadLinuxTotMem(); // methode de lecture des infos memoire ss Linux - OPerdereau
|
---|
89 |
|
---|
90 | protected:
|
---|
91 | RU_ProcGrp procgrp; // Process group: self, child, all
|
---|
92 | uint_8 max_datasz; // Max data segment size (KBytes)
|
---|
93 | uint_8 max_rss; // Max resident size
|
---|
94 | uint_8 max_stack; // Max stack size
|
---|
95 |
|
---|
96 | uint_8 cur_datasz; // Current data segment size
|
---|
97 | uint_8 cur_rss; // Current resident size
|
---|
98 | uint_8 cur_stack; // Current stack size
|
---|
99 |
|
---|
100 | uint_8 cur_tottm; // Current total CPU-Time - in milli-second
|
---|
101 | uint_8 cur_usrtm; // Current user CPU-Time - in milli-second
|
---|
102 | uint_8 cur_systm; // Current system CPU-Time - in milli-second
|
---|
103 | uint_8 elapsed_time; // Elapsed time - in milli-second
|
---|
104 | uint_8 t0_time; // time T0 in seconds
|
---|
105 |
|
---|
106 | // Delta_values : difference since last call to Update()
|
---|
107 | uint_8 delta_rss; // Max resident size
|
---|
108 | uint_8 delta_tottm; // Delta total CPU-Time - in milli-second
|
---|
109 |
|
---|
110 | uint_8 delta_elapsed_time; // Elapsed time - in milli-second
|
---|
111 | uint_8 cur_pid ; // process PID
|
---|
112 | };
|
---|
113 |
|
---|
114 | //! Prints the resource usage information on the output stream
|
---|
115 | inline ostream& operator << (ostream& os, ResourceUsage& ru)
|
---|
116 | { ru.Print(os,0,true); return(os); }
|
---|
117 |
|
---|
118 | } // namespace SOPHYA
|
---|
119 |
|
---|
120 | #endif
|
---|
121 |
|
---|