Go to the documentation of this file.
59 peak_ = size_ = rss_ = 0;
80 std::ifstream is(
"/proc/" + std::to_string(
Foam::pid()) +
"/status");
85 nkeys && is.good() && std::getline(is, line);
89 const auto delim = line.find(
':');
90 if (delim == std::string::npos)
95 const std::string key(line.substr(0, delim));
103 peak_ = std::stoi(line.substr(delim+1));
106 else if (key ==
"VmSize")
108 size_ = std::stoi(line.substr(delim+1));
111 else if (key ==
"VmRSS")
113 rss_ = std::stoi(line.substr(delim+1));
128 std::ifstream is(
"/proc/meminfo");
133 nkeys && is.good() && std::getline(is, line);
137 const auto delim = line.find(
':');
138 if (delim == std::string::npos)
143 const std::string key = line.substr(0, delim);
149 if (key ==
"MemFree")
151 free_ = std::stoi(line.substr(delim+1));
163 os.writeEntry(
"size", size_);
164 os.writeEntry(
"peak", peak_);
165 os.writeEntry(
"rss", rss_);
166 os.writeEntry(
"free", free_);
175 is >> m.peak_ >> m.size_ >> m.rss_ >> m.free_;
176 is.readEnd(
"memInfo");
bool valid() const
True if the memory information appears valid.
memInfo()
Construct and populate with values.
Functions used by OpenFOAM that are specific to POSIX compliant operating systems and need to be repl...
Useful combination of include files which define Sin, Sout and Serr and the use of IO streams general...
Istream & operator>>(Istream &, directionInfo &)
bool readBegin(const char *funcName)
Begin read of data chunk, starts with '('.
Ostream & operator<<(Ostream &, const boundaryPatch &p)
Write boundaryPatch as dictionary entries (without surrounding braces)
const memInfo & update()
Update according to /proc/PID/status and /proc/memory contents.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
pid_t pid()
Return the PID of this process.
Memory usage information for the current process, and the system memory that is free.
void clear()
Reset to zero.
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Begin list [isseparator].
void write(Ostream &os) const
Write content as dictionary entries.