iOS 实时获取当前应用消耗的CPU和内存

2024-06-13 06:18

本文主要是介绍iOS 实时获取当前应用消耗的CPU和内存,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

https://www.cnblogs.com/mobilefeng/p/4977783.html
这一遍文章对获取app 消耗的CPU和内存问题的多种方案做了对比,没有实际去测试。

1 获取应用消耗的CPU

float cpu_usage()
{kern_return_t kr;task_info_data_t tinfo;mach_msg_type_number_t task_info_count;task_info_count = TASK_INFO_MAX;kr = task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t)tinfo, &task_info_count);if (kr != KERN_SUCCESS) {return -1;}task_basic_info_t      basic_info;thread_array_t         thread_list;mach_msg_type_number_t thread_count;thread_info_data_t     thinfo;mach_msg_type_number_t thread_info_count;thread_basic_info_t basic_info_th;uint32_t stat_thread = 0; // Mach threadsbasic_info = (task_basic_info_t)tinfo;// get threads in the taskkr = task_threads(mach_task_self(), &thread_list, &thread_count);if (kr != KERN_SUCCESS) {return -1;}if (thread_count > 0)stat_thread += thread_count;long tot_sec = 0;long tot_usec = 0;float tot_cpu = 0;int j;for (j = 0; j < thread_count; j++){thread_info_count = THREAD_INFO_MAX;kr = thread_info(thread_list[j], THREAD_BASIC_INFO,(thread_info_t)thinfo, &thread_info_count);if (kr != KERN_SUCCESS) {return -1;}basic_info_th = (thread_basic_info_t)thinfo;if (!(basic_info_th->flags & TH_FLAGS_IDLE)) {tot_sec = tot_sec + basic_info_th->user_time.seconds + basic_info_th->system_time.seconds;tot_usec = tot_usec + basic_info_th->user_time.microseconds + basic_info_th->system_time.microseconds;tot_cpu = tot_cpu + basic_info_th->cpu_usage / (float)TH_USAGE_SCALE * 100.0;}} // for each threadkr = vm_deallocate(mach_task_self(), (vm_offset_t)thread_list, thread_count * sizeof(thread_t));assert(kr == KERN_SUCCESS);return tot_cpu;
}

对于该方法获取的CPU消耗情况与Xcode 实时监控的CPU消耗情况基本一致。

2. 获取应用消耗的内存

该方法计算出来的内存消耗情况,与Xcode 统计的消耗情况相差太大(参考性不太大)。

还是贴出来:

// 有的是除以1024,有的是除以1000。
+ (float)memoryUsage
{vm_size_t memory = memory_usage();return memory / 1000.0 /1000.0;
}vm_size_t memory_usage(void) {struct task_basic_info info;mach_msg_type_number_t size = sizeof(info);kern_return_t kerr = task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t)&info, &size);return (kerr == KERN_SUCCESS) ? info.resident_size : 0; // size in bytes
}

然后写一个单例类,添加一个定时器,隔一段时间调用一下该方法获取当前的内存和CPU消耗情况,同时写入本地文件中,以便后期分析。

简单写了一下,实现如下:

