cpp
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <signal.h>
#include <unistd.h>
#define CPS 10
#define BUFSIZE CPS
#define BURST 100
static volatile int token = 0;
static void alarm_handler(int s)
{
alarm(1);
token++;
if(token > BURST)
token = BURST;
}
int main(int argc, char *argv[])
{
int sfd, dfd = 1;
char buf[BUFSIZE];
int len, ret, pos;
if(argc < 2)
{
fprintf(stderr, "Usage....\n");
exit(1);
}
signal(SIGALRM, alarm_handler);
alarm(1);
do
{
sfd = open(argv[1], O_RDONLY);
if(sfd < 0)
{
if(errno != EINTR)
{
perror("open()");
}
}
}while(sfd < 0);
while(1)
{
while(token <= 0)
{
pause();
}
token--;
while((len = read(sfd, buf, BUFSIZE)) < 0)
{
if(errno == EINTR)
continue;
perror("read()");
break;
}
if (len == 0)
{
break;
}
pos = 0;
while(len > 0)
{
ret = write(dfd, buf + pos, len);
if(ret < 0)
{
if(errno == EINTR)
continue;
perror("read()");
break;
}
len -= ret;
pos += ret;
}
}
exit(0);
}