ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.c
(Generate patch)

Comparing libev/ev.c (file contents):
Revision 1.178 by root, Tue Dec 11 18:36:11 2007 UTC vs.
Revision 1.184 by root, Wed Dec 12 05:30:52 2007 UTC

476 pendings [pri][w_->pending - 1].w = w_; 476 pendings [pri][w_->pending - 1].w = w_;
477 pendings [pri][w_->pending - 1].events = revents; 477 pendings [pri][w_->pending - 1].events = revents;
478 } 478 }
479} 479}
480 480
481void inline_size 481void inline_speed
482queue_events (EV_P_ W *events, int eventcnt, int type) 482queue_events (EV_P_ W *events, int eventcnt, int type)
483{ 483{
484 int i; 484 int i;
485 485
486 for (i = 0; i < eventcnt; ++i) 486 for (i = 0; i < eventcnt; ++i)
533 { 533 {
534 int fd = fdchanges [i]; 534 int fd = fdchanges [i];
535 ANFD *anfd = anfds + fd; 535 ANFD *anfd = anfds + fd;
536 ev_io *w; 536 ev_io *w;
537 537
538 int events = 0; 538 unsigned char events = 0;
539 539
540 for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next) 540 for (w = (ev_io *)anfd->head; w; w = (ev_io *)((WL)w)->next)
541 events |= w->events; 541 events |= (unsigned char)w->events;
542 542
543#if EV_SELECT_IS_WINSOCKET 543#if EV_SELECT_IS_WINSOCKET
544 if (events) 544 if (events)
545 { 545 {
546 unsigned long argp; 546 unsigned long argp;
547 anfd->handle = _get_osfhandle (fd); 547 anfd->handle = _get_osfhandle (fd);
548 assert (("libev only supports socket fds in this configuration", ioctlsocket (anfd->handle, FIONREAD, &argp) == 0)); 548 assert (("libev only supports socket fds in this configuration", ioctlsocket (anfd->handle, FIONREAD, &argp) == 0));
549 } 549 }
550#endif 550#endif
551 551
552 {
553 unsigned char o_events = anfd->events;
554 unsigned char o_reify = anfd->reify;
555
552 anfd->reify = 0; 556 anfd->reify = 0;
553
554 backend_modify (EV_A_ fd, anfd->events, events);
555 anfd->events = events; 557 anfd->events = events;
558
559 if (o_events != events || o_reify & EV_IOFDSET)
560 backend_modify (EV_A_ fd, o_events, events);
561 }
556 } 562 }
557 563
558 fdchangecnt = 0; 564 fdchangecnt = 0;
559} 565}
560 566
561void inline_size 567void inline_size
562fd_change (EV_P_ int fd) 568fd_change (EV_P_ int fd, int flags)
563{ 569{
564 if (expect_false (anfds [fd].reify)) 570 unsigned char reify = anfds [fd].reify;
565 return;
566
567 anfds [fd].reify = 1; 571 anfds [fd].reify |= flags;
568 572
573 if (expect_true (!reify))
574 {
569 ++fdchangecnt; 575 ++fdchangecnt;
570 array_needsize (int, fdchanges, fdchangemax, fdchangecnt, EMPTY2); 576 array_needsize (int, fdchanges, fdchangemax, fdchangecnt, EMPTY2);
571 fdchanges [fdchangecnt - 1] = fd; 577 fdchanges [fdchangecnt - 1] = fd;
578 }
572} 579}
573 580
574void inline_speed 581void inline_speed
575fd_kill (EV_P_ int fd) 582fd_kill (EV_P_ int fd)
576{ 583{
627 634
628 for (fd = 0; fd < anfdmax; ++fd) 635 for (fd = 0; fd < anfdmax; ++fd)
629 if (anfds [fd].events) 636 if (anfds [fd].events)
630 { 637 {
631 anfds [fd].events = 0; 638 anfds [fd].events = 0;
632 fd_change (EV_A_ fd); 639 fd_change (EV_A_ fd, EV_IOFDSET | 1);
633 } 640 }
634} 641}
635 642
636/*****************************************************************************/ 643/*****************************************************************************/
637 644
638void inline_speed 645void inline_speed
639upheap (WT *heap, int k) 646upheap (WT *heap, int k)
640{ 647{
641 WT w = heap [k]; 648 WT w = heap [k];
642 649
643 while (k && heap [k >> 1]->at > w->at) 650 while (k)
644 { 651 {
652 int p = (k - 1) >> 1;
653
654 if (heap [p]->at <= w->at)
655 break;
656
645 heap [k] = heap [k >> 1]; 657 heap [k] = heap [p];
646 ((W)heap [k])->active = k + 1; 658 ((W)heap [k])->active = k + 1;
647 k >>= 1; 659 k = p;
648 } 660 }
649 661
650 heap [k] = w; 662 heap [k] = w;
651 ((W)heap [k])->active = k + 1; 663 ((W)heap [k])->active = k + 1;
652
653} 664}
654 665
655void inline_speed 666void inline_speed
656downheap (WT *heap, int N, int k) 667downheap (WT *heap, int N, int k)
657{ 668{
658 WT w = heap [k]; 669 WT w = heap [k];
659 670
660 while (k < (N >> 1)) 671 for (;;)
661 { 672 {
662 int j = k << 1; 673 int c = (k << 1) + 1;
663 674
664 if (j + 1 < N && heap [j]->at > heap [j + 1]->at) 675 if (c >= N)
665 ++j;
666
667 if (w->at <= heap [j]->at)
668 break; 676 break;
669 677
678 c += c + 1 < N && heap [c]->at > heap [c + 1]->at
679 ? 1 : 0;
680
681 if (w->at <= heap [c]->at)
682 break;
683
670 heap [k] = heap [j]; 684 heap [k] = heap [c];
671 ((W)heap [k])->active = k + 1; 685 ((W)heap [k])->active = k + 1;
686
672 k = j; 687 k = c;
673 } 688 }
674 689
675 heap [k] = w; 690 heap [k] = w;
676 ((W)heap [k])->active = k + 1; 691 ((W)heap [k])->active = k + 1;
677} 692}
784 ev_unref (EV_A); /* child watcher should not keep loop alive */ 799 ev_unref (EV_A); /* child watcher should not keep loop alive */
785} 800}
786 801
787/*****************************************************************************/ 802/*****************************************************************************/
788 803
789static ev_child *childs [EV_PID_HASHSIZE]; 804static WL childs [EV_PID_HASHSIZE];
790 805
791#ifndef _WIN32 806#ifndef _WIN32
792 807
793static ev_signal childev; 808static ev_signal childev;
794 809
1206void inline_size 1221void inline_size
1207timers_reify (EV_P) 1222timers_reify (EV_P)
1208{ 1223{
1209 while (timercnt && ((WT)timers [0])->at <= mn_now) 1224 while (timercnt && ((WT)timers [0])->at <= mn_now)
1210 { 1225 {
1211 ev_timer *w = timers [0]; 1226 ev_timer *w = (ev_timer *)timers [0];
1212 1227
1213 /*assert (("inactive timer on timer heap detected", ev_is_active (w)));*/ 1228 /*assert (("inactive timer on timer heap detected", ev_is_active (w)));*/
1214 1229
1215 /* first reschedule or stop timer */ 1230 /* first reschedule or stop timer */
1216 if (w->repeat) 1231 if (w->repeat)
1219 1234
1220 ((WT)w)->at += w->repeat; 1235 ((WT)w)->at += w->repeat;
1221 if (((WT)w)->at < mn_now) 1236 if (((WT)w)->at < mn_now)
1222 ((WT)w)->at = mn_now; 1237 ((WT)w)->at = mn_now;
1223 1238
1224 downheap ((WT *)timers, timercnt, 0); 1239 downheap (timers, timercnt, 0);
1225 } 1240 }
1226 else 1241 else
1227 ev_timer_stop (EV_A_ w); /* nonrepeating: stop timer */ 1242 ev_timer_stop (EV_A_ w); /* nonrepeating: stop timer */
1228 1243
1229 ev_feed_event (EV_A_ (W)w, EV_TIMEOUT); 1244 ev_feed_event (EV_A_ (W)w, EV_TIMEOUT);
1234void inline_size 1249void inline_size
1235periodics_reify (EV_P) 1250periodics_reify (EV_P)
1236{ 1251{
1237 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now) 1252 while (periodiccnt && ((WT)periodics [0])->at <= ev_rt_now)
1238 { 1253 {
1239 ev_periodic *w = periodics [0]; 1254 ev_periodic *w = (ev_periodic *)periodics [0];
1240 1255
1241 /*assert (("inactive timer on periodic heap detected", ev_is_active (w)));*/ 1256 /*assert (("inactive timer on periodic heap detected", ev_is_active (w)));*/
1242 1257
1243 /* first reschedule or stop timer */ 1258 /* first reschedule or stop timer */
1244 if (w->reschedule_cb) 1259 if (w->reschedule_cb)
1245 { 1260 {
1246 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + TIME_EPSILON); 1261 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now + TIME_EPSILON);
1247 assert (("ev_periodic reschedule callback returned time in the past", ((WT)w)->at > ev_rt_now)); 1262 assert (("ev_periodic reschedule callback returned time in the past", ((WT)w)->at > ev_rt_now));
1248 downheap ((WT *)periodics, periodiccnt, 0); 1263 downheap (periodics, periodiccnt, 0);
1249 } 1264 }
1250 else if (w->interval) 1265 else if (w->interval)
1251 { 1266 {
1252 ((WT)w)->at = w->offset + ceil ((ev_rt_now - w->offset) / w->interval) * w->interval; 1267 ((WT)w)->at = w->offset + ceil ((ev_rt_now - w->offset) / w->interval) * w->interval;
1253 if (((WT)w)->at - ev_rt_now <= TIME_EPSILON) ((WT)w)->at += w->interval; 1268 if (((WT)w)->at - ev_rt_now <= TIME_EPSILON) ((WT)w)->at += w->interval;
1254 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", ((WT)w)->at > ev_rt_now)); 1269 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", ((WT)w)->at > ev_rt_now));
1255 downheap ((WT *)periodics, periodiccnt, 0); 1270 downheap (periodics, periodiccnt, 0);
1256 } 1271 }
1257 else 1272 else
1258 ev_periodic_stop (EV_A_ w); /* nonrepeating: stop timer */ 1273 ev_periodic_stop (EV_A_ w); /* nonrepeating: stop timer */
1259 1274
1260 ev_feed_event (EV_A_ (W)w, EV_PERIODIC); 1275 ev_feed_event (EV_A_ (W)w, EV_PERIODIC);
1267 int i; 1282 int i;
1268 1283
1269 /* adjust periodics after time jump */ 1284 /* adjust periodics after time jump */
1270 for (i = 0; i < periodiccnt; ++i) 1285 for (i = 0; i < periodiccnt; ++i)
1271 { 1286 {
1272 ev_periodic *w = periodics [i]; 1287 ev_periodic *w = (ev_periodic *)periodics [i];
1273 1288
1274 if (w->reschedule_cb) 1289 if (w->reschedule_cb)
1275 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now); 1290 ((WT)w)->at = w->reschedule_cb (w, ev_rt_now);
1276 else if (w->interval) 1291 else if (w->interval)
1277 ((WT)w)->at = w->offset + ceil ((ev_rt_now - w->offset) / w->interval) * w->interval; 1292 ((WT)w)->at = w->offset + ceil ((ev_rt_now - w->offset) / w->interval) * w->interval;
1278 } 1293 }
1279 1294
1280 /* now rebuild the heap */ 1295 /* now rebuild the heap */
1281 for (i = periodiccnt >> 1; i--; ) 1296 for (i = periodiccnt >> 1; i--; )
1282 downheap ((WT *)periodics, periodiccnt, i); 1297 downheap (periodics, periodiccnt, i);
1283} 1298}
1284#endif 1299#endif
1285 1300
1286#if EV_IDLE_ENABLE 1301#if EV_IDLE_ENABLE
1287void inline_size 1302void inline_size
1589 1604
1590 assert (("ev_io_start called with negative fd", fd >= 0)); 1605 assert (("ev_io_start called with negative fd", fd >= 0));
1591 1606
1592 ev_start (EV_A_ (W)w, 1); 1607 ev_start (EV_A_ (W)w, 1);
1593 array_needsize (ANFD, anfds, anfdmax, fd + 1, anfds_init); 1608 array_needsize (ANFD, anfds, anfdmax, fd + 1, anfds_init);
1594 wlist_add ((WL *)&anfds[fd].head, (WL)w); 1609 wlist_add (&anfds[fd].head, (WL)w);
1595 1610
1596 fd_change (EV_A_ fd); 1611 fd_change (EV_A_ fd, w->events & EV_IOFDSET | 1);
1612 w->events &= ~EV_IOFDSET;
1597} 1613}
1598 1614
1599void noinline 1615void noinline
1600ev_io_stop (EV_P_ ev_io *w) 1616ev_io_stop (EV_P_ ev_io *w)
1601{ 1617{
1603 if (expect_false (!ev_is_active (w))) 1619 if (expect_false (!ev_is_active (w)))
1604 return; 1620 return;
1605 1621
1606 assert (("ev_io_start called with illegal fd (must stay constant after start!)", w->fd >= 0 && w->fd < anfdmax)); 1622 assert (("ev_io_start called with illegal fd (must stay constant after start!)", w->fd >= 0 && w->fd < anfdmax));
1607 1623
1608 wlist_del ((WL *)&anfds[w->fd].head, (WL)w); 1624 wlist_del (&anfds[w->fd].head, (WL)w);
1609 ev_stop (EV_A_ (W)w); 1625 ev_stop (EV_A_ (W)w);
1610 1626
1611 fd_change (EV_A_ w->fd); 1627 fd_change (EV_A_ w->fd, 1);
1612} 1628}
1613 1629
1614void noinline 1630void noinline
1615ev_timer_start (EV_P_ ev_timer *w) 1631ev_timer_start (EV_P_ ev_timer *w)
1616{ 1632{
1620 ((WT)w)->at += mn_now; 1636 ((WT)w)->at += mn_now;
1621 1637
1622 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.)); 1638 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
1623 1639
1624 ev_start (EV_A_ (W)w, ++timercnt); 1640 ev_start (EV_A_ (W)w, ++timercnt);
1625 array_needsize (ev_timer *, timers, timermax, timercnt, EMPTY2); 1641 array_needsize (WT, timers, timermax, timercnt, EMPTY2);
1626 timers [timercnt - 1] = w; 1642 timers [timercnt - 1] = (WT)w;
1627 upheap ((WT *)timers, timercnt - 1); 1643 upheap (timers, timercnt - 1);
1628 1644
1629 /*assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));*/ 1645 /*assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w));*/
1630} 1646}
1631 1647
1632void noinline 1648void noinline
1634{ 1650{
1635 clear_pending (EV_A_ (W)w); 1651 clear_pending (EV_A_ (W)w);
1636 if (expect_false (!ev_is_active (w))) 1652 if (expect_false (!ev_is_active (w)))
1637 return; 1653 return;
1638 1654
1639 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == w)); 1655 assert (("internal timer heap corruption", timers [((W)w)->active - 1] == (WT)w));
1640 1656
1641 { 1657 {
1642 int active = ((W)w)->active; 1658 int active = ((W)w)->active;
1643 1659
1644 if (expect_true (--active < --timercnt)) 1660 if (expect_true (--active < --timercnt))
1645 { 1661 {
1646 timers [active] = timers [timercnt]; 1662 timers [active] = timers [timercnt];
1647 adjustheap ((WT *)timers, timercnt, active); 1663 adjustheap (timers, timercnt, active);
1648 } 1664 }
1649 } 1665 }
1650 1666
1651 ((WT)w)->at -= mn_now; 1667 ((WT)w)->at -= mn_now;
1652 1668
1659 if (ev_is_active (w)) 1675 if (ev_is_active (w))
1660 { 1676 {
1661 if (w->repeat) 1677 if (w->repeat)
1662 { 1678 {
1663 ((WT)w)->at = mn_now + w->repeat; 1679 ((WT)w)->at = mn_now + w->repeat;
1664 adjustheap ((WT *)timers, timercnt, ((W)w)->active - 1); 1680 adjustheap (timers, timercnt, ((W)w)->active - 1);
1665 } 1681 }
1666 else 1682 else
1667 ev_timer_stop (EV_A_ w); 1683 ev_timer_stop (EV_A_ w);
1668 } 1684 }
1669 else if (w->repeat) 1685 else if (w->repeat)
1690 } 1706 }
1691 else 1707 else
1692 ((WT)w)->at = w->offset; 1708 ((WT)w)->at = w->offset;
1693 1709
1694 ev_start (EV_A_ (W)w, ++periodiccnt); 1710 ev_start (EV_A_ (W)w, ++periodiccnt);
1695 array_needsize (ev_periodic *, periodics, periodicmax, periodiccnt, EMPTY2); 1711 array_needsize (WT, periodics, periodicmax, periodiccnt, EMPTY2);
1696 periodics [periodiccnt - 1] = w; 1712 periodics [periodiccnt - 1] = (WT)w;
1697 upheap ((WT *)periodics, periodiccnt - 1); 1713 upheap (periodics, periodiccnt - 1);
1698 1714
1699 /*assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));*/ 1715 /*assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w));*/
1700} 1716}
1701 1717
1702void noinline 1718void noinline
1704{ 1720{
1705 clear_pending (EV_A_ (W)w); 1721 clear_pending (EV_A_ (W)w);
1706 if (expect_false (!ev_is_active (w))) 1722 if (expect_false (!ev_is_active (w)))
1707 return; 1723 return;
1708 1724
1709 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == w)); 1725 assert (("internal periodic heap corruption", periodics [((W)w)->active - 1] == (WT)w));
1710 1726
1711 { 1727 {
1712 int active = ((W)w)->active; 1728 int active = ((W)w)->active;
1713 1729
1714 if (expect_true (--active < --periodiccnt)) 1730 if (expect_true (--active < --periodiccnt))
1715 { 1731 {
1716 periodics [active] = periodics [periodiccnt]; 1732 periodics [active] = periodics [periodiccnt];
1717 adjustheap ((WT *)periodics, periodiccnt, active); 1733 adjustheap (periodics, periodiccnt, active);
1718 } 1734 }
1719 } 1735 }
1720 1736
1721 ev_stop (EV_A_ (W)w); 1737 ev_stop (EV_A_ (W)w);
1722} 1738}
1743 if (expect_false (ev_is_active (w))) 1759 if (expect_false (ev_is_active (w)))
1744 return; 1760 return;
1745 1761
1746 assert (("ev_signal_start called with illegal signal number", w->signum > 0)); 1762 assert (("ev_signal_start called with illegal signal number", w->signum > 0));
1747 1763
1764 {
1765#ifndef _WIN32
1766 sigset_t full, prev;
1767 sigfillset (&full);
1768 sigprocmask (SIG_SETMASK, &full, &prev);
1769#endif
1770
1771 array_needsize (ANSIG, signals, signalmax, w->signum, signals_init);
1772
1773#ifndef _WIN32
1774 sigprocmask (SIG_SETMASK, &prev, 0);
1775#endif
1776 }
1777
1748 ev_start (EV_A_ (W)w, 1); 1778 ev_start (EV_A_ (W)w, 1);
1749 array_needsize (ANSIG, signals, signalmax, w->signum, signals_init);
1750 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w); 1779 wlist_add (&signals [w->signum - 1].head, (WL)w);
1751 1780
1752 if (!((WL)w)->next) 1781 if (!((WL)w)->next)
1753 { 1782 {
1754#if _WIN32 1783#if _WIN32
1755 signal (w->signum, sighandler); 1784 signal (w->signum, sighandler);
1768{ 1797{
1769 clear_pending (EV_A_ (W)w); 1798 clear_pending (EV_A_ (W)w);
1770 if (expect_false (!ev_is_active (w))) 1799 if (expect_false (!ev_is_active (w)))
1771 return; 1800 return;
1772 1801
1773 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w); 1802 wlist_del (&signals [w->signum - 1].head, (WL)w);
1774 ev_stop (EV_A_ (W)w); 1803 ev_stop (EV_A_ (W)w);
1775 1804
1776 if (!signals [w->signum - 1].head) 1805 if (!signals [w->signum - 1].head)
1777 signal (w->signum, SIG_DFL); 1806 signal (w->signum, SIG_DFL);
1778} 1807}
1785#endif 1814#endif
1786 if (expect_false (ev_is_active (w))) 1815 if (expect_false (ev_is_active (w)))
1787 return; 1816 return;
1788 1817
1789 ev_start (EV_A_ (W)w, 1); 1818 ev_start (EV_A_ (W)w, 1);
1790 wlist_add ((WL *)&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w); 1819 wlist_add (&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w);
1791} 1820}
1792 1821
1793void 1822void
1794ev_child_stop (EV_P_ ev_child *w) 1823ev_child_stop (EV_P_ ev_child *w)
1795{ 1824{
1796 clear_pending (EV_A_ (W)w); 1825 clear_pending (EV_A_ (W)w);
1797 if (expect_false (!ev_is_active (w))) 1826 if (expect_false (!ev_is_active (w)))
1798 return; 1827 return;
1799 1828
1800 wlist_del ((WL *)&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w); 1829 wlist_del (&childs [w->pid & (EV_PID_HASHSIZE - 1)], (WL)w);
1801 ev_stop (EV_A_ (W)w); 1830 ev_stop (EV_A_ (W)w);
1802} 1831}
1803 1832
1804#if EV_STAT_ENABLE 1833#if EV_STAT_ENABLE
1805 1834

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines