码迷,mamicode.com
首页 > 其他好文 > 详细

编程之美 之 让CPU占用率听你指挥

时间:2017-07-16 20:25:20      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:i++   ntp   核心   include   刷新   span   tick   曲线   任务管理   

昨天在bbs上淘到了这本编程之美。顺手刷了第一章,很有意思。第一章的要求是要控制CPU曲线,绘制出对应的形状。
拿到这个问题,我的第一反应是, 是不是有这么一个API,能在任务管理器上的对应区域直接绘制图形呢? 然后就去查找API, 可惜搜索能力不行,最终还是没有找到。
然后看书上的解释, 太棒了。


解决这道题目的核心是。 CPU占用率的概念,应该是指 CPU忙的时间与总时间的比,他是一个平均值的概念。也就是说。通过控制CPU忙闲时间的比值,我们能够大致控制CPU的占用率。


通过这个思想能够 控制CPU绘制各种我们想要的图形 >_<

方波
技术分享
sin波
技术分享
直线
技术分享

源代码例如以下:

// ==================【控制cpu曲线】=================
// @ author         :       zhyh2010
// @ date           :       20150609
// @ version        :       1.0
// @ description    :       核心: 在任务管理器的一个刷新周期内
//                      CPU 忙的时间 和 刷新时间的比率就是 CPU 的占用率
//                      CPU 显示的实际仅仅是一个平均值
// ================【end of 控制cpu曲线】===============

#include <stdlib.h>
#include <stdio.h>
#include <windows.h>
#include <math.h>

// void busy1()
// {
//  for (int i = 0; i != 10; i++)
//  {
//      system("start calc");
//  }
//  system("taskkill /f /im calc.exe");
//  printf("busy\n");
// }

void DrawSin()
{
    system("title sin");
    const float PI = 3.1415926535;
    const int count = 360;
    const int GAP = 1;
    const DWORD totalTime = 200;

    float x = 0;
    float ratio[count] = { 0 };
    for (int i = 0; i != count; i++, x += GAP)
        ratio[i] = 0.5 * sin(PI * x / 180.0);

    for (int i = 0; TRUE; i = (i + 1) % count)
    {
        DWORD startTime = GetTickCount();
        while (GetTickCount() - startTime < (0.5 + ratio[i]) * totalTime);
        Sleep((0.5 - ratio[i]) * totalTime);
    }

}

void DrawLinear(float ratio = 0.9)
{
    system("title drawline");
    const DWORD totalTime = 200;    
    while (true)
    {
        DWORD startTime = GetTickCount();
        while (GetTickCount() - startTime < ratio * totalTime);
        Sleep((1 - ratio) * totalTime);
    }   
}

void DrawSquareWave(float max = 0.9, float min = 0.1)
{
    system("title squareWave");
    const DWORD totalTime = 200;
    const int count = 300;

    for (int i = 0; TRUE; i = (i + 1) % count)
    {
        float ratio = (i > count / 2) ? max : min;

        DWORD startTime = GetTickCount();
        while (GetTickCount() - startTime < ratio * totalTime);
        Sleep((1 - ratio) * totalTime);
    }
}

void main()
{
    // ===============【设置进程所在cpu】=================
    SetProcessAffinityMask(GetCurrentProcess(), 1);
    DrawLinear();
    //DrawSin();
    //DrawSquareWave();
}

參考文章
编程之美:让CPU占用率曲线听你指挥

编程之美 之 让CPU占用率听你指挥

标签:i++   ntp   核心   include   刷新   span   tick   曲线   任务管理   

原文地址:http://www.cnblogs.com/gavanwanggw/p/7191403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!