#include <vector>
#include "sys/config.h"
SYS_NAMESPACE_BEGIN /***
* 用来获取系统、内核和进程的各类实时信息,如CPU和内存数据
*/
class CInfo
{
public:
/***
* 系统当前实时信息
*/
typedef struct
{
long uptime_second; /* Seconds since boot */
unsigned long average_load[3]; /* 1, 5, and 15 minute load averages */
unsigned long ram_total; /* Total usable main memory size */
unsigned long ram_free; /* Available memory size */
unsigned long ram_shared; /* Amount of shared memory */
unsigned long ram_buffer; /* Memory used by buffers */
unsigned long swap_total; /* Total swap space size */
unsigned long swap_free; /* swap space still available */
unsigned short process_number; /* Number of current processes */
}sys_info_t; /***
* 当前进程时间信息
*/
typedef struct
{
long user_time; /* user time */
long system_time; /* system time */
long user_time_children; /* user time of children */
long system_time_children; /* system time of children */
}process_time_t; /***
* 当前系统CPU信息
*/
typedef struct
{
// 单位: jiffies, 1jiffies=0.01秒
uint64_t total;
uint32_t user; /** 从系统启动開始累计到当前时刻。处于用户态的执行时间,不包括 nice值为负进程 */
uint32_t nice; /** 从系统启动開始累计到当前时刻。nice值为负的进程所占用的CPU时间 */
uint32_t system; /** 从系统启动開始累计到当前时刻,处于核心态的执行时间 */
uint32_t idle; /** 从系统启动開始累计到当前时刻,除IO等待时间以外的其他等待时间 */
uint32_t iowait; /** 从系统启动開始累计到当前时刻。IO等待时间(2.5.41) */
uint32_t irq; /** 从系统启动開始累计到当前时刻,硬中断时间(2.6.0) */
uint32_t softirq; /** 从系统启动開始累计到当前时刻,软中断时间(2.6.0) */
//uint32_t stealstolen; /** which is the time spent in other operating systems when running in a virtualized environment(2.6.11) */
//uint32_t guest; /** which is the time spent running a virtual CPU for guest operating systems under the control of the Linux kernel(2.6.24) */
}cpu_info_t; /***
* 当前系统内存信息
*/
typedef struct
{
uint32_t mem_total;
uint32_t mem_free;
uint32_t buffers;
uint32_t cached;
uint32_t swap_cached;
uint32_t swap_total;
uint32_t swap_free;
}mem_info_t; /***
* 内核版本
*/
typedef struct
{
int16_t major; /** 主版本 */
int16_t minor; /** 次版本(假设次版本是偶数。那么内核是稳定版。若是奇数则是开发版) */
int16_t revision; /** 修订版本 */
}kernel_version_t; /***
* 当时进程状态信息
*
* 进程的状态值:
D Uninterruptible sleep (usually IO)
R Running or runnable (on run queue)
S Interruptible sleep (waiting for an event to complete)
T Stopped, either by a job control signal or because it is being traced.
W paging (not valid since the 2.6.xx kernel)
X dead (should never be seen)
Z Defunct ("zombie") process, terminated but not reaped by its parent.
*/
typedef struct
{
/** 01 */ pid_t pid; /** 进程号。其同意的最大值,请查看/proc/sys/kernel/pid_max */
/** 02 */ char comm[FILENAME_MAX]; /** 进程的名字,不包括路径 */
/** 03 */ char state; /** 进程的状态 */
/** 04 */ pid_t ppid; /** 父进程号 */
/** 05 */ pid_t pgrp; /** 进程组号 */
/** 06 */ pid_t session; /** 进程会话号 */
/** 07 */ int tty_nr; /** The tty the process uses */
/** 08 */ pid_t tpgid; /** The tty the process uses */
/** 09 */ unsigned int flags; /** The kernel flags word of the process (%lu before Linux 2.6.22) */
/** 10 */ unsigned long minflt; /** The number of minor faults the process has made which have not required loading a memory page from disk */
/** 11 */ unsigned long cminflt; /** The number of minor faults that the process's waited-for children have made */
/** 12 */ unsigned long majflt; /** The number of major faults the process has made which have required loading a memory page from disk */
/** 13 */ unsigned long cmajflt; /** The number of major faults that the process's waited-for children have made */
/** 14 */ unsigned long utime; /** The number of jiffies that this process has been scheduled in user mode */
/** 15 */ unsigned long stime; /** The number of jiffies that this process has been scheduled in kernel mode */
/** 16 */ long cutime; /** The number of jiffies that this process's waited-for children have been scheduled in user mode */
/** 17 */ long cstime; /** The number of jiffies that this process's waited-for children have been scheduled in kernel mode */
/** 18 */ long priority; /** The standard nice value, plus fifteen. The value is never negative in the kernel */
/** 19 */ long nice; /** The nice value ranges from 19 (nicest) to -19 (not nice to others) */
/** 20 */ long num_threads; /** Number of threads in this process (since Linux 2.6). Before kernel 2.6, this field was hard coded to 0 as a placeholder */
/** 21 */ long itrealvalue; /** The time in jiffies before the next SIGALRM is sent to the process due to an interval timer.2.6.17, this field is no longer maintained, and is hard coded as 0 */
/** 22 */ long long starttime; /** The time in jiffies the process started after system boot */
/** 23 */ unsigned long vsize; /** Virtual memory size in bytes */
/** 24 */ long rss; /** Resident Set Size: number of pages the process has in real memory, minus 3 for administrative purposes */
/** 25 */ unsigned long rlim; /** Current limit in bytes on the rss of the process (usually 4294967295 on i386) */
/** 26 */ unsigned long startcode; /** The address above which program text can run */
/** 27 */ unsigned long endcode; /** The address below which program text can run */
/** 28 */ unsigned long startstack; /** The address of the start of the stack */
/** 29 */ unsigned long kstkesp; /** The current value of esp (stack pointer), as found in the kernel stack page for the process */
/** 30 */ unsigned long kstkeip; /** The current EIP (instruction pointer) */
/** 31 */ unsigned long signal; /** The bitmap of pending signals */
/** 32 */ unsigned long blocked; /** The bitmap of blocked signals */
/** 33 */ unsigned long sigignore; /** The bitmap of ignored signals */
/** 34 */ unsigned long sigcatch; /** The bitmap of caught signals */
/** 35 */ unsigned long nswap; /** Number of pages swapped (not maintained). */
/** 36 */ unsigned long cnswap; /** Cumulative nswap for child processes (not maintained) */
/** 37 */ int exit_signal; /** Signal to be sent to parent when we die (since Linux 2.1.22) */
/** 38 */ int processor; /** CPU number last executed on (since Linux 2.2.8) */
}process_info_t; /***
* 网卡流量数据结构
*/
typedef struct
{
/** 01 */ char interface_name[INTERFACE_NAME_MAX]; /** 网卡名。如eth0 */ /** 接收数据 */
/** 02 */ unsigned long receive_bytes; /** 此网卡接收到的字节数 */
/** 03 */ unsigned long receive_packets;
/** 04 */ unsigned long receive_errors;
/** 05 */ unsigned long receive_dropped;
/** 06 */ unsigned long receive_fifo_errors;
/** 07 */ unsigned long receive_frame;
/** 08 */ unsigned long receive_compressed;
/** 09 */ unsigned long receive_multicast; /** 发送数据 */
/** 10 */ unsigned long transmit_bytes; /** 此网卡已发送的字节数 */
/** 11 */ unsigned long transmit_packets;
/** 12 */ unsigned long transmit_errors;
/** 13 */ unsigned long transmit_dropped;
/** 14 */ unsigned long transmit_fifo_errors;
/** 15 */ unsigned long transmit_collisions;
/** 16 */ unsigned long transmit_carrier;
/** 17 */ unsigned long transmit_compressed;
}net_info_t; /***
* 进程页信息结构
*/
typedef struct
{
long size; /** 程序大小 */
long resident; /** 常驻内存空间大小 */
long share; /** 共享内存页数 */
long text; /** 代码段占用内存页数 */
long lib; /** 数据/堆栈段占用内存页数 */
long data; /** 引用库占用内存页数 */
}process_page_info_t; public:
/** 获取系统信息。详细请參考sys_info_t的描写叙述 */
static bool get_sys_info(sys_info_t& sys_info); /** 获取内存信息,详细请參考mem_info_t的描写叙述 */
static bool get_mem_info(mem_info_t& mem_info); /** 获取总CPU信息。详细请參考cpu_info_t的描写叙述 */
static bool get_cpu_info(cpu_info_t& cpu_info); /** 获取全部CPU信息,详细请參考cpu_info_t的描写叙述 */
static int get_cpu_info_array(std::vector<cpu_info_t>& cpu_info_array); /** 得到内核版本 */
static bool get_kernel_version(kernel_version_t& kernel_version); /** 获取进程信息,详细请參考process_info_t的描写叙述 */
static bool get_process_info(process_info_t& process_info); /** 获取进程页信息。详细请參考process_page_info_t的描写叙述 */
static bool get_process_page_info(process_page_info_t& process_page_info); /** 获取进程执行时间数据,详细请參考process_time_t的描写叙述 */
static bool get_process_times(process_time_t& process_time); /***
* 获取网卡流量等信息
* 流量 = (当前获取的值 - 上一时间获取的值) / 两次间隔的时长
* @interface_name: 网卡名,如eth0等
* @net_info: 存储网卡流量等数据
*/
static bool get_net_info(const char* interface_name, net_info_t& net_info);
static bool get_net_info_array(std::vector<net_info_t>& net_info_array); private:
static bool do_get_net_info_array(const char* interface_name, std::vector<net_info_t>& net_info_array);
}; SYS_NAMESPACE_END

