我有一个程序,希望在N(比如说30)秒后无法打开管道进行读取时退出。
我的代码可用于阻止名称管道,因此无法更改。
我了解select()和poll(),但如果不将管道变为非阻塞状态,就无法使它们工作。
到目前为止,这是我的代码:
struct pollfd fds[1];
int pol_ret;
fds[0].fd = open(pipe_name, O_RDONLY /* | O_NONBLOCK */);
if (fds[0].fd < 0)
{
// send_signal_to_parent();
std::cout << "error while opening the pipe for read, exiting!" << '\n';
return -1;
}
fds[0].events = POLLIN;
int timeout_msecs = 30000; // (30 seconds)
pol_ret = poll(fds, 1, timeout_msecs);
std::cout << "poll returned: "<< pol_ret << '\n';
if (pol_ret == 0)
{
std::cout << "im leaving" << '\n';
return -1;
}
如何仅等待30秒以打开管道以进行读取?
我正在运行Linux,尤其是debian。
答案 0 :(得分:0)
设置带有信号处理程序的计时器,并在fifo上等待打开的呼叫。
如果打开失败errno=EINTR
,并且您的处理程序运行了,则open
调用被您的计时器中断,即超时。
示例代码:
#include <stdio.h>
#include <unistd.h>
#include <sys/stat.h>
#include <signal.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
volatile sig_atomic_t abort_eh;
void handler(int Sig)
{
abort_eh = 1;
}
int main()
{
struct sigaction sa;
sa.sa_flags = 0;
sa.sa_handler = handler;
sigemptyset(&sa.sa_mask);
sigaction(SIGALRM,&sa,0);
//try to ensure the fifo exists
(void)mkfifo("fifo",0600);
//open with a timeout of 1s
alarm(1);
int fd;
do{
if (0>(fd=open("fifo",O_RDONLY)))
if(errno==EINTR){
if(abort_eh) return puts("timed out"),1;
else continue; //another signal interrupted it, so retry
}else return perror("open"),1;
}while(0);
alarm(0); //cancel timer
printf("sucessfully opened at fd=%d\n", fd);
}
setitimer
或timer_create
/ timer_settime
比alarm
提供更好的细粒度计时器。他们还可以将计时器设置为重复,这样可以在第一个信号“丢失”的情况下(例如,刚进入open
调用之前运行,因此无法中断可能无限期阻塞的syscall)而使您辞职。