c++获取mac 下总物理内存、所使用内存、当前进程所使用内存

cpp 复制代码
#include <iostream>
#include <chrono>
#include <thread>
#include <mach/mach.h>
#include <sys/types.h>
#include <sys/sysctl.h>​
#include <sys/vmmeter.h>
#include <mach/mach.h>
#include <mach/mach_init.h>
#include <mach/mach_host.h>
#include <mach/mach_port.h>
#include <mach/mach_traps.h>
#include <mach/task_info.h>
#include <mach/thread_info.h>
#include <mach/thread_act.h>
#include <mach/vm_region.h>
#include <mach/vm_map.h>
#include <mach/task.h>
#include <mach/shared_region.h>
#include <unistd.h>

using namespace std;

enum BYTE_UNITS
{
    BYTES = 0,
    KILOBYTES = 1,
    MEGABYTES = 2,
    GIGABYTES = 3
};

template <class T>
T convert_unit(T num, int to, int from = BYTES)
{
    for (; from < to; from++)
    {
        num /= 1024;
    }
    return num;
}

// 获取mac系统下总物理内存、所使用内存
void getMemUsePercentage()
{
    u_int64_t total_mem = 0;
    float used_mem = 0;

    vm_size_t page_size;
    vm_statistics_data_t vm_stats;

    // Get total physical memory
    int mib[] = { CTL_HW, HW_MEMSIZE };
    size_t length = sizeof(total_mem);
    sysctl(mib, 2, &total_mem, &length, NULL, 0);

    mach_port_t mach_port = mach_host_self();
    mach_msg_type_number_t count = sizeof(vm_stats) / sizeof(natural_t);
    if (KERN_SUCCESS == host_page_size(mach_port, &page_size) &&
        KERN_SUCCESS == host_statistics(mach_port, HOST_VM_INFO,
            (host_info_t)&vm_stats, &count)
        )
    {
        used_mem = static_cast<float>(
            (vm_stats.active_count + vm_stats.wire_count) * page_size);
    }

    uint usedMem = convert_unit(static_cast<float>(used_mem), MEGABYTES);
    uint totalMem = convert_unit(static_cast<float>(total_mem), MEGABYTES);
    cout << "\nusedMem:" << usedMem << endl;
    cout << "totalMem:" << totalMem << endl;
}

// 获取mac系统下当前进程使用内存
int runGetDynamicProcInfo(unsigned int& m_nMemUsed)
{
    unsigned int task = 0;
    int error = 0;
    unsigned int count = 0;
    struct task_basic_info ti;

    error = task_for_pid(mach_task_self(), getpid(), &task);
    if (error != KERN_SUCCESS)
    {
        m_nMemUsed = 0;
        return 0;
    }
    count = TASK_BASIC_INFO_COUNT;
    error = task_info(task, TASK_BASIC_INFO, (task_info_t)&ti, &count);
    if (error != KERN_SUCCESS)
    {
        m_nMemUsed = 0;
        return 0;
    }

    vm_region_basic_info_data_64_t b_info;
    unsigned long address = SHARED_REGION_BASE_PPC;
    unsigned long size = 0;
    unsigned int object_name = 0;
    count = VM_REGION_BASIC_INFO_COUNT_64;
    error = vm_region_64(task, &address, &size, VM_REGION_BASIC_INFO, (vm_region_info_t)&b_info, &count, &object_name);
    if (error == KERN_SUCCESS) 
    {
        if (b_info.reserved && size == (SHARED_REGION_NESTING_SIZE_PPC) &&
            ti.virtual_size > (SHARED_REGION_NESTING_SIZE_PPC + SHARED_REGION_NESTING_MIN_PPC))
        {
            ti.virtual_size -= (SHARED_REGION_NESTING_SIZE_PPC + SHARED_REGION_NESTING_MIN_PPC);
        }
    }
    m_nMemUsed = (ti.resident_size / 1024 / 1024);
    std::cout << "m_nMemUsed:" << m_nMemUsed << std::endl;
    return 0;
}

int main()
{
    unsigned int m_usfmem = 0;

    while (1)
    {
        runGetDynamicProcInfo(m_usfmem);
        getMemUsePercentage();
        std::this_thread::sleep_for(std::chrono::seconds(1));
    }

    return 0;
}​
相关推荐
Dreams_l32 分钟前
redis中的数据类型
java·开发语言
梵得儿SHI33 分钟前
Java IO 流详解:字符流(Reader/Writer)与字符编码那些事
java·开发语言·字符编码·工作原理·字符流·处理文本
太过平凡的小蚂蚁1 小时前
Kotlin 协程中常见的异步返回与控制方式(速览)
开发语言·前端·kotlin
007php0071 小时前
京东面试题解析:同步方法、线程池、Spring、Dubbo、消息队列、Redis等
开发语言·后端·百度·面试·职场和发展·架构·1024程序员节
想唱rap1 小时前
C++ list 类的使用
c语言·开发语言·数据结构·c++·笔记·算法·list
景彡先生1 小时前
Python函数定义与调用全解析:从基础语法到实战技巧
linux·开发语言·python
yuyanjingtao1 小时前
CCF-GESP 等级考试 2024年9月认证C++四级真题解析
c++·算法·青少年编程·gesp·csp-j/s
光头闪亮亮1 小时前
curl库应用-c++客户端示例及golang服务端应用示例
c++·go
Lei_3359672 小时前
[算法]背包DP(01背包、完全背包问题、多重背包、分组背包、混合背包问题、有依赖的背包问题等)
c++·算法
lingchen19062 小时前
MATLAB图形绘制基础(一)二维图形
开发语言·算法·matlab