C语言编写的进程进度条显示程序

void progress_update(unsigned long total_max, unsigned long total_val, int child_max, int child_val, struct timeval *last_refresh )
{
        double total_percent, child_percent;
        int i;
        char pstr[1024];
        struct timeval *org_last_refresh = last_refresh;

				if( total_max != total_val || child_max != child_val ){
						struct timeval current_time;
						gettimeofday(¤t_time, NULL);
						
						if( current_time.tv_sec - org_last_refresh->tv_sec < 1 ){
							return;
						}
				}

        if( total_max < 1 )
                return;

				gettimeofday(org_last_refresh, NULL);
				memset(pstr, 0, 1024);
				// total progress
        // xx.xx%
        total_percent=100.00*total_val/total_max;
        sprintf(pstr, "Total: %6.2f%s", total_percent, "%");
        // [======       ]
        strcat(pstr, "\t[");
        for(i=0; i<total_percent/100*30; i++){
                strcat( pstr, "=");
        }
        for(;i<30; i++){
                strcat( pstr, " " );
        }
        strcat( pstr, "]" );
        
        // child progress
        child_percent=100.00*child_val/child_max;
        sprintf(pstr, "%s\tChild: %6.2f%s", pstr, child_percent, "%");
        // [======       ]
        strcat(pstr, "\t[");
        for(i=0; i<child_percent/100*30; i++){
                strcat( pstr, "=");
        }
        for(;i<30; i++){
                strcat( pstr, " " );
        }
        strcat( pstr, "]" );
        
        // refresh screen
        fflush(stdout);
        for(i=0; i<(strlen(pstr)*1.5); i++){
                printf("\b");
        }
        printf(pstr);
        if( total_max == total_val && child_max == child_val )
                printf("\n");
        return;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值