【转】你真的懂select Socket模型吗?
 volatile double SIGFPE_REQ = 0.0f;
 struct idx_info {
     int read_pos_plus1;
     int write_pos_plus1;
 };
 struct win32op {
     unsigned num_fds_in_fd_sets;
     int resize_out_sets;
     struct win_fd_set *readset_in;
     struct win_fd_set *writeset_in;
     struct win_fd_set *readset_out;
     struct win_fd_set *writeset_out;
     struct win_fd_set *exset_out;
     unsigned signals_are_broken : ;
 };
 static void *win32_init(struct event_base *);
 static int win32_add(struct event_base *, evutil_socket_t, short old, short events, void *_idx);
 static int win32_del(struct event_base *, evutil_socket_t, short old, short events, void *_idx);
 static int win32_dispatch(struct event_base *base, struct timeval *);
 static void win32_dealloc(struct event_base *);
 struct eventop win32ops = {
     "win32",
     win32_init,
     win32_add,
     win32_del,
     win32_dispatch,
     win32_dealloc,
     , /* doesn't need reinit */
     , /* No features supported. */
     sizeof(struct idx_info),
 };
 #define FD_SET_ALLOC_SIZE(n) ((sizeof(struct win_fd_set) + ((n)-1)*sizeof(SOCKET)))
 static int
 grow_fd_sets(struct win32op *op, unsigned new_num_fds)
 {
     size_t size;
     EVUTIL_ASSERT(new_num_fds >= op->readset_in->fd_count &&
            new_num_fds >= op->writeset_in->fd_count);
     EVUTIL_ASSERT(new_num_fds >= );
     size = FD_SET_ALLOC_SIZE(new_num_fds);
     if (!(op->readset_in = mm_realloc(op->readset_in, size)))
         return (-);
     if (!(op->writeset_in = mm_realloc(op->writeset_in, size)))
         return (-);
     op->resize_out_sets = ;
     op->num_fds_in_fd_sets = new_num_fds;
     return ();
 }
 static int
 do_fd_set(struct win32op *op, struct idx_info *ent, evutil_socket_t s, int read)
 {
     struct win_fd_set *set = read ? op->readset_in : op->writeset_in;
     if (read) {
         if (ent->read_pos_plus1 > )
             return ();
     } else {
         if (ent->write_pos_plus1 > )
             return ();
     }
     if (set->fd_count == op->num_fds_in_fd_sets) {
         if (grow_fd_sets(op, op->num_fds_in_fd_sets*))
             return (-);
         /* set pointer will have changed and needs reiniting! */
         set = read ? op->readset_in : op->writeset_in;
     }
     set->fd_array[set->fd_count] = s;
     if (read)
         ent->read_pos_plus1 = set->fd_count+;
     else
         ent->write_pos_plus1 = set->fd_count+;
     return (set->fd_count++);
 }
 static int
 do_fd_clear(struct event_base *base,
             struct win32op *op, struct idx_info *ent, int read)
 {
     int i;
     struct win_fd_set *set = read ? op->readset_in : op->writeset_in;
     if (read) {
         i = ent->read_pos_plus1 - ;
         ent->read_pos_plus1 = ;
     } else {
         i = ent->write_pos_plus1 - ;
         ent->write_pos_plus1 = ;
     }
     if (i < )
         return ();
     if (--set->fd_count != (unsigned)i) {
         struct idx_info *ent2;
         SOCKET s2;
         s2 = set->fd_array[i] = set->fd_array[set->fd_count];
         ent2 = evmap_io_get_fdinfo(&base->io, s2);
         if (!ent2) /* This indicates a bug. */
             return ();
         if (read)
             ent2->read_pos_plus1 = i+;
         else
             ent2->write_pos_plus1 = i+;
     }
     return ();
 }
 #define NEVENT 32
 void *
 win32_init(struct event_base *_base)
 {
     struct win32op *winop;
     size_t size;
     if (!(winop = mm_calloc(, sizeof(struct win32op))))
         return NULL;
     winop->num_fds_in_fd_sets = NEVENT;
     size = FD_SET_ALLOC_SIZE(NEVENT);
     if (!(winop->readset_in = mm_malloc(size)))
         goto err;
     if (!(winop->writeset_in = mm_malloc(size)))
         goto err;
     if (!(winop->readset_out = mm_malloc(size)))
         goto err;
     if (!(winop->writeset_out = mm_malloc(size)))
         goto err;
     if (!(winop->exset_out = mm_malloc(size)))
         goto err;
     winop->readset_in->fd_count = winop->writeset_in->fd_count = ;
     winop->readset_out->fd_count = winop->writeset_out->fd_count
         = winop->exset_out->fd_count = ;
     if (evsig_init(_base) < )
         winop->signals_are_broken = ;
     return (winop);
  err:
     XFREE(winop->readset_in);
     XFREE(winop->writeset_in);
     XFREE(winop->readset_out);
     XFREE(winop->writeset_out);
     XFREE(winop->exset_out);
     XFREE(winop);
     return (NULL);
 }
 int
 win32_add(struct event_base *base, evutil_socket_t fd,
              short old, short events, void *_idx)
 {
     struct win32op *win32op = base->evbase;
     struct idx_info *idx = _idx;
     if ((events & EV_SIGNAL) && win32op->signals_are_broken)
         return (-);
     if (!(events & (EV_READ|EV_WRITE)))
         return ();
     event_debug(("%s: adding event for %d", __func__, (int)fd));
     if (events & EV_READ) {
         if (do_fd_set(win32op, idx, fd, )<)
             return (-);
     }
     if (events & EV_WRITE) {
         if (do_fd_set(win32op, idx, fd, )<)
             return (-);
     }
     return ();
 }
 int
 win32_del(struct event_base *base, evutil_socket_t fd, short old, short events,
           void *_idx)
 {
     struct win32op *win32op = base->evbase;
     struct idx_info *idx = _idx;
     event_debug(("%s: Removing event for "EV_SOCK_FMT,
         __func__, EV_SOCK_ARG(fd)));
     if (events & EV_READ)
         do_fd_clear(base, win32op, idx, );
     if (events & EV_WRITE)
         do_fd_clear(base, win32op, idx, );
     return ;
 }
 static void
 fd_set_copy(struct win_fd_set *out, const struct win_fd_set *in)
 {
     out->fd_count = in->fd_count;
     memcpy(out->fd_array, in->fd_array, in->fd_count * (sizeof(SOCKET)));
 }
 /*
   static void dump_fd_set(struct win_fd_set *s)
   {
   unsigned int i;
   printf("[ ");
   for(i=0;i<s->fd_count;++i)
   printf("%d ",(int)s->fd_array[i]);
   printf("]\n");
   }
 */
 int
 win32_dispatch(struct event_base *base, struct timeval *tv)
 {
     struct win32op *win32op = base->evbase;
     int res = ;
     unsigned j, i;
     int fd_count;
     SOCKET s;
     if (win32op->resize_out_sets) {
         size_t size = FD_SET_ALLOC_SIZE(win32op->num_fds_in_fd_sets);
         if (!(win32op->readset_out = mm_realloc(win32op->readset_out, size)))
             return (-);
         if (!(win32op->exset_out = mm_realloc(win32op->exset_out, size)))
             return (-);
         if (!(win32op->writeset_out = mm_realloc(win32op->writeset_out, size)))
             return (-);
         win32op->resize_out_sets = ;
     }
     fd_set_copy(win32op->readset_out, win32op->readset_in);
     fd_set_copy(win32op->exset_out, win32op->writeset_in);
     fd_set_copy(win32op->writeset_out, win32op->writeset_in);
     fd_count =
         (win32op->readset_out->fd_count > win32op->writeset_out->fd_count) ?
         win32op->readset_out->fd_count : win32op->writeset_out->fd_count;
     if (!fd_count) {
         long msec = tv ? evutil_tv_to_msec(tv) : LONG_MAX;
         /* Sleep's DWORD argument is unsigned long */
         if (msec < )
             msec = LONG_MAX;
         /* Windows doesn't like you to call select() with no sockets */
         Sleep(msec);
         return ();
     }
     EVBASE_RELEASE_LOCK(base, th_base_lock);
     res = select(fd_count,
              (struct fd_set*)win32op->readset_out,
              (struct fd_set*)win32op->writeset_out,
              (struct fd_set*)win32op->exset_out, tv);
     EVBASE_ACQUIRE_LOCK(base, th_base_lock);
     event_debug(("%s: select returned %d", __func__, res));
     if (res <= ) {
         return res;
     }
     if (win32op->readset_out->fd_count) {
         i = rand() % win32op->readset_out->fd_count;
         for (j=; j<win32op->readset_out->fd_count; ++j) {
             if (++i >= win32op->readset_out->fd_count)
                 i = ;
             s = win32op->readset_out->fd_array[i];
             evmap_io_active(base, s, EV_READ);
         }
     }
     if (win32op->exset_out->fd_count) {
         i = rand() % win32op->exset_out->fd_count;
         for (j=; j<win32op->exset_out->fd_count; ++j) {
             if (++i >= win32op->exset_out->fd_count)
                 i = ;
             s = win32op->exset_out->fd_array[i];
             evmap_io_active(base, s, EV_WRITE);
         }
     }
     if (win32op->writeset_out->fd_count) {
         SOCKET s;
         i = rand() % win32op->writeset_out->fd_count;
         for (j=; j<win32op->writeset_out->fd_count; ++j) {
             if (++i >= win32op->writeset_out->fd_count)
                 i = ;
             s = win32op->writeset_out->fd_array[i];
             evmap_io_active(base, s, EV_WRITE);
         }
     }
     return ();
 }
 void
 win32_dealloc(struct event_base *_base)
 {
     struct win32op *win32op = _base->evbase;
     evsig_dealloc(_base);
     if (win32op->readset_in)
         mm_free(win32op->readset_in);
     if (win32op->writeset_in)
         mm_free(win32op->writeset_in);
     if (win32op->readset_out)
         mm_free(win32op->readset_out);
     if (win32op->writeset_out)
         mm_free(win32op->writeset_out);
     if (win32op->exset_out)
         mm_free(win32op->exset_out);
     /* XXXXX free the tree. */
     memset(win32op, , sizeof(win32op));
     mm_free(win32op);
 }
