ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/BDB/BDB.xs
(Generate patch)

Comparing BDB/BDB.xs (file contents):
Revision 1.67 by root, Fri Jan 9 22:32:12 2009 UTC vs.
Revision 1.70 by root, Wed Jul 15 14:53:52 2009 UTC

6 6
7#include "EXTERN.h" 7#include "EXTERN.h"
8#include "perl.h" 8#include "perl.h"
9#include "XSUB.h" 9#include "XSUB.h"
10 10
11#include "schmorp.h"
12
11// perl stupidly defines these as macros, breaking 13// perl stupidly defines these as argument-less macros, breaking
12// lots and lots of code. 14// lots and lots of code.
13#undef open 15#undef open
14#undef close 16#undef close
15#undef abort 17#undef abort
16#undef malloc 18#undef malloc
245} 247}
246 248
247static volatile unsigned int nreqs, nready, npending; 249static volatile unsigned int nreqs, nready, npending;
248static volatile unsigned int max_idle = 4; 250static volatile unsigned int max_idle = 4;
249static volatile unsigned int max_outstanding = 0xffffffff; 251static volatile unsigned int max_outstanding = 0xffffffff;
250static int respipe_osf [2], respipe [2] = { -1, -1 }; 252static s_epipe respipe;
251 253
252static mutex_t reslock = X_MUTEX_INIT; 254static mutex_t reslock = X_MUTEX_INIT;
253static mutex_t reqlock = X_MUTEX_INIT; 255static mutex_t reqlock = X_MUTEX_INIT;
254static cond_t reqwait = X_COND_INIT; 256static cond_t reqwait = X_COND_INIT;
255 257
456 free (req->buf3); 458 free (req->buf3);
457 459
458 Safefree (req); 460 Safefree (req);
459} 461}
460 462
461#ifdef USE_SOCKETS_AS_HANDLES
462# define TO_SOCKET(x) (win32_get_osfhandle (x))
463#else
464# define EV_SELECT_IS_WINSOCKET 1
465# define TO_SOCKET(x) (x)
466#endif
467
468#ifdef _WIN32
469/* taken verbatim from libev's ev_win32.c */
470/* oh, the humanity! */
471static int
472ev_pipe (int filedes [2])
473{
474 struct sockaddr_in addr = { 0 };
475 int addr_size = sizeof (addr);
476 struct sockaddr_in adr2;
477 int adr2_size;
478 SOCKET listener;
479 SOCKET sock [2] = { -1, -1 };
480
481 if ((listener = socket (AF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET)
482 return -1;
483
484 addr.sin_family = AF_INET;
485 addr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
486 addr.sin_port = 0;
487
488 if (bind (listener, (struct sockaddr *)&addr, addr_size))
489 goto fail;
490
491 if (getsockname (listener, (struct sockaddr *)&addr, &addr_size))
492 goto fail;
493
494 if (listen (listener, 1))
495 goto fail;
496
497 if ((sock [0] = socket (AF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET)
498 goto fail;
499
500 if (connect (sock [0], (struct sockaddr *)&addr, addr_size))
501 goto fail;
502
503 if ((sock [1] = accept (listener, 0, 0)) < 0)
504 goto fail;
505
506 /* windows vista returns fantasy port numbers for getpeername.
507 * example for two interconnected tcp sockets:
508 *
509 * (Socket::unpack_sockaddr_in getsockname $sock0)[0] == 53364
510 * (Socket::unpack_sockaddr_in getpeername $sock0)[0] == 53363
511 * (Socket::unpack_sockaddr_in getsockname $sock1)[0] == 53363
512 * (Socket::unpack_sockaddr_in getpeername $sock1)[0] == 53365
513 *
514 * wow! tridirectional sockets!
515 *
516 * this way of checking ports seems to work:
517 */
518 if (getpeername (sock [0], (struct sockaddr *)&addr, &addr_size))
519 goto fail;
520
521 if (getsockname (sock [1], (struct sockaddr *)&adr2, &adr2_size))
522 goto fail;
523
524 errno = WSAEINVAL;
525 if (addr_size != adr2_size
526 || addr.sin_addr.s_addr != adr2.sin_addr.s_addr /* just to be sure, I mean, it's windows */
527 || addr.sin_port != adr2.sin_port)
528 goto fail;
529
530 closesocket (listener);
531
532#if EV_SELECT_IS_WINSOCKET
533 filedes [0] = _open_osfhandle (sock [0], 0);
534 filedes [1] = _open_osfhandle (sock [1], 0);
535#else
536 /* when select isn't winsocket, we also expect socket, connect, accept etc.
537 * to work on fds */
538 filedes [0] = sock [0];
539 filedes [1] = sock [1];
540#endif
541
542 return 0;
543
544fail:
545 closesocket (listener);
546
547 if (sock [0] != INVALID_SOCKET) closesocket (sock [0]);
548 if (sock [1] != INVALID_SOCKET) closesocket (sock [1]);
549
550 return -1;
551}
552
553#define pipe(filedes) ev_pipe(filedes)
554#endif
555
556static void 463static void
557create_respipe (void) 464create_respipe (void)
558{ 465{
559#ifdef _WIN32
560 int arg; /* argg */
561#endif
562 int old_readfd = respipe [0];
563
564 if (respipe [1] >= 0)
565 respipe_close (TO_SOCKET (respipe [1]));
566
567 if (pipe (respipe)) 466 if (s_epipe_renew (&respipe))
568 croak ("unable to initialize result pipe"); 467 croak ("BDB: unable to create event pipe");
569
570 if (old_readfd >= 0)
571 {
572 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
573 croak ("unable to initialize result pipe(2)");
574
575 respipe_close (respipe [0]);
576 respipe [0] = old_readfd;
577 }
578
579#ifdef _WIN32
580 arg = 1;
581 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
582 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
583#else
584 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
585 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
586#endif
587 croak ("unable to initialize result pipe(3)");
588
589 respipe_osf [0] = TO_SOCKET (respipe [0]);
590 respipe_osf [1] = TO_SOCKET (respipe [1]);
591} 468}
592 469
593static void bdb_request (bdb_req req); 470static void bdb_request (bdb_req req);
594X_THREAD_PROC (bdb_proc); 471X_THREAD_PROC (bdb_proc);
595 472
731 end_thread (); 608 end_thread ();
732} 609}
733 610
734static void poll_wait (void) 611static void poll_wait (void)
735{ 612{
736 fd_set rfd;
737
738 while (nreqs) 613 while (nreqs)
739 { 614 {
740 int size; 615 int size;
741 if (WORDACCESS_UNSAFE) X_LOCK (reslock); 616 if (WORDACCESS_UNSAFE) X_LOCK (reslock);
742 size = res_queue.size; 617 size = res_queue.size;
745 if (size) 620 if (size)
746 return; 621 return;
747 622
748 maybe_start_thread (); 623 maybe_start_thread ();
749 624
750 FD_ZERO (&rfd); 625 s_epipe_wait (&respipe);
751 FD_SET (respipe [0], &rfd);
752
753 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
754 } 626 }
755} 627}
756 628
757static int poll_cb (void) 629static int poll_cb (void)
758{ 630{
778 if (req) 650 if (req)
779 { 651 {
780 --npending; 652 --npending;
781 653
782 if (!res_queue.size) 654 if (!res_queue.size)
783 {
784 /* read any signals sent by the worker threads */ 655 /* read any signals sent by the worker threads */
785 char buf [4]; 656 s_epipe_drain (&respipe);
786 while (respipe_read (respipe [0], buf, 4) == 4)
787 ;
788 }
789 } 657 }
790 658
791 X_UNLOCK (reslock); 659 X_UNLOCK (reslock);
792 660
793 if (!req) 661 if (!req)
1009 /* try to distribute timeouts somewhat evenly */ 877 /* try to distribute timeouts somewhat evenly */
1010 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL); 878 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
1011 879
1012 for (;;) 880 for (;;)
1013 { 881 {
1014 ts.tv_sec = time (0) + IDLE_TIMEOUT; 882 ts.tv_sec = time (0) + IDLE_TIMEOUT;
1015 883
1016 X_LOCK (reqlock); 884 X_LOCK (reqlock);
1017 885
1018 for (;;) 886 for (;;)
1019 { 887 {
1064 X_LOCK (reslock); 932 X_LOCK (reslock);
1065 933
1066 ++npending; 934 ++npending;
1067 935
1068 if (!reqq_push (&res_queue, req)) 936 if (!reqq_push (&res_queue, req))
1069 /* write a dummy byte to the pipe so fh becomes ready */ 937 s_epipe_signal (&respipe);
1070 respipe_write (respipe_osf [1], (const void *)&respipe_osf, 1);
1071 938
1072 self->req = 0; 939 self->req = 0;
1073 worker_clear (self); 940 worker_clear (self);
1074 941
1075 X_UNLOCK (reslock); 942 X_UNLOCK (reslock);
1610 1477
1611int 1478int
1612poll_fileno () 1479poll_fileno ()
1613 PROTOTYPE: 1480 PROTOTYPE:
1614 CODE: 1481 CODE:
1615 RETVAL = respipe [0]; 1482 RETVAL = s_epipe_fd (&respipe);
1616 OUTPUT: 1483 OUTPUT:
1617 RETVAL 1484 RETVAL
1618 1485
1619int 1486int
1620poll_cb (...) 1487poll_cb (...)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines