ITK
6.0.0
Insight Toolkit
|
#include <itkSmapsFileParser.h>
Read a smap file (typically located in /proc/PID/smaps) and extract the memory usage information. Any smaps data reader can be used in template as long as they implement a operator>>(istream&) and have GetXXXUsage() methods.
Definition at line 291 of file itkSmapsFileParser.h.
Public Member Functions | |
virtual void | ReadFile (const std::string &mapFileLocation="") |
virtual | ~SmapsFileParser ()=default |
Public Member Functions inherited from itk::MapFileParser< TSmapsDataType > | |
MemoryLoadType | GetHeapUsage () |
MemoryLoadType | GetMemoryUsage (const char *filter, const char *token="Size") |
MemoryLoadType | GetStackUsage () |
MemoryLoadType | GetTotalMemoryUsage () |
virtual void | ReadFile (const std::string &mapFileLocation="")=0 |
bool | Update () |
virtual | ~MapFileParser ()=default |
Additional Inherited Members | |
Public Types inherited from itk::MapFileParser< TSmapsDataType > | |
using | MemoryLoadType = typename TMapData::MemoryLoadType |
Protected Attributes inherited from itk::MapFileParser< TSmapsDataType > | |
TSmapsDataType | m_MapData |
std::string | m_MapFilePath |
|
virtualdefault |
|
virtual |
Load and parse the smaps file pointed by smapsFileLocation. If smapsFileLocation is empty, load the file located at "/proc/" + PID + "/smaps" Throw an exception is the file can't be opened.
Implements itk::MapFileParser< TSmapsDataType >.