New socket code for win32

From: "Magnus Hagander" <mha(at)sollentuna(dot)net>
To: <pgsql-patches(at)postgresql(dot)org>
Subject: New socket code for win32
Date: 2004-04-04 20:08:04
Message-ID: 6BCB9D8A16AC4241919521715F4D8BCE34B68E@algol.sollentuna.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers-win32 pgsql-patches

Here's an attempt at new socket and signal code for win32.

It works on the principle of turning sockets into non-blocking, and then
emulate blocking behaviour on top of that, while allowing signals to
run. Signals are now implemented using an event instead of APCs, thus
getting rid of the issue of APCs not being compatible with "old style"
sockets functions.

It also moves the win32 specific code away from pqsignal.h/c into
port/win32, and also removes the "thread style workaround" of the APC
issue previously in place.

In order to make things work, a few things are also changed in pgstat.c:

1) There is now a separate pipe to the collector and the bufferer. This
is required because the pipe will otherwise only be signalled in one of
the processes when the postmaster goes down. The MS winsock code for
select() must have some kind of workaround for this behaviour, but I
have found no stable way of doing that. You really are not supposed to
use the same socket from more than one process (unless you use
WSADuplicateSocket(), in which case the docs specifically say that only
one will be flagged).

2) The check for "postmaster death" is moved into a separate select()
call after the main loop. The previous behaviour select():ed on the
postmaster pipe, while later explicitly saying "we do NOT check for
postmaster exit inside the loop".
The issue was that the code relies on the same select() call seeing both
the postmaster pipe *and* the pgstat pipe go away. This does not always
happen, and it appears that useing WSAEventSelect() makes it even more
common that it does not.
Since it's only called when the process exits, I don't think using a
separate select() call will have any significant impact on how the stats
collector works.

Anyway. Here is a patch for review. The two files go in
backend/port/win32/.

Passes all regression tests expected (time and ordering ones still
fails, pgstat works)

//Magnus

Attachment Content-Type Size
newsignal.patch application/octet-stream 22.3 KB
signal.c application/octet-stream 7.1 KB
socket.c application/octet-stream 9.9 KB

Responses

Browse pgsql-hackers-win32 by date

  From Date Subject
Next Message Webmaster Bebe Nounou 2004-04-04 22:18:38 Re: PostgreSQL Win32 Port / psqlODBC driver
Previous Message flory 2004-04-03 19:07:51 PostgreSQL with Python on Win32

Browse pgsql-patches by date

  From Date Subject
Next Message Claudio Natoli 2004-04-05 01:13:09 Re: MSFT compiler fixes + misc
Previous Message Tom Lane 2004-04-03 18:33:25 Re: hint infrastructure setup (v3)