• Linux网络编程4-poll模型



    1.poll函数说明

    int poll(struct pollfd *fds, nfds_t nfds, int timeout);
    /*
    函数说明: 跟select类似, 委托内核监控可读, 可写, 异常事件
    函数参数:
    	fds: 一个struct pollfd结构体数组的首地址
    	nfds: 告诉内核监控的范围, 具体是: 数组下标的最大值+1 
    	timeout: 
    		=0: 不阻塞, 立刻返回
    		-1: 表示一直阻塞, 直到有事件发生
    		>0: 表示阻塞时长, 在时长范围内若有事件发生会立刻返回;
    			如果超过了时长也会立刻返回
    函数返回值:
    	>0: 发生变化的文件描述符的个数
    	=0: 没有文件描述符发生变化
    	-1: 表示异常
    */
    
    struct pollfd {
        int   fd;     //要监控的文件描述符,如果fd为-1, 表示内核不再监控
        short events; //输入参数, 表示告诉内核要监控的事件, 读事件, 写事件, 异常事件  
        short revents;//输出参数, 表示内核告诉应用程序有哪些文件描述符有事件发生    
    };
    /*
    events/revents:
    	POLLIN:可读事件
    	POLLOUT: 可写事件
    	POLLERR: 异常事件
    */
    
    • 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

    2.poll服务器端流程

    //使用poll模型开发服务端流程:
    int main()
    {
        //1 创建socket, 得到监听文件描述符lfd----socket()
    	//2 设置端口复用----setsockopt()
    	//3 绑定----bind()
    	//4 监听----listen()
    	//5 
        struct pollfd client[1024];
        // 下表0标识监听描述符
        client[0].fd = lfd;
        client[0].events = POLLIN;
        int maxi = 0; 
        for(i=1; i<1024; i++)
        {
            client[i].fd = -1;
        }
        while(1)
        {
            nready = poll(client, maxi+1, -1);
            //异常情况
            if(nready<0)
            {
                if(errno==EINTR)  // 被信号中断
                {
                    continue;
                }
                break;
            }
            
            //有客户端连接请求到来
            if(client[0].revents==POLLIN)
            {
                //接受新的客户端连接
                cfd = accept(lfd, NULL, NULL);
                
                //寻找在client数组中可用位置
                for(i=0; i<1024; i++)
                {
                    if(client[i].fd==-1)
                    {
                        client[i].fd = cfd;
                        client[i].events = POLLIN;
                        break;
                    }
                }
                
                //客户端连接数达到最大值
                if(i==1024)
                {
                    close(cfd);
                    continue;
                }
                
                //修改client数组下标最大值
                if(maxi<i)
                {
                    maxi = i;
                }
                
                // 如果本次只有连接事件发生,就没有必要执行下面和客户端数据交互的代码
                if(--nready==0)
                {
                    continue;
                }
            }
            
            //下面是有客户端发送数据的情况
            for(i=1; i<=maxi; i++)
            {
                sockfd = client[i].fd;
                //如果client数组中fd为-1, 表示已经不再让你内核监控了, 已经close了
                if(client[i].fd==-1)
                {
                    continue;
                }
                
                if(client[i].revents==POLLIN)
                {
                    //read 数据
                    n = read(sockfd, buf, sizeof(buf));
                    if(n<=0)
                    {
                        close(sockfd);
                        client[i].fd = -1;
                        
                    }
                    else 
                    {
                        //发送数据给客户端
                        write(sockfd, buf, n);
                    } 	
                    // 每处理一个就减一,有可能尽早退出for
                    if(--nready==0)
                    {
                        break;
                    }	
                }  		
            }  	
        }
        close(lfd); 
    } 
    
    • 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

    3.poll服务器代码实现

    //IO多路复用技术poll函数的使用 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include "wrap.h"
    
    int main()
    {
        int i;
        int n;
        int lfd;
        int cfd;
        int ret;
        int nready;
        int maxfd;
        char buf[1024];
        socklen_t len;
        int sockfd;
        fd_set tmpfds, rdfds;
        struct sockaddr_in svraddr, cliaddr;
        //创建socket
        lfd = Socket(AF_INET, SOCK_STREAM, 0);
    
        //允许端口复用
        int opt = 1;
        setsockopt(lfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int));
    
        //绑定bind
        svraddr.sin_family = AF_INET;
        svraddr.sin_addr.s_addr = htonl(INADDR_ANY);
        svraddr.sin_port = htons(8888);
        ret = Bind(lfd, (struct sockaddr *)&svraddr, sizeof(struct sockaddr_in));
    
        //监听listen
        ret = Listen(lfd, 128);
    
        struct pollfd client[1024];
        for(i=0; i<1024; i++)
        {
            client[i].fd = -1;
        }		
    
        //将监听文件描述符委托给内核监控----监控读事件
        client[0].fd = lfd;
        client[0].events = POLLIN;
    
        maxfd = 0; //maxfd表示内核监控的范围
    
        while(1)
        {
            nready = poll(client, maxfd+1, -1);
            if(nready<0)
            {
                perror("poll error");
                exit(1);
            }
            
            //有客户端连接请求
            if(client[0].fd==lfd && (client[0].revents & POLLIN))
            {
                cfd = Accept(lfd, NULL, NULL);
    
                //寻找client数组中的可用位置
                for(i=1; i<1024; i++)
                {
                    if(client[i].fd==-1)
                    {
                        client[i].fd = cfd;
                        client[i].events = POLLIN;
                        break;
                    }
                }
    
                //若没有可用位置, 则关闭连接
                if(i==1024)
                {
                    Close(cfd);
                    continue;
                }
    
                if(maxfd<i)
                {
                    maxfd = i;
                }
                // 如果本次只有连接事件发生,就没有必要执行下面和客户端数据交互的代码
                if(--nready==0)
                {
                    continue;
                }
            }
    
            //下面是有数据到来的情况
            for(i=1; i<=maxfd; i++)
            {
                //若fd为-1, 表示连接已经关闭或者没有连接
                if(client[i].fd==-1)	
                {
                    continue;
                }
                
                sockfd = client[i].fd;
                memset(buf, 0x00, sizeof(buf));
                n = Read(sockfd, buf, sizeof(buf));
                if(n<=0)
                {
                    printf("read error or client closed,n==[%d]\n", n);
                    Close(sockfd);
                    client[i].fd = -1; //fd为-1,表示不再让内核监控
                }
                else
                {
                    printf("read over,n==[%d],buf==[%s]\n", n, buf);
                    write(sockfd, buf, n);
                }
    	// 每处理一个就减一,有可能尽早退出for
                if(--nready==0)
                {
                    break;
                }
            }
        }
        Close(lfd);
        return 0;
    }
    
    • 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

  • 相关阅读:
    Two-Stream Consensus Network论文阅读
    Elasticsearch:使用 Docker 来安装 FSCrawler 并摄入 Word 及 PDF 文件
    第七章 查找
    Python爬虫技术在SEO优化中的关键应用和最佳实践
    客户端自动化测试解决方案之图像识别
    Web服务器部署上线的踩坑流程回顾与知新
    一文讲透消息队列RocketMQ实现消费幂等
    将windows的显示器作为linux的扩展屏
    Collection和list和set集合的增删改查及遍历方式
    中国移动发布《新型智慧城市白皮书》(2023版)
  • 原文地址:https://blog.csdn.net/ArthurHai521/article/details/133621813