【转】你真的懂select Socket模型吗?的更多相关文章
- 程序猿修仙之路--数据结构之你是否真的懂数组?  c#socket TCP同步网络通信  用lambda表达式树替代反射   ASP.NET MVC如何做一个简单的非法登录拦截
		程序猿修仙之路--数据结构之你是否真的懂数组? 数据结构 但凡IT江湖侠士,算法与数据结构为必修之课.早有前辈已经明确指出:程序=算法+数据结构 .要想在之后的江湖历练中通关,数据结构必不可少. ... 
- 转:变手把手教你玩转SOCKET模型之重叠I/O篇
		手把手教你玩转SOCKET模型之重叠I/O篇 “身为一个初学者,时常能体味到初学者入门的艰辛,所以总是想抽空作点什么来尽我所能的帮助那些需要帮助的人.我也希望大家能把自己的所学和他人一起分享,不要去鄙 ... 
- 手把手教你玩转SOCKET模型之重叠I/O篇(下)
		四. 实现重叠模型的步骤 作 了这么多的准备工作,费了这么多的笔墨,我们终于可以开始着手编码了.其实慢慢的你就会明白,要想透析重叠结构的内部原理也许是要费点功夫,但是只是学会 如何来使用它,却 ... 
- .NET平台下几种SOCKET模型的简要性能供参考
		转载自:http://www.cnblogs.com/asilas/archive/2006/01/05/311309.html .NET平台下几种SOCKET模型的简要性能供参考 这个内容在cnbl ... 
