linux下进度条的实现

目录

一、代码一版

1.processbar.h

2.processbar.c

3.main.c

二、代码二版

1.processbar.h

2.processbar.c

3.main.c

三、改变文字颜色


一、代码一版

使用模块化编程

1.processbar.h

复制代码
#include<stdio.h>
#define capacity 101 //常量使用宏定义
#define style '=' //符号方便后续修改
extern void processbar();

修饰变量的时候一定要带extern,修饰函数的时候可以省略,因为没有函数体就表明它一定是声明

2.processbar.c

复制代码
#include"processbar.h"
#include<string.h>
#include<unistd.h>
char* load ="|/-\\"; 
void processbar()
{
  char bar[capacity];
  memset(bar,'\0',sizeof(bar));
  int size = strlen(load);

  int cent = 0;
  while(cent <=99)
  {
   bar[cent++] = style;
   if(cent <= 99 )
   bar[cent] = '>';
   printf("[%-100s][%d%%][%c]\r",bar,cent,load[cent%size]);
   fflush(stdout);//没有\n就没法立即刷新,因为显示器模式是行刷新,因此手动刷新
   usleep(100000);//休眠xx微秒
  }
  printf("\n");
}

3.main.c

复制代码
int main()
{
  processbar();
  return 0;
}

效果图,当进度未达到100时,在进度条最右端会有>,同时会有加载效果 由数组

复制代码
char* load ="|/-\\";

进行实现

二、代码二版

processbar函数只负责打印,能更好地模拟下载过程

1.processbar.h

复制代码
#include<stdio.h>
#define capacity 101
#define style '='
extern void processbar();

2.processbar.c

复制代码
#include"processbar.h"
#include<string.h>
#include<unistd.h>
char* load ="|/-\\"; 
char bar[capacity];
void processbar(int cent)
{
  if(cent > 100 || cent < 0)return;
  int size = strlen(load);

   bar[cent++] = style;
   if(cent <= 99 )
   bar[cent] = '>';
   printf("[%-100s][%d%%][%c]\r",bar,cent,load[cent%size]);
   fflush(stdout);
   if(cent > 99)memset(bar,'\0',sizeof(bar));

}

3.main.c

复制代码
#include"processbar.h"
typedef void(*callback_t)(int);//回调函数

void Download(callback_t cb)
{
  int total = 100;//100MB
  int curr = 0;
  while(curr < total)
  {
    //假设有一个下载
    usleep(50000);//模拟下载的时间
    int rate = curr * 100 / total;//更新进度

    cb(rate);//通过回调函数显示进度
    
    curr += 1;
  }
    printf("\n");
}
int main()
{
  Download(processbar);
  printf("\n");
  Download(processbar);
  return 0;
}

临近字符串具有自动链接功能例如

printf("helloworld")

printf("hello""world")

三、改变文字颜色

复制代码
//颜色宏定义
#define NONE         "\033[m"
#define RED          "\033[0;32;31m"
#define LIGHT_RED    "\033[1;31m"
#define GREEN        "\033[0;32;32m"
#define LIGHT_GREEN  "\033[1;32m"
#define BLUE         "\033[0;32;34m"
#define LIGHT_BLUE   "\033[1;34m"
#define DARY_GRAY    "\033[1;30m"
#define CYAN         "\033[0;36m"
#define LIGHT_CYAN   "\033[1;36m"
#define PURPLE       "\033[0;35m"
#define LIGHT_PURPLE "\033[1;35m"
#define BROWN        "\033[0;33m"
#define YELLOW       "\033[1;33m"
#define LIGHT_GRAY   "\033[0;37m"
#define WHITE        "\033[1;37m"

使用方法

1.如果你想要让某一段文字变成某个颜色

复制代码
printf(YELLOW"this print msg is yellow!\n"NONE);

这两个指令相当于 开关,可以放置在任意位置。

如果开启开关,后面的所有字的颜色都会变成这个颜色

开启后关掉的话只会让某一段文字变色

相关推荐
筑梦之路2 分钟前
linux 系统找出磁盘IO占用元凶 —— 筑梦之路
linux·运维·服务器
ezreal_pan35 分钟前
docker设置镜像加速
运维·docker·容器
LiQiang332 小时前
Ubuntu2404修改国内镜像
linux
杰哥技术分享2 小时前
Ubuntu 22.04安装SQL Server指南
linux·运维·ubuntu·sqlserver
遇见火星2 小时前
ubuntu18.04 升级Ubuntu 20.04
linux·运维·ubuntu·系统升级
x县豆瓣酱2 小时前
【第四节】ubuntu server安装docker
linux·ubuntu·docker
Gene_20222 小时前
【TOOL】ubuntu升级cmake版本
linux·运维·ubuntu
宇钶宇夕2 小时前
S7-200 SMART CPU 密码清除全指南:从已知密码到忘记密码的解决方法
运维·服务器·数据库·程序人生·自动化
思序 LogicFlow2 小时前
关于在Linux上部署 SecretFlow --- P2P部署模式
linux·服务器
YC运维3 小时前
网络配置综合实验全攻略(对之前学习的总结)
linux·服务器·网络