gpt4 book ai didi

windows - 用Linux和Mac代码完成这3种方法,Memory Info平台独立类

转载 作者:太空宇宙 更新时间:2023-11-04 04:26:20 25 4
gpt4 key购买 nike

看看这个 worker 类(Class)。

我在Qt中为我的项目创建了这个类,因为Qt没有自己的方法来获取有关内存的信息,例如:当前进程内存、可用内存或总内存。

该类适配Qt,但可以轻松适配纯C或其他api它需要链接“psapi.lib”或-lpsapi

问题是我需要用 Linux 和 Mac 代码完成这门课,我认为有许多经验丰富的程序员可以用正确且有效的代码来填充它......

头文件*.h

#ifndef __CLASS__MEMORYINFO__
#define __CLASS__MEMORYINFO__

#include <QtCore>

#ifdef WIN32
#include <Windows.h>
#endif

class class_MemoryInfo
{
public:
class_MemoryInfo( void );

qlonglong GetFreeMemory( void );
qlonglong GetTotalMemory( void );
qlonglong GetCurrentProcesMemory( void );
};

#endif

和 *.cpp 文件

#include "class_MemoryInfo.h"

#ifdef WIN32
#include <Psapi.h>
#endif

class_MemoryInfo::class_MemoryInfo()
{
}

qlonglong class_MemoryInfo::GetFreeMemory( void )
{
qlonglong _value = 0;

#ifdef WIN32
MEMORYSTATUSEX MemoryStatus;
ZeroMemory( &MemoryStatus, sizeof( MEMORYSTATUSEX ) );
MemoryStatus.dwLength = sizeof( MEMORYSTATUSEX );

if ( GlobalMemoryStatusEx( &MemoryStatus) )
{
_value = MemoryStatus.ullAvailPhys;
}
else
_value = 0;
#endif

return _value;
}

qlonglong class_MemoryInfo::GetTotalMemory( void )
{
qlonglong _value = 0;

#ifdef WIN32
MEMORYSTATUSEX MemoryStatus;
ZeroMemory( &MemoryStatus, sizeof(MEMORYSTATUSEX ));
MemoryStatus.dwLength = sizeof( MEMORYSTATUSEX );

if ( GlobalMemoryStatusEx( &MemoryStatus) )
{
_value = MemoryStatus.ullTotalPhys;
}
else
_value = 0;
#endif

return _value;
}

qlonglong class_MemoryInfo::GetCurrentProcesMemory( void )
{
qlonglong _value = 0;

#ifdef WIN32
PROCESS_MEMORY_COUNTERS pmc;
if ( GetProcessMemoryInfo( GetCurrentProcess(), &pmc, sizeof(pmc)) )
_value = pmc.WorkingSetSize;
else
_value = 0;
#endif

return _value;
}

最佳答案

好吧,我不会完全为您编写直接等效的内容,但这里至少是总内存的基本轮廓。这也应该适用于可用内存,但我认为您可能必须在其他地方寻找进程内存。

苹果电脑

使用sysctlman sysctl 查看所有选项。

QProcess p;
p.start("sysctl", QStringList() << "hw.physmem");
p.waitForFinished();
QString system_info = p.readAllStandardOutput();
p.close();

Linux

读取/proc/meminfo。打开该文件以查看所有选项。

// The actual command is "awk '/MemTotal/ { print $2 }' /proc/meminfo", but
// QProcess has trouble with the single quotes. Putting it as a separate
// argument (without the quotes) seems to work.
p.start("awk", QStringList() << "/MemTotal/ { print $2 }" << "/proc/meminfo");
p.waitForFinished();
QString memory = p.readAllStandardOutput();
p.close();

关于windows - 用Linux和Mac代码完成这3种方法,Memory Info平台独立类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8565430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com