计算在线会议的总时间-跟进 [英] Calculating the total time in an online meeting - follow up

查看:97
本文介绍了计算在线会议的总时间-跟进的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是一个后续问题: 计算在线会议的总时间

This is a follow up of question: Calculating the total time in an online meeting

假设有一个会议并将会议记录保存在CSV文件中.如何编写bash脚本/awk脚本以找出员工在线的总时间.一位员工可以离开并重新参加会议,应该计算他/她的所有在线时间. 我所做的工作如下,但是在如何比较一条记录和所有其他记录,以及将一个人的每个加入和离开的对的总时间相加上有所了解.

Suppose there was a meeting and the meeting record is saved in a CSV file. How to write a bash script/awk script to find out the total amount of time for which an employee stayed online. One employee may leave and rejoin the meeting, all his/her online time should be calculated. What I did is as follows, but got stuck on how to compare one record with all other record, and add the total time of each joined and left pairs of a person.

cat tst.awk
BEGIN { FS=" *, *"; OFS=", " }
NR==1 { next }
$1 in joined {
    jt = time2secs(joined[$1])
    lt = time2secs($3)
    totSecs[$1] += (lt - jt)
    delete joined[$1]
    next
}
{ joined[$1] = $3 }
END {
    for (name in totSecs) {
        print name, secs2time(totSecs[name])
    }
}

function time2secs(time,        t) {
    split(time,t,/:/)
    return (t[1]*60 + t[2])*60 + t[3]
}

function secs2time(secs,        h,m,s) {
    h = int(secs / (60*60))
    m = int((secs - (h*60*60)) / 60)
    s = int(secs % 60)
    return sprintf("%02d:%02d:%02d", h, m, s)
}

会议的开始时间和结束时间在命令行中给出,例如:

The start_time and end_time of the meeting are given at command line such as:

$ ./script.sh input.csv 10:00:00 13:00:00

仅应考虑介于startTime(10:00:00)和EndTime(13:00:00)之间的时间.已加入但尚未离开的人员必须被视为已离开Endtime,并且还应添加其在线时间.我尝试过,但没有得到想要的结果.

Only the time between startTime (10:00:00) and EndTime (13:00:00) should be considered. The persons who have joined but not left, must be considered as left at Endtime and their online time should be added also. I tried but no desired result.

输出应如下所示:(可以存储在输出文件中)

The output should look like this: (Can be stored in an output file)

Bob,    02:44:00
John,    00:41:00
David,   02:50:00
James,   01:39:30

CSV文件的内容如下:

The contents of the CSV file is as follows:

    Employee_name, Joined/Left, Time  
    David, joined, 09:40:00
    David, left, 10:20:00
    David, joined, 10:30:00
    John, joined, 10:00:00  
    Bob, joined, 10:01:00  
    James, joined, 10:00:30  
    Bob, left, 10:20:00    
    James, left, 11:40:00  
    John, left, 10:41:00
    Bob, joined, 10:35:00

推荐答案

$ cat tst.awk
BEGIN { FS=" *, *"; OFS=", " }
NR==1 { next }
{ names[$1] }
$3 < beg { next }
$3 >= end { exit }
$2 == "joined" {
    joined[$1] = $3
}
($2 == "left") && ($1 in joined) {
    jt = time2secs(joined[$1])
    lt = time2secs($3)
    totSecs[$1] += (lt - jt)
    delete joined[$1]
    next
}
END {
    for (name in names) {
        if (name in joined) {
            jt = time2secs(joined[name])
            lt = time2secs(end)
            totSecs[name] += (lt - jt)
        }
        print name, secs2time(totSecs[name])
    }
}

function time2secs(time,        t) {
    split(time,t,/:/)
    return (t[1]*60 + t[2])*60 + t[3]
}

function secs2time(secs,        h,m,s) {
    h = int(secs / (60*60))
    m = int((secs - (h*60*60)) / 60)
    s = int(secs % 60)
    return sprintf("%02d:%02d:%02d", h, m, s)
}

.

$ awk -v beg='10:00:00' -v end='13:00:00' -f tst.awk file
James, 01:39:30
David, 02:30:00
Bob, 02:44:00
John, 00:41:00

这篇关于计算在线会议的总时间-跟进的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