31

我刚刚编写了以下 C++ 函数来以编程方式确定系统安装了多少 RAM。它有效,但在我看来,应该有一种更简单的方法来做到这一点。我错过了什么吗?

getRAM()
{
    FILE* stream = popen("head -n1 /proc/meminfo", "r");
    std::ostringstream output;
    int bufsize = 128;

    while( !feof(stream) && !ferror(stream))
    {
        char buf[bufsize];
        int bytesRead = fread(buf, 1, bufsize, stream);
        output.write(buf, bytesRead);
    }
    std::string result = output.str();

    std::string label, ram;
    std::istringstream iss(result);
    iss >> label;
    iss >> ram;

    return ram;
}

首先,我popen("head -n1 /proc/meminfo")用来从系统中获取 meminfo 文件的第一行。该命令的输出看起来像

内存总量:775280 kB

一旦我在 中获得了该输出istringstream,就可以很容易地对其进行标记以获得我想要的信息。有没有更简单的方法来读取这个命令的输出?是否有一个标准的 C++ 库调用来读取系统 RAM 的数量?

4

4 回答 4

77

在 Linux 上,您可以使用sysinfo在以下结构中设置值的函数:

   #include <sys/sysinfo.h>

   int sysinfo(struct sysinfo *info);

   struct sysinfo {
       long uptime;             /* Seconds since boot */
       unsigned long loads[3];  /* 1, 5, and 15 minute load averages */
       unsigned long totalram;  /* Total usable main memory size */
       unsigned long freeram;   /* Available memory size */
       unsigned long sharedram; /* Amount of shared memory */
       unsigned long bufferram; /* Memory used by buffers */
       unsigned long totalswap; /* Total swap space size */
       unsigned long freeswap;  /* swap space still available */
       unsigned short procs;    /* Number of current processes */
       unsigned long totalhigh; /* Total high memory size */
       unsigned long freehigh;  /* Available high memory size */
       unsigned int mem_unit;   /* Memory unit size in bytes */
       char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding for libc5 */
   };

如果您只想使用 C++ 的函数来完成它(我会坚持使用sysinfo),我建议您使用 C++ 方法使用std::ifstreamand std::string

unsigned long get_mem_total() {
    std::string token;
    std::ifstream file("/proc/meminfo");
    while(file >> token) {
        if(token == "MemTotal:") {
            unsigned long mem;
            if(file >> mem) {
                return mem;
            } else {
                return 0;
            }
        }
        // Ignore the rest of the line
        file.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
    }
    return 0; // Nothing found
}
于 2008-12-08T16:18:40.773 回答
4

没有任何需要使用popen(). 您可以自己阅读文件。

此外,如果他们的第一行不是您要查找的内容,您将失败,因为head -n1只读取第一行然后退出。我不确定你为什么要像这样混合 C 和 C++ I/O;完全没问题,但您可能应该选择全部使用 C 或全部 C++。我可能会这样做:

int GetRamInKB(void)
{
    FILE *meminfo = fopen("/proc/meminfo", "r");
    if(meminfo == NULL)
        ... // handle error

    char line[256];
    while(fgets(line, sizeof(line), meminfo))
    {
        int ram;
        if(sscanf(line, "MemTotal: %d kB", &ram) == 1)
        {
            fclose(meminfo);
            return ram;
        }
    }

    // If we got here, then we couldn't find the proper line in the meminfo file:
    // do something appropriate like return an error code, throw an exception, etc.
    fclose(meminfo);
    return -1;
}
于 2008-12-08T16:17:15.397 回答
3

请记住/proc/meminfo只是一个文件。打开文件,读取第一行,然后关闭文件。瞧!

于 2008-12-08T17:20:50.087 回答
1

甚至top(从procps)解析/proc/meminfo。见这里

于 2008-12-08T16:03:20.133 回答