网络通信 --> select()用法

select()用法

 头文件

#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>

 

定义函数

  select()用来等待文件描述词状态的改变。

int select(int n, fd_set * readfds, fd_set * writefds, fd_set * exceptfds, struct timeval * timeout);

  n:代表最大的文件描述词加1;

  readfds、writefds 和exceptfds :称为描述词组,是用来回传该描述词的读,写或例外的状况。

  底下的宏提供了处理这三种描述词组的方式:

FD_CLR(inr fd,fd_set* set);    //用来清除描述词组set中相关fd 的位
FD_ISSET(int fd,fd_set *set);  //用来测试描述词组set中相关fd 的位是否为真
FD_SET(int fd,fd_set*set);    //用来设置描述词组set中相关fd的位
FD_ZERO(fd_set *set);         //用来清除描述词组set的全部位

timeout为结构timeval,用来设置select()的等待时间,其结构定义如下:

struct timeval
{
    time_t tv_sec;
    time_t tv_usec;
};

 

返回值

  如果参数timeout设为NULL,则表示select没有timeout。

  1. 执行成功则返回文件描述词状态已改变的个数;

  2. 如果返回0代表在描述词状态改变前已超过timeout时间;

  3. 当有错误发生时则返回-1,错误原因存于errno,此时参数readfds,writefds,exceptfds和timeout的值变成不可预测。

EBADF    //文件描述词为无效的或该文件已关闭
EINTR    //此调用被信号所中断
EINVAL   //参数n 为负值。
ENOMEM   //核心内存不足

 

select使用 

例子:

#include <sys/time.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <assert.h>
#include <unistd.h>

int main()
{
    int keyboard;
    int ret,i;
    char c;
    fd_set readfd;
    struct timeval timeout;

    keyboard = open( "/dev/tty",O_RDONLY | O_NONBLOCK );
    assert( keyboard>0 );

    while( 1 )
    {
        timeout.tv_sec=1;
        timeout.tv_usec=0;

        FD_ZERO( &readfd );    //每次循环都要清空集合,否则不能检测描述符变化
        FD_SET( keyboard,&readfd );    //添加描述符

        ret=select( keyboard+1,&readfd,NULL,NULL,&timeout );
        if( FD_ISSET( keyboard,&readfd ) )  //测试keyboard是否可读,即keyboard是否有数据输入
        {
            i = read( keyboard, &c, 1);  
            if( '\n' == c )
            {
                continue;
            }
            printf( "hehethe input is %c\n",c );

            if( 'q' == c )   //输入q结束
            {
                break;
            }
        }
    }
}

 

posted @ 2015-10-16 14:34  蚂蚁吃大象、  阅读(1659)  评论(0编辑  收藏  举报