1 select
1.1 源码示例
#include<stdio.h>#include <sys/types.h>
#include <sys/stat.h> #include <fcntl.h>#include <unistd.h>#include <string.h>int main(void)
{int fd=0;char tmpbuff[4096]={0};mkfifo("/tmp/myfifo",0664);fd=open("/tmp/myfifo",O_WRONLY);if(-1==fd){perror("fail to open");return -1;}while(1){fgets(tmpbuff,sizeof(tmpbuff),stdin);write(fd,tmpbuff,strlen(tmpbuff));}close(fd);return 0;
}
#include<stdio.h>#include <signal.h>#include <sys/types.h>
#include <sys/stat.h> #include <fcntl.h>#include <unistd.h>#include <string.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>int main(void)
{int fd=0;fd_set rdfds;fd_set tmpfds;int ret=0;char tmpbuff[4096]={0};mkfifo("/tmp/myfifo",0664);fd=open("/tmp/myfifo",O_RDONLY);if(-1==fd){perror("fail to open");return -1;}FD_ZERO(&rdfds);FD_SET(fd,&rdfds);FD_SET(0,&rdfds);while(1){tmpfds=rdfds;ret=select(fd+1,&tmpfds,NULL,NULL,NULL);if(-1==ret){perror("fail to select");return -1;}if(FD_ISSET(fd,&tmpfds)){memset(tmpbuff,0,sizeof(tmpbuff));read(fd,tmpbuff,sizeof(tmpbuff));printf("fifo: %s\n",tmpbuff);}if(FD_ISSET(0,&tmpfds)){memset(tmpbuff,0,sizeof(tmpbuff));fgets(tmpbuff,sizeof(tmpbuff),stdin);printf("stdin: %s\n",tmpbuff);}}close(fd);return 0;
}
1.2 运行结果
1.3 分析总结
2 poll
1.1 源码示例
#include<stdio.h>#include <sys/types.h>
#include <sys/stat.h> #include <fcntl.h>#include <unistd.h>#include <string.h>int main(void)
{int fd=0;char tmpbuff[4096]={0};mkfifo("/tmp/myfifo",0664);fd=open("/tmp/myfifo",O_WRONLY);if(-1==fd){perror("fail to open");return -1;}while(1){fgets(tmpbuff,sizeof(tmpbuff),stdin);write(fd,tmpbuff,strlen(tmpbuff));}close(fd);return 0;
}
#include<stdio.h>#include <sys/types.h>
#include <sys/stat.h> #include <fcntl.h>#include <unistd.h>#include <string.h>#include <poll.h>int main(void)
{int fd=0;struct pollfd fds[2];int fready=0;char tmpbuff[4096]={0};mkfifo("/tmp/myfifo",0664);fd=open("/tmp/myfifo",O_RDONLY);if(-1==fd){perror("fail to open");return -1;}fds[0].fd=fd;fds[0].events=POLLIN;fds[1].fd=0;fds[1].events=POLLIN;while(1){fready=poll(fds,2,-1);if(-1==fready){perror("fail to poll");return -1;}if(fds[0].revents&POLLIN){memset(tmpbuff,0,sizeof(tmpbuff));read(fd,tmpbuff,sizeof(tmpbuff));printf("fifo: %s\n",tmpbuff);}if(fds[1].revents&POLLIN){memset(tmpbuff,0,sizeof(tmpbuff));fgets(tmpbuff,sizeof(tmpbuff),stdin);printf("stdin: %s\n",tmpbuff);}}close(fd);
}
1.2 运行结果
1.3 分析总结
3 epoll
1.1 源码示例
#include<stdio.h>#include <sys/types.h>
#include <sys/stat.h> #include <fcntl.h>#include <unistd.h>#include <string.h>int main(void)
{int fd=0;char tmpbuff[4096]={0};mkfifo("/tmp/myfifo",0664);fd=open("/tmp/myfifo",O_WRONLY);if(-1==fd){perror("fail to open");return -1;}while(1){fgets(tmpbuff,sizeof(tmpbuff),stdin);write(fd,tmpbuff,strlen(tmpbuff));}close(fd);return 0;
}
#include<stdio.h>#include <sys/types.h>
#include <sys/stat.h> #include <fcntl.h>#include <unistd.h>#include <string.h>#include <sys/epoll.h>int main(void)
{int fd=0;int epfd=0;struct epoll_event env;int fready=0;int i=0;struct epoll_event retenv[2];char tmpbuff[4096]={0};mkfifo("/tmp/myfifo",0664);fd=open("/tmp/myfifo",O_RDONLY);if(-1==fd){perror("fail to open");return -1;}epfd=epoll_create(2);if(-1==epfd){perror("fail to epoll_create");return -1;}env.events=EPOLLIN;env.data.fd=fd;epoll_ctl(epfd,EPOLL_CTL_ADD,fd,&env);env.events=EPOLLIN;env.data.fd=0;epoll_ctl(epfd,EPOLL_CTL_ADD,0,&env);while(1){fready=epoll_wait(epfd,retenv,2,-1);if(-1==fready){perror("fail to epoll_wait");return -1;}for(i=0;i<fready;i++){if(retenv[i].data.fd==0){memset(tmpbuff,0,sizeof(tmpbuff));fgets(tmpbuff,sizeof(tmpbuff),stdin);printf("stdin: %s\n",tmpbuff);}else if(retenv[i].data.fd==fd){memset(tmpbuff,0,sizeof(tmpbuff));read(fd,tmpbuff,sizeof(tmpbuff));printf("fifo: %s\n",tmpbuff);}}}close(fd);
}
1.2 运行结果
1.3 分析总结