#import "HLMonitor.h"
#import <mach/mach.h>
#import <sys/time.h>static HLMonitor *instance = nil;@interface HLMonitor ()@property (nonatomic, assign) NSTimeInterval  timeInterval;@end@implementation HLMonitor+ (instancetype)sharedInstance
{return [[[self class] alloc] init];
}- (instancetype)init
{static dispatch_once_t onceToken;dispatch_once(&onceToken, ^{instance = [super init];});return instance;
}+ (instancetype)allocWithZone:(struct _NSZone *)zone
{static dispatch_once_t onceToken;dispatch_once(&onceToken, ^{instance = [super allocWithZone:zone];});return instance;
}- (void)startMonitorWithTimeInterval:(NSTimeInterval)timeInterval
{if (timeInterval <= 0) {timeInterval = 1.0;}self.timeInterval = timeInterval;NSString *filePath = [HLMonitor cpu_memoryLogPath];NSFileHandle *fileHandler = [NSFileHandle fileHandleForWritingAtPath:filePath];[fileHandler seekToEndOfFile];NSString *startLog = @"******************************开始统计cpu 和内存************************\n";[fileHandler writeData:[startLog dataUsingEncoding:NSUTF8StringEncoding]];[self saveMonitorLog];
}- (void)saveMonitorLog
{dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{float cpuUsage = [HLMonitor cpuUsage];float memoryUsage = [HLMonitor memoryUsage];struct tm* timeNow = [HLMonitor getCurTime];NSString *monitorLog = [NSString stringWithFormat:@"%d-%d-%d %d:%d:%d.%ld | cpu 使用率:%.2f ----内存使用:%f\n",timeNow->tm_year,timeNow->tm_mon,timeNow->tm_mday,timeNow->tm_hour,timeNow->tm_min,timeNow->tm_sec,timeNow->tm_gmtoff,cpuUsage,memoryUsage];NSLog(@"%@",monitorLog);NSString *filePath = [HLMonitor cpu_memoryLogPath];NSFileHandle *fileHandler = [NSFileHandle fileHandleForWritingAtPath:filePath];[fileHandler seekToEndOfFile];[fileHandler writeData:[monitorLog dataUsingEncoding:NSUTF8StringEncoding]];[self saveMonitorLog];});
}+ (NSString *)cpu_memoryLogPath
{struct tm* timeNow = [self getCurTime];NSArray* path = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);NSString *nFilePath = [path objectAtIndex:0];nFilePath = [nFilePath stringByAppendingPathComponent:@"CPUMemoryUsage"];if (![[NSFileManager defaultManager] fileExistsAtPath:nFilePath]) {[[NSFileManager defaultManager] createDirectoryAtPath:nFilePath withIntermediateDirectories:NO attributes:nil error:nil];}NSString *fileName = [NSString stringWithFormat:@"%d_%d_%d_CPU_Memory_Usage.log",timeNow->tm_year,timeNow->tm_mon,timeNow->tm_mday];nFilePath = [nFilePath stringByAppendingPathComponent:fileName];if (![[NSFileManager defaultManager] fileExistsAtPath:nFilePath]) {BOOL result = [[NSFileManager defaultManager] createFileAtPath:nFilePath contents:nil attributes:nil];NSLog(@"%d",result);}return nFilePath;
}+ (struct tm*)getCurTime
{//时间格式struct timeval ticks;gettimeofday(&ticks, nil);time_t now;struct tm* timeNow;time(&now);timeNow = localtime(&now);timeNow->tm_gmtoff = ticks.tv_usec/1000;  //毫秒timeNow->tm_year += 1900;    //tm中的tm_year是从1900至今数timeNow->tm_mon  += 1;       //tm_mon范围是0-11return timeNow;
}+ (float)cpuUsage
{float cpu = cpu_usage();return cpu;
}+ (float)memoryUsage
{vm_size_t memory = memory_usage();return memory / 1000.0 /1000.0;
}vm_size_t memory_usage(void) {struct task_basic_info info;mach_msg_type_number_t size = sizeof(info);kern_return_t kerr = task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t)&info, &size);return (kerr == KERN_SUCCESS) ? info.resident_size : 0; // size in bytes
}float cpu_usage()
{kern_return_t kr;task_info_data_t tinfo;mach_msg_type_number_t task_info_count;task_info_count = TASK_INFO_MAX;kr = task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t)tinfo, &task_info_count);if (kr != KERN_SUCCESS) {return -1;}task_basic_info_t      basic_info;thread_array_t         thread_list;mach_msg_type_number_t thread_count;thread_info_data_t     thinfo;mach_msg_type_number_t thread_info_count;thread_basic_info_t basic_info_th;uint32_t stat_thread = 0; // Mach threadsbasic_info = (task_basic_info_t)tinfo;// get threads in the taskkr = task_threads(mach_task_self(), &thread_list, &thread_count);if (kr != KERN_SUCCESS) {return -1;}if (thread_count > 0)stat_thread += thread_count;long tot_sec = 0;long tot_usec = 0;float tot_cpu = 0;int j;for (j = 0; j < thread_count; j++){thread_info_count = THREAD_INFO_MAX;kr = thread_info(thread_list[j], THREAD_BASIC_INFO,(thread_info_t)thinfo, &thread_info_count);if (kr != KERN_SUCCESS) {return -1;}basic_info_th = (thread_basic_info_t)thinfo;if (!(basic_info_th->flags & TH_FLAGS_IDLE)) {tot_sec = tot_sec + basic_info_th->user_time.seconds + basic_info_th->system_time.seconds;tot_usec = tot_usec + basic_info_th->user_time.microseconds + basic_info_th->system_time.microseconds;tot_cpu = tot_cpu + basic_info_th->cpu_usage / (float)TH_USAGE_SCALE * 100.0;}} // for each threadkr = vm_deallocate(mach_task_self(), (vm_offset_t)thread_list, thread_count * sizeof(thread_t));assert(kr == KERN_SUCCESS);return tot_cpu;
}@end

这篇关于iOS 实时获取当前应用消耗的CPU和内存的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1056501

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

NameNode内存生产配置

Hadoop2.x 系列,配置 NameNode 内存 NameNode 内存默认 2000m ,如果服务器内存 4G , NameNode 内存可以配置 3g 。在 hadoop-env.sh 文件中配置如下。 HADOOP_NAMENODE_OPTS=-Xmx3072m Hadoop3.x 系列,配置 Nam

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu1394(线段树点更新的应用)

题意:求一个序列经过一定的操作得到的序列的最小逆序数 这题会用到逆序数的一个性质,在0到n-1这些数字组成的乱序排列,将第一个数字A移到最后一位,得到的逆序数为res-a+(n-a-1) 知道上面的知识点后,可以用暴力来解 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#in

zoj3820(树的直径的应用)

题意:在一颗树上找两个点,使得所有点到选择与其更近的一个点的距离的最大值最小。 思路:如果是选择一个点的话,那么点就是直径的中点。现在考虑两个点的情况,先求树的直径,再把直径最中间的边去掉,再求剩下的两个子树中直径的中点。 代码如下: #include <stdio.h>#include <string.h>#include <algorithm>#include <map>#

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

【区块链 + 人才服务】可信教育区块链治理系统 | FISCO BCOS应用案例

伴随着区块链技术的不断完善,其在教育信息化中的应用也在持续发展。利用区块链数据共识、不可篡改的特性, 将与教育相关的数据要素在区块链上进行存证确权,在确保数据可信的前提下,促进教育的公平、透明、开放,为教育教学质量提升赋能,实现教育数据的安全共享、高等教育体系的智慧治理。 可信教育区块链治理系统的顶层治理架构由教育部、高校、企业、学生等多方角色共同参与建设、维护,支撑教育资源共享、教学质量评估、

AI行业应用(不定期更新)

ChatPDF 可以让你上传一个 PDF 文件,然后针对这个 PDF 进行小结和提问。你可以把各种各样你要研究的分析报告交给它,快速获取到想要知道的信息。https://www.chatpdf.com/