Linux下用来获取各种系统信息的C++类的更多相关文章

  1. Linux下用C获取当前时间

    Linux下用C获取当前时间,具体如下: 代码(可以把clock_gettime换成time(NULL)) ? 1 2 3 4 5 6 7 8 9 10 void getNowTime() {  ti ...

  2. linux下dmidecode命令获取硬件信息

    linux下dmidecode命令获取硬件信息 2 A+ 所属分类:Linux 运维工具 dmidecode在 Linux 系统下获取有关硬件方面的信息.dmidecode 遵循 SMBIOS/DMI ...

  3. 一个linux下简单的纯C++实现Http请求类(GET,POST,上传,下载)

    目录 一个linux下简单的纯C++实现Http请求类(GET,POST,上传,下载) Http协议简述 HttpRequest类设计 请求部分 接收部分 关于上传和下载 Cpp实现 关于源码中的Lo ...

  4. Linux下使用java获取cpu、内存使用率

    原文地址:http://www.voidcn.com/article/p-yehrvmep-uo.html 思路如下:Linux系统中可以用top命令查看进程使用CPU和内存情况,通过Runtime类 ...

  5. Linux下百度云盘报 获取bdstoken失败

    在用linux下百度云盘工具(bcloud),登录时,报获取bdstoken失败. 在网上搜了一下,解决办法如下. 找到auth.py文件 locate auth.py |grep bcloud 结果 ...

  6. 方法:Linux 下用JAVA获取CPU、内存、磁盘的系统资源信息

    CPU使用率: InputStream is = null; InputStreamReader isr = null; BufferedReader brStat = null; StringTok ...

  7. 有关Linux下request.getRealPath("/")获取路径的问题

    request.getRealPath("/") 在window获取的是服务器的根目录,结尾包含分隔符, 如E:\apache-tomcat-6.0.29-bak\apache-t ...

  8. Linux下onvif客户端获取ipc摄像头 GetServices:获取媒体地址(有的h265摄像头必须要这个接口)

    GetServices:获取媒体地址(有些h265的摄像头必须用到这个接口,得到获取能力时没获取到的另一个媒体地址) 鉴权:但是在使用这个接口之前是需要鉴权的.ONVIF协议规定,部分接口需要鉴权,部 ...

  9. Linux下onvif客户端获取h265 IPC摄像头的RTSP地址

    1. 设备搜索,去获取webserver 的地址 ,目的是在获取能力提供服务地址,demo:https://www.cnblogs.com/croxd/p/10683429.html 2. GetCa ...

随机推荐

  1. easyui源码翻译1.32--Dialog(对话框窗口)

    前言 扩展自$.fn.window.defaults.使用$.fn.dialog.defaults重写默认值对象.下载该插件翻译源码 该对话框是一种特殊类型的窗口,它在顶部有一个工具栏,在底部有一个按 ...

  2. 二维图形的矩阵变换(二)——WPF中的矩阵变换基础

    原文:二维图形的矩阵变换(二)--WPF中的矩阵变换基础 在前文二维图形的矩阵变换(一)——基本概念中已经介绍过二维图像矩阵变换的一些基础知识,本文中主要介绍一下如何在WPF中进行矩阵变换. Matr ...

  3. hihocoder #1290 : Demo Day (2016微软编程测试第三题)

    #1290 : Demo Day 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 You work as an intern at a robotics startup. ...

  4. msvc2010生成的指令序列有问题,可能跟pgo有关

    正常序列 有问题序列 这段代码程序启动是执行,会导致崩溃 工程使用ltcg pgo,也就是说,第一次编译连接完成后,会跑一次profile,再执行连接器代码生成优化. 构建记录显示,ltcg已跑完,说 ...

  5. 【C++】命令行Hangman #2015年12月15日 00:20:27

    增加了可以在构造Hangman对象时通过传入参数设定“最大猜测次数”的功能.少量修改.# 2015年12月15日 00:20:22 https://github.com/shalliestera/ha ...

  6. 宣布发布长期保留 Azure Backup功能

    Shreesh Dubey 云 + Enterprise首席项目经理 此前我们已宣布为DPM云备份提供长期保留功能.随着本月 Azure Backup 服务的发布,我们将此功能扩展到云备份目前支持 ...

  7. 基于WebForm+EasyUI的业务管理系统形成之旅 -- 施工计划安排(Ⅶ)

    上篇<基于WebForm+EasyUI的业务管理系统形成之旅 -- 首页Portal界面拖拽>,主要介绍首页随客户喜好安排区块位置,更好的实现用户体验. 这两天将项目中施工计划管理归纳总结 ...

  8. POJ 2240 Arbitrage spfa 判正环

    d[i]代表从起点出发可以获得最多的钱数,松弛是d[v]=r*d[u],求最长路,看有没有正环 然后这题输入有毒,千万别用cin 因为是大输入,组数比较多,然后找字符串用strcmp就好,千万不要用m ...

  9. spilt用法简介

    //获取墓位位置 string MWFLMC = "和平区祥和园D组A碑11排"; //得到字符数组 ]; //分割字符数组 sArray1 = MWFLMC.Split(] { ...

  10. Unity 打包后文件系统访问的一个小细节

    Android: 使用 File 类 来访文本文件系统不区分大小写:但是访问 jar 包内的文件是区分大小写的,比如使用 www类,都需要区分大小写. iOS: 使用 File 类 来访文本文件系统严 ...