// ----------------------------------------------------------------------
// File: LinuxTotalMem.hh
// Author: Andreas-Joachim Peters - CERN
// ----------------------------------------------------------------------
/************************************************************************
* EOS - the CERN Disk Storage System *
* Copyright (C) 2018 CERN/ASwitzerland *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see .*
************************************************************************/
/**
* @file LinuxTotalMem.hh
*
* @brief Class providing total memory information
*
*/
#ifndef __EOSCOMMON__LINUXTOTALMEM__HH
#define __EOSCOMMON__LINUXTOTALMEM__HH
#include "common/Namespace.hh"
#ifdef __APPLE__
#include
#include
#else
#include
#endif
#include
EOSCOMMONNAMESPACE_BEGIN
/*----------------------------------------------------------------------------*/
//! Static Class to retrieve total memory values
//!
//! Example: linux_total_mem_t mem; GetTotalMemory(mem);
//!
/*----------------------------------------------------------------------------*/
class LinuxTotalMem
{
public:
#ifdef __APPLE__
struct linux_total_mem_t {
uint64_t totalram;
uint64_t freeram;
uint64_t loads[3];
};
#else
typedef struct sysinfo linux_total_mem_t;
#endif
LinuxTotalMem()
{
update();
}
bool update()
{
std::lock_guard lock(locker);
#ifdef __APPLE__
int mib[2];
// Get load average
struct loadavg la;
mib[0] = CTL_VM;
mib[1] = VM_LOADAVG;
size_t length = sizeof(la);
if (sysctl(mib, 2, &la, &length, nullptr, 0) != 0) {
return false;
}
meminfo.loads[0] = la.ldavg[0];
// Get physical memory size
mib[0] = CTL_HW;
mib[1] = HW_PHYSMEM;
uint64_t physical_mem {0ull};
length = sizeof(physical_mem);
if (sysctl(mib, 2, &physical_mem, &length, nullptr, 0) != 0) {
return false;
}
meminfo.totalram = physical_mem;
// No clear correspondent for this
meminfo.freeram = physical_mem;
return true;
#else
if (!sysinfo((struct sysinfo*) &meminfo)) {
return true;
} else {
return false;
}
#endif
}
linux_total_mem_t get()
{
std::lock_guard lock(locker);
return meminfo;
}
std::mutex& mutex()
{
return locker;
}
linux_total_mem_t& getref()
{
return meminfo;
}
private:
linux_total_mem_t meminfo;
std::mutex locker;
};
EOSCOMMONNAMESPACE_END
#endif