一个项目需要,特地写了这些功能的函数。
process_stat.h的内容如下:
/** @file
* @brief 进程统计信息函数的声明
* @author 张亚霏
* @date 2009/05/03
* @version 0.1
*
*/
#ifndef PROCESS_STAT_H
#define PROCESS_STAT_H
#ifdef __cplusplus
extern "C" {
#endif
typedef long long int64_t;
typedef unsigned long long uint64_t;
/// 获取当前进程的cpu使用率,返回-1失败
int get_cpu_usage();
/// 获取当前进程内存和虚拟内存使用量,返回-1失败,0成功
int get_memory_usage(uint64_t* mem, uint64_t* vmem);
/// 获取当前进程总共读和写的IO字节数,返回-1失败,0成功
int get_io_bytes(uint64_t* read_bytes, uint64_t* write_bytes);
#ifdef __cplusplus
}
#endif
#endif/*PROCESS_STAT_H*/
process_stat_win.c的内容如下:
/** @file
* @brief 进程统计信息函数的实现
* @author 张亚霏
* @date 2009/05/03
* @version 0.1
*
* 部分代码来自MSDN的例子
* 部分代码来自google chromium项目
*
* 需要连接到psapi.lib
*/
#include <windows.h>
#include <psapi.h>
#include <assert.h>
#include "process_stat.h"
/// 时间转换
static uint64_t file_time_2_utc(const FILETIME* ftime)
{
LARGE_INTEGER li;
assert(ftime);
li.LowPart = ftime->dwLowDateTime;
li.HighPart = ftime->dwHighDateTime;
return li.QuadPart;
}
/// 获得CPU的核数
static int get_processor_number()
{
SYSTEM_INFO info;
GetSystemInfo(&info);
return (int)info.dwNumberOfProcessors;
}
int get_cpu_usage()
{
//cpu数量
static int processor_count_ = -1;
//上一次的时间
static int64_t last_time_ = 0;
static int64_t last_system_time_ = 0;
FILETIME now;
FILETIME creation_time;
FILETIME exit_time;
FILETIME kernel_time;
FILETIME user_time;
int64_t system_time;
int64_t time;
int64_t system_time_delta;
int64_t time_delta;
int cpu = -1;
if(processor_count_ == -1)
{
processor_count_ = get_processor_number();
}
GetSystemTimeAsFileTime(&now);
if (!GetProcessTimes(GetCurrentProcess(), &creation_time, &exit_time,
&kernel_time, &user_time))
{
// We don't assert here because in some cases (such as in the Task
Manager)
// we may call this function on a process that has just exited but
we have
// not yet received the notification.
return -1;
}
system_time = (file_time_2_utc(&kernel_time) + file_time_2_utc(&user_time))
/
processor_count_;
time = file_time_2_utc(&now);
if ((last_system_time_ == 0) || (last_time_ == 0))
{
// First call, just set the last values.
last_system_time_ = system_time;
last_time_ = time;
return -1;
}
system_time_delta = system_time - last_system_time_;
time_delta = time - last_time_;
assert(time_delta != 0);
if (time_delta == 0)
return -1;
// We add time_delta / 2 so the result is rounded.
cpu = (int)((system_time_delta * 100 + time_delta / 2) / time_delta);
last_system_time_ = system_time;
last_time_ = time;
return cpu;
}
int get_memory_usage(uint64_t* mem, uint64_t* vmem)
{
PROCESS_MEMORY_COUNTERS pmc;
if(GetProcessMemoryInfo(GetCurrentProcess(), &pmc, sizeof(pmc)))
{
if(mem) *mem = pmc.WorkingSetSize;
if(vmem) *vmem = pmc.PagefileUsage;
return 0;
}
return -1;
}
int get_io_bytes(uint64_t* read_bytes, uint64_t* write_bytes)
{
IO_COUNTERS io_counter;
if(GetProcessIoCounters(GetCurrentProcess(), &io_counter))
{
if(read_bytes) *read_bytes = io_counter.ReadTransferCount;
if(write_bytes) *write_bytes = io_counter.WriteTransferCount;
return 0;
}
return -1;
}
可以这样使用:
/** @file
* @brief 进程统计信息函数的测试
* @author 张亚霏
* @date 2009/05/03
* @version 0.1
*
*/
#include "process_stat.h"
#include <stdio.h>
#include <Windows.h>
int main()
{
while(1)
{
int cpu;
uint64_t mem, vmem, r, w;
cpu = get_cpu_usage();
get_memory_usage(&mem, &vmem);
get_io_bytes(&r, &w);
printf("CPU使用率: %u\n",cpu);
printf("内存使用: %u 字节\n", mem);
printf("虚拟内存使用: %u 字节\n", vmem);
printf("总共读: %u 字节\n", r);
printf("总共写: %u 字节\n", w);
Sleep(1000);
}
return 0;
}
分享到:
相关推荐
在Windows操作系统中,使用C语言获取进程的CPU使用率、内存使用情况以及I/O状态是一项基本的任务,这对于系统监控、性能分析以及优化程序性能都至关重要。以下是对这些知识点的详细解释: 1. **CPU使用率**: CPU...
以上就是使用Psapi库在Windows下用C语言获取进程CPU使用率和内存使用情况的详细步骤。通过深入理解和实践这些知识点,开发者可以更好地监控和管理自己的应用程序,优化性能,以及解决与资源使用相关的各种问题。
在Linux操作系统中,CPU...通过学习和理解`cpu.c`源码,不仅可以掌握如何在Linux下获取CPU使用率,还能深入理解Linux系统调用、文件I/O以及进程/线程管理等核心概念。这将对提升Linux系统管理和软件开发能力大有裨益。
本项目名为"linux_test.zip",其中包含了利用C语言编写的一个程序,用于实现CPU使用率的检测,特别是关注整体(total)的CPU使用率,而非单独的用户或系统使用率。该程序运用了定时器功能,每30秒执行一次信息采集,...
本文将详细解析一个用于实时获取CPU使用率的C语言类,该类通过读取`/proc/stat`文件来计算CPU利用率,并提供了一个简洁的接口供外部程序调用。 #### 核心功能 1. **初始化与读取CPU状态**:首次调用时,初始化CPU...
Redis面试题70道 Redis是使用C语言写成的,开源的高性能key-value非关系缓存数据库。它支持存储的value类型相对更多,包括string...缓存 将热点数据放到内存中,设置内存的最大使用量以及淘汰策略来保证缓存的命中率。
通过"pi-reporter",用户可以实时了解树莓派的运行状态,例如CPU使用率、内存占用、磁盘读写速度、网络流量等关键指标。 在技术实现上,"pi-reporter" 使用了Go语言编写。Go语言,又称为Golang,是Google开发的一种...
15. Servlet引擎通常为每个客户请求创建一个线程而不是进程,以提高服务器性能和资源利用率。 16. E-mail地址的用户名部分称为usename,@后面的部分是主机域名。 17. DELETE触发器设置为.F.,则不允许对表进行删除...