+2005-11-18 Werner Koch <wk@g10code.com>
+
+ * configure.ac (BUILD_REVISION): New.
+
2005-11-17 Marcus Brinkmann <marcus@g10code.de>
* configure.ac: Add support for --enable-w32-glib (disabled by
default). Invoke AM_PATH_GLIB_2_0.
+2005-11-16 Werner Koch <wk@g10code.com>
+
+ * configure.ac (CFLAGS) [W32]: Make sure that -mms-bitfields are used.
+
2005-11-15 Werner Koch <wk@g10code.com>
* configure.ac: Create BUILD_FILEVERSION from SVN Revision.
./configure --enable-maintainer-mode --prefix=${w32root} \
--host=i586-mingw32msvc --build=${build} \
--with-gpg-error-prefix=${w32root} --without-gpgsm \
- --enable-shared --enable-static
+ --enable-shared --enable-static --enable-w32-glib \
+ PKG_CONFIG_LIBDIR="$w32root/lib/pkgconfig"
exit $?
fi
# Checks for compiler features.
if test "$GCC" = yes; then
CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes"
+ if test "$have_w32_system" = yes; then
+ CFLAGS="$CFLAGS -mms-bitfields"
+ fi
fi
GNUPG_FIX_HDR_VERSION(gpgme/gpgme.h, GPGME_VERSION)
# Generate values for the DLL version info
+changequote(,)dnl
+BUILD_REVISION="`echo '$Revision$' | sed 's/[^0-9]//g'`"
+changequote([,])dnl
+test -z "$BUILD_REVISION" && BUILD_REVISION="0"
if test "$have_w32_system" = yes; then
BUILD_TIMESTAMP=`date --iso-8601=minutes`
changequote(,)dnl
BUILD_FILEVERSION=`echo "$VERSION" | sed 's/\([0-9.]*\).*/\1./;s/\./,/g'`
- tmp="`echo '$Revision$' | sed 's/[^0-9]//g'`"
changequote([,])dnl
- test -z "$tmp" && tmp="0"
- BUILD_FILEVERSION="${BUILD_FILEVERSION}$tmp"
+ BUILD_FILEVERSION="${BUILD_FILEVERSION}${BUILD_REVISION}"
fi
+AC_SUBST(BUILD_REVISION)
AC_SUBST(BUILD_TIMESTAMP)
AC_SUBST(BUILD_FILEVERSION)
callback functions. Usually this is done in an event loop, that also
checks for events in other parts of the program. If the callback
functions are only called when the file descriptors are ready,
-@acronym{GPGME} will never block. This gives the user mroe control
+@acronym{GPGME} will never block. This gives the user more control
over the program flow, and allows to perform other tasks when
@acronym{GPGME} would block otherwise.
@deftp {Data type} {gpgme_error_t (*gpgme_register_io_cb_t) (@w{void *@var{data}}, @w{int @var{fd}}, @w{int @var{dir}}, @w{gpgme_io_cb_t @var{fnc}}, @w{void *@var{fnc_data}}, @w{void **@var{tag}})}
@tindex gpgme_register_io_cb_t
The @code{gpgme_register_io_cb_t} type is the type of functions which can
-be called by @acronym{GPGME} to register an I/O callback funtion
+be called by @acronym{GPGME} to register an I/O callback function
@var{fnc} for the file descriptor @var{fd} with the user.
@var{fnc_data} should be passed as the first argument to @var{fnc}
when the handler is invoked (the second argument should be @var{fd}).
+2005-11-18 Werner Koch <wk@g10code.com>
+
+ * w32-glib-io.c: Include glib.h before windows to avoid a symbol
+ shadowing warning.
+ (find_channel): Better use g_io_channel_win32_new_fd instead of
+ the autodetection function g_io_channel_unix_new.
+ (_gpgme_io_select): Rewritten. It is now a fully working select
+ implementation.
+
2005-11-18 Marcus Brinkmann <marcus@g10code.de>
* priv-io.h (_gpgme_io_fd2str): New prototype.
but we create pseudo fds in a private namespace that designate a
handle and potentially a giochannel.
+2005-11-18 Werner Koch <wk@g10code.com>
+
+ * versioninfo.rc.in: Set file version to LT-version + Svn-revision.
+
2005-11-17 Marcus Brinkmann <marcus@g10code.de>
* w32-glib-io.c: New file.
VS_VERSION_INFO VERSIONINFO
- FILEVERSION @BUILD_FILEVERSION@
+ FILEVERSION @LIBGPGME_LT_CURRENT@,@LIBGPGME_LT_AGE@,@LIBGPGME_LT_REVISION@,@BUILD_REVISION@
PRODUCTVERSION @BUILD_FILEVERSION@
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
VALUE "Comments", "Provided under the terms of the GNU Lesser General Public License.\0"
VALUE "CompanyName", "g10 Code GmbH\0"
VALUE "FileDescription", "GPGME - GnuPG Made Easy\0"
- VALUE "FileVersion", "@VERSION@\0"
+ VALUE "FileVersion", "@LIBGPGME_LT_CURRENT@.@LIBGPGME_LT_AGE@.@LIBGPGME_LT_REVISION@.@BUILD_REVISION@\0"
VALUE "InternalName", "gpgme\0"
VALUE "LegalCopyright", "Copyright © 2005 g10 Code GmbH\0"
VALUE "LegalTrademarks", "\0"
#include <unistd.h>
#include <sys/time.h>
#include <sys/types.h>
+#include <glib.h>
#include <windows.h>
#include <io.h>
#include "sema.h"
#include "debug.h"
-#include <glib.h>
\f
/* This file is an ugly hack to get GPGME working with glib on Windows
return NULL;
if (create && !giochannel_table[fd])
- giochannel_table[fd] = g_io_channel_unix_new (fd);
+ giochannel_table[fd] = g_io_channel_win32_new_fd (fd);
return giochannel_table[fd];
}
int
_gpgme_io_select (struct io_select_fd_s *fds, size_t nfds, int nonblock)
{
- int i;
- int res = 0;
+ int npollfds;
+ GPollFD *pollfds;
+ int *pollfds_map;
+ int i, j;
+ int any, n, count;
+ int timeout = 1000; /* Use a 1s timeout. */
void *dbg_help = NULL;
- /* Use g_io_channel_get_buffer_condition. This will help with the
- _gpgme_io_select uses in rungpg.c and wait.c::_gpgme_run_io_cb,
- but not with the global or private event loop. The user still
- must define io cbs for all operations. */
+ if (nonblock)
+ timeout = 0;
- if (!nonblock)
- assert (!"Can not provide blocking select on this target.");
+ pollfds = calloc (nfds, sizeof *pollfds);
+ if (!pollfds)
+ return -1;
+ pollfds_map = calloc (nfds, sizeof *pollfds_map);
+ if (!pollfds_map)
+ {
+ free (pollfds);
+ return -1;
+ }
+ npollfds = 0;
DEBUG_BEGIN (dbg_help, 3, "gpgme:select on [ ");
+ any = 0;
for (i = 0; i < nfds; i++)
{
if (fds[i].fd == -1)
continue;
if (fds[i].frozen)
DEBUG_ADD1 (dbg_help, "f%d ", fds[i].fd);
- else if (fds[i].for_read)
+ else if (fds[i].for_read )
{
- GIOChannel *chan = find_channel (fds[i].fd, 0);
- assert (chan);
-
- DEBUG2("channel %p cond %i\n",
- chan,
- g_io_channel_get_buffer_condition (chan));
-
- if (g_io_channel_get_buffer_condition (chan) & G_IO_IN)
- {
- fds[i].signaled = 1;
- res++;
- }
- DEBUG_ADD1 (dbg_help, "r%d ", fds[i].fd);
+ GIOChannel *chan = find_channel (fds[i].fd, 0);
+ assert (chan);
+ g_io_channel_win32_make_pollfd (chan, G_IO_IN, pollfds + npollfds);
+ pollfds_map[npollfds] = i;
+ DEBUG_ADD2 (dbg_help, "r%d<%d> ", fds[i].fd, pollfds[npollfds].fd);
+ npollfds++;
+ any = 1;
}
else if (fds[i].for_write)
{
- GIOChannel *chan = find_channel (fds[i].fd, 0);
- assert (chan);
-
- if (g_io_channel_get_buffer_condition (chan) & G_IO_OUT)
- {
- fds[i].signaled = 1;
- res++;
- }
- DEBUG_ADD1 (dbg_help, "w%d ", fds[i].fd);
+ GIOChannel *chan = find_channel (fds[i].fd, 0);
+ assert (chan);
+ g_io_channel_win32_make_pollfd (chan, G_IO_OUT, pollfds + npollfds);
+ pollfds_map[npollfds] = i;
+ DEBUG_ADD2 (dbg_help, "w%d<%d> ", fds[i].fd, pollfds[npollfds].fd);
+ npollfds++;
+ any = 1;
}
- else
- fds[i].signaled = 0;
+ fds[i].signaled = 0;
}
DEBUG_END (dbg_help, "]");
+ if (!any)
+ {
+ count = 0;
+ goto leave;
+ }
+
+
+ count = g_io_channel_win32_poll (pollfds, npollfds, timeout);
+ if (count < 0)
+ {
+ int saved_errno = errno;
+ DEBUG1 ("_gpgme_io_select failed: %s\n", strerror (errno));
+ errno = saved_errno;
+ goto leave;
+ }
DEBUG_BEGIN (dbg_help, 3, "select OK [ ");
if (DEBUG_ENABLED (dbg_help))
{
- for (i = 0; i <= nfds; i++)
+ for (i = 0; i < npollfds; i++)
{
- if (fds[i].fd == -1 || fds[i].frozen || !fds[i].signaled)
- continue;
- else if (fds[i].for_read)
+ if ((pollfds[i].revents & G_IO_IN))
DEBUG_ADD1 (dbg_help, "r%d ", i);
- else if (fds[i].for_write)
- DEBUG_ADD1 (dbg_help, "w%d ", i);
+ if ((pollfds[i].revents & G_IO_OUT))
+ DEBUG_ADD1 (dbg_help, "w%d ", i);
}
DEBUG_END (dbg_help, "]");
}
+
+ /* COUNT is used to stop the lop as soon as possible. */
+ for (n = count, i = 0; i < npollfds && n; i++)
+ {
+ j = pollfds_map[i];
+ assert (j >= 0 && j < nfds);
+ if (fds[j].fd == -1)
+ ;
+ else if (fds[j].for_read)
+ {
+ if ((pollfds[i].revents & G_IO_IN))
+ {
+ fds[j].signaled = 1;
+ n--;
+ }
+ }
+ else if (fds[j].for_write)
+ {
+ if ((pollfds[i].revents & G_IO_OUT))
+ {
+ fds[j].signaled = 1;
+ n--;
+ }
+ }
+ }
- return 1;
+leave:
+ free (pollfds);
+ free (pollfds_map);
+ return count;
}