- 【转】先说IEnumerable,我们每天用的foreach你真的懂它吗?
		[转]先说IEnumerable,我们每天用的foreach你真的懂它吗? 我们先思考几个问题: 为什么在foreach中不能修改item的值? 要实现foreach需要满足什么条件? 为什么Linq ... 
- php socket 模型及效率问题
		// 创建套接字 socket_create(); // 绑定 socket_bind(); // 监听 socket_listen(); // 主体, 死循环 while(true){ // sel ... 
- PJSIP Socket 模型
		前些日子为解决项目中问题调试到PJSIP Socket收发数据部分 ,好记性不如烂笔头,记录下 PJSIP 使用的Socket 模型 ,以备后用. 不同平台下PJSIP采用不同的 Socket模型,W ... 
- [C#] C# 知识回顾 - 你真的懂异常(Exception)吗?
		你真的懂异常(Exception)吗? 目录 异常介绍 异常的特点 怎样使用异常 处理异常的 try-catch-finally 捕获异常的 Catch 块 释放资源的 Finally 块 一.异常介 ... 
- SQL Server中SELECT会真的阻塞SELECT吗?
		在SQL Server中,我们知道一个SELECT语句执行过程中只会申请一些意向共享锁(IS) 与共享锁(S), 例如我使用SQL Profile跟踪会话86执行SELECT * FROM dbo.T ... 
随机推荐
- HttpRequest中常见的四种Content-Type(转)
			add by zhj: Content-Type用于说明request body的编码格式的,对于没有request body的http method如GET,HEAD没有必要设置这个参数,当然,你设 ... 
- SVN同步时报错:“Previous operation has not finished; run 'cleanup' if it was interrupted”
			SVN同步时报错:“Previous operation has not finished; run 'cleanup' if it was interrupted” 这大概是SVN之前的操作没有完成 ... 
- Android- SharedPreferences 使用详解
			Android-SharedPreferences 使用详解 参考 https://developer.android.google.cn/reference/android/content/Shar ... 
- HDU 5628 Clarke and math dp+数学
			Clarke and math 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5628 Description Clarke is a patient ... 
- Codeforces Round #397 by Kaspersky Lab and Barcelona Bootcamp (Div. 1 + Div. 2 combined) B. Code obfuscation 水题
			B. Code obfuscation 题目连接: http://codeforces.com/contest/765/problem/B Description Kostya likes Codef ... 
- CentOS 6.8 搭建 Git 代码托管系统 Gitea
			[荐] Gitea:Git with a cup of tea,在 Gogs 基础上,发展起来的 自助 Git 服务系统.Gogs是一个个人维护的版本,而Gitea是一个社区组织维护的,版本迭代更新快 ... 
- [置顶] 九度笔记之 1494:Dota
			题目1494:Dota 1 秒 内存限制:128 兆 特殊判题:否 提交:559 解决:122 题目描述: 大家都知道在dota游戏中,装备是对于英雄来说十分重要的要素. 英雄们不仅可以购买单个的装备 ... 
- delphi 取上级目录
			var S: string;begin S := 'c:\aa\bb\cc\dd\abc.exe'; ShowMessage(ExtractFileDir(ExtractFileDir(S))) ... 
- [Asp.net]web.config  customErrors 如何设置?
			摘要 customErrors也经常在开发部署中看到<customErrors mode="Off" />,设置这样可以在页面上看到详细的错误信息.但也为黑客提供了攻击 ... 
- Complete uninstall on Mac, HELP!
			Remove these directories: /Applications/Xamarin Studio.app /Developer/MonoTouch /Developer/MonoAndro ... 
