-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmem_check.py
More file actions
109 lines (83 loc) · 3.26 KB
/
mem_check.py
File metadata and controls
109 lines (83 loc) · 3.26 KB
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
"""
mem_check.py
functions for getting memoroy use of the current python process
Windows and *nix versions
USAGE:
amount = get_mem_use(units='MB') # options are KB, MB, GB
"""
import sys
div = {'GB': 1024*1024*1024,
'MB': 1024*1024,
'KB': 1024,
}
if sys.platform.startswith('win'):
"""
Functions for getting memory usage of Windows processes.
from:
http://code.activestate.com/recipes/578513-get-memory-usage-of-windows-processes-using-getpro/
get_mem_use(units='MB') is the one to get memory use for the current process.
"""
import ctypes
from ctypes import wintypes
GetCurrentProcess = ctypes.windll.kernel32.GetCurrentProcess
GetCurrentProcess.argtypes = []
GetCurrentProcess.restype = wintypes.HANDLE
SIZE_T = ctypes.c_size_t
class PROCESS_MEMORY_COUNTERS_EX(ctypes.Structure):
_fields_ = [
('cb', wintypes.DWORD),
('PageFaultCount', wintypes.DWORD),
('PeakWorkingSetSize', SIZE_T),
('WorkingSetSize', SIZE_T),
('QuotaPeakPagedPoolUsage', SIZE_T),
('QuotaPagedPoolUsage', SIZE_T),
('QuotaPeakNonPagedPoolUsage', SIZE_T),
('QuotaNonPagedPoolUsage', SIZE_T),
('PagefileUsage', SIZE_T),
('PeakPagefileUsage', SIZE_T),
('PrivateUsage', SIZE_T),
]
GetProcessMemoryInfo = ctypes.windll.psapi.GetProcessMemoryInfo
GetProcessMemoryInfo.argtypes = [
wintypes.HANDLE,
ctypes.POINTER(PROCESS_MEMORY_COUNTERS_EX),
wintypes.DWORD,
]
GetProcessMemoryInfo.restype = wintypes.BOOL
def get_current_process():
"""Return handle to current process."""
return GetCurrentProcess()
def get_memory_info(process=None):
"""Return Win32 process memory counters structure as a dict."""
if process is None:
process = get_current_process()
counters = PROCESS_MEMORY_COUNTERS_EX()
ret = GetProcessMemoryInfo(process, ctypes.byref(counters),
ctypes.sizeof(counters))
if not ret:
raise ctypes.WinError()
info = dict((name, getattr(counters, name))
for name, _ in counters._fields_)
return info
def get_mem_use(units='MB'):
"""
returns the total memory use of the current python process
:param units='MB': the units you want the reslut in. Options are:
'GB', 'MB', 'KB'
"""
info = get_memory_info()
return info['PrivateUsage'] / float(div[units])
else: # for posix systems only tested on OS-X for now
def get_mem_use(units='MB'):
"""
returns the total memory use of the current python process
:param units='MB': the units you want the reslut in. Options are:
'GB', 'MB', 'KB'
"""
import resource
#useage = resource.getrusage(resource.RUSAGE_SELF).ru_maxrss
div = {'GB': 1024*1024*1024,
'MB': 1024*1024,
'KB': 1024,
}
return resource.getrusage(resource.RUSAGE_SELF).ru_maxrss / float(div[units])