1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
| #include <iostream> #include <algorithm> #include <string> #include <vector> #include <map> #include <set> #include <sys/epoll.h> #include <unistd.h> #include <sys/types.h> #include <errno.h> #include <pthread.h> #include <fcntl.h> #include <arpa/inet.h> #include <sys/socket.h> #include <netinet/in.h> #include <memory.h>
const int MAXLINE=10; const int OPEN_MAX=100; const int LISTENQ=20; const int SERV_PORT=1025; const int INFTIM=1000; struct task{ int fd; task *next; }; struct user_data{ int fd; unsigned int n_size; char line[MAXLINE]; }; void* readtask(void* args); void* writetask(void* args); epoll_event ev,event[20]; int epfd; pthread_mutex_t mutex; pthread_cond_t cond; task *readhead=NULL,*readtail=NULL,*writehead=NULL;
using namespace std; void check(int i,char* j) { if(i<0) perror(j); } void setnonblocking(int sock) { int opts=fcntl(sock,F_GETFL); if(opts<0){ perror("fcntl\n"); exit(-1); } opts|=O_NONBLOCK; if(fcntl(sock,F_SETFL,opts)<0) { perror("fcntl setfl\n"); exit(-1); } } int main() { pthread_mutex_init(&mutex,NULL); pthread_cond_init(&cond,NULL); task *new_task=NULL; user_data *rdata=NULL; pthread_t pid1,pid2; pthread_create(&pid1,NULL,readtask,NULL); pthread_create(&pid2,NULL,readtask,NULL); epfd=epoll_create(10); sockaddr_in clientadr,serveraddr; int listenfd=socket(AF_INET,SOCK_STREAM,0); setnonblocking(listenfd); ev.data.fd=listenfd; ev.events=EPOLLIN|EPOLLET; epoll_ctl(epfd,EPOLL_CTL_ADD,listenfd,&ev);
bzero(&serveraddr,sizeof(serveraddr)); serveraddr.sin_family=AF_INET; serveraddr.sin_port=htons(SERV_PORT); serveraddr.sin_addr.s_addr=INADDR_ANY; bind(listenfd,(sockaddr*)&serveraddr,sizeof(serveraddr)); listen(listenfd,LISTENQ); int maxi=0; for(;;) { int nfds=epoll_wait(epfd,event,20,0); for(int i=0;i<nfds;i++) { if(event[i].data.fd==listenfd) { socklen_t len; int connectfd=accept(listenfd,(sockaddr*)&clientadr,&len); if(connectfd<0) { perror("connect error\n"); exit(-1); } setnonblocking(connectfd); char *str=inet_ntoa(clientadr.sin_addr); cout<<"connec_from>>"<<str<<endl; ev.data.fd=connectfd; ev.events=EPOLLIN|EPOLLET; epoll_ctl(epfd,EPOLL_CTL_ADD,connectfd,&ev); }else if(event[i].events&EPOLLIN) { cout<<"reading"<<endl; int sockfd; if((sockfd=event[i].data.fd)<0) continue; new_task=new task(); new_task->fd=sockfd; new_task->next=NULL; pthread_mutex_lock(&mutex); if(readhead==NULL) { readhead=new_task; readtail=new_task; }else{ readtail->next=new_task; readtail=new_task; } pthread_cond_broadcast(&cond); pthread_mutex_unlock(&mutex); }else if(event[i].events&EPOLLOUT){ auto rdata=(user_data*)event[i].data.ptr; int sockfd=rdata->fd; write(sockfd,rdata->line,rdata->n_size); delete rdata; ev.data.fd=sockfd; ev.events=EPOLLIN|EPOLLET; epoll_ctl(epfd,EPOLL_CTL_MOD,sockfd,&ev); } } } return 0; } void* readtask(void* args) { int fd=-1; unsigned int n; user_data *data=NULL; while(1) { pthread_mutex_lock(&mutex); while(readhead==NULL) pthread_cond_wait(&cond,&mutex); fd=readhead->fd; task* tmp=readhead; readhead=readhead->next; delete tmp; pthread_mutex_unlock(&mutex); data=new user_data; data->fd=fd; if((n=read(fd,data->line,MAXLINE))<0) { if(errno==ECONNRESET) { close(fd); }else{ perror("readlin error\n"); } if(data!=NULL) delete data; }else{ if(n==0) { close(fd); cout<<"client close connect!"<<endl; if(data!=NULL) delete data; }else{ data->n_size=n; ev.data.ptr=data; ev.events=EPOLLET|EPOLLOUT; epoll_ctl(epfd,EPOLL_CTL_MOD,fd,&ev); } } } }
|