diff options
author | Not Zed <NotZed@Ximian.com> | 2002-11-23 06:28:49 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-11-23 06:28:49 +0800 |
commit | 554b987da7d9579b23a62c50f95b8305e1c5a72c (patch) | |
tree | df20a6349fb2134e1f7abe93d0eefb505ae7ca35 | |
parent | 27f4b6bd276b30d68f2723b927091a0e13ad2e16 (diff) | |
download | gsoc2013-evolution-554b987da7d9579b23a62c50f95b8305e1c5a72c.tar.gz gsoc2013-evolution-554b987da7d9579b23a62c50f95b8305e1c5a72c.tar.zst gsoc2013-evolution-554b987da7d9579b23a62c50f95b8305e1c5a72c.zip |
Added an optional nspr pipe field. (e_msgport_new): Init nspr pipe to
2002-11-22 Not Zed <NotZed@Ximian.com>
* e-msgport.c (EMsgPort): Added an optional nspr pipe field.
(e_msgport_new): Init nspr pipe to null.
(e_msgport_destroy): close prfiledesc's if they're open.
(e_msgport_prfd): get the prfiledesc to wait asynchronously on.
(e_msgport_put): Write notify to nspr pipe if it exists.
(e_msgport_wait): poll nspr pipe fd if it is set, and the pipe fd
isn't.
(e_msgport_get): skim off a notify byte on the pr pipe if set.
(): Include config.h, and nspr stuff if HAVE_NSS is set.
svn path=/trunk/; revision=18893
-rw-r--r-- | e-util/ChangeLog | 12 | ||||
-rw-r--r-- | e-util/e-msgport.c | 127 | ||||
-rw-r--r-- | e-util/e-msgport.h | 3 |
3 files changed, 128 insertions, 14 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 7d6e154201..ec03e75cbb 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,15 @@ +2002-11-22 Not Zed <NotZed@Ximian.com> + + * e-msgport.c (EMsgPort): Added an optional nspr pipe field. + (e_msgport_new): Init nspr pipe to null. + (e_msgport_destroy): close prfiledesc's if they're open. + (e_msgport_prfd): get the prfiledesc to wait asynchronously on. + (e_msgport_put): Write notify to nspr pipe if it exists. + (e_msgport_wait): poll nspr pipe fd if it is set, and the pipe fd + isn't. + (e_msgport_get): skim off a notify byte on the pr pipe if set. + (): Include config.h, and nspr stuff if HAVE_NSS is set. + 2002-11-13 Ettore Perazzoli <ettore@ximian.com> * e-config-listener.c (e_config_listener_get_string_with_default): diff --git a/e-util/e-msgport.c b/e-util/e-msgport.c index 28c0e5cca9..34a6391ad7 100644 --- a/e-util/e-msgport.c +++ b/e-util/e-msgport.c @@ -1,5 +1,28 @@ - -#include "e-msgport.h" +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Michael Zucchi <notzed@ximian.com> + * + * Copyright 2002 Ximian, Inc. (www.ximian.com) + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public + * License as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <sys/time.h> #include <sys/types.h> @@ -12,6 +35,12 @@ #include <glib.h> +#ifdef HAVE_NSS +#include <nspr.h> +#endif + +#include "e-msgport.h" + #define m(x) /* msgport debug */ #define t(x) /* thread debug */ @@ -106,6 +135,12 @@ struct _EMsgPort { int write; } fd; } pipe; +#ifdef HAVE_NSS + struct { + PRFileDesc *read; + PRFileDesc *write; + } prpipe; +#endif /* @#@$#$ glib stuff */ GCond *cond; GMutex *lock; @@ -121,6 +156,10 @@ EMsgPort *e_msgport_new(void) mp->cond = g_cond_new(); mp->pipe.fd.read = -1; mp->pipe.fd.write = -1; +#ifdef HAVE_NSS + mp->prpipe.read = NULL; + mp->prpipe.write = NULL; +#endif mp->condwait = 0; return mp; @@ -134,6 +173,12 @@ void e_msgport_destroy(EMsgPort *mp) close(mp->pipe.fd.read); close(mp->pipe.fd.write); } +#ifdef HAVE_NSS + if (mp->prpipe.read) { + PR_Close(mp->prpipe.read); + PR_Close(mp->prpipe.write); + } +#endif g_free(mp); } @@ -153,9 +198,29 @@ int e_msgport_fd(EMsgPort *mp) return fd; } +#ifdef HAVE_NSS +PRFileDesc *e_msgport_prfd(EMsgPort *mp) +{ + PRFileDesc *fd; + + g_mutex_lock(mp->lock); + fd = mp->prpipe.read; + if (fd == NULL) { + PR_CreatePipe(&mp->prpipe.read, &mp->prpipe.write); + fd = mp->prpipe.read; + } + g_mutex_unlock(mp->lock); + + return fd; +} +#endif + void e_msgport_put(EMsgPort *mp, EMsg *msg) { int fd; +#ifdef HAVE_NSS + PRFileDesc *prfd; +#endif m(printf("put:\n")); g_mutex_lock(mp->lock); @@ -165,6 +230,9 @@ void e_msgport_put(EMsgPort *mp, EMsg *msg) g_cond_signal(mp->cond); } fd = mp->pipe.fd.write; +#ifdef HAVE_NSS + prfd = mp->prpipe.write; +#endif g_mutex_unlock(mp->lock); if (fd != -1) { @@ -172,6 +240,12 @@ void e_msgport_put(EMsgPort *mp, EMsg *msg) write(fd, "", 1); } +#ifdef HAVE_NSS + if (prfd != NULL) { + m(printf("put: have pr pipe, writing notification to it\n")); + PR_Write(prfd, "", 1); + } +#endif m(printf("put: done\n")); } @@ -190,16 +264,7 @@ EMsg *e_msgport_wait(EMsgPort *mp) m(printf("wait:\n")); g_mutex_lock(mp->lock); while (e_dlist_empty(&mp->queue)) { - if (mp->pipe.fd.read == -1) { - m(printf("wait: waiting on condition\n")); - mp->condwait++; - /* if we are cancelled in the cond-wait, then we need to unlock our lock when we cleanup */ - pthread_cleanup_push(msgport_cleanlock, mp); - g_cond_wait(mp->cond, mp->lock); - pthread_cleanup_pop(0); - m(printf("wait: got condition\n")); - mp->condwait--; - } else { + if (mp->pipe.fd.read != -1) { fd_set rfds; int retry; @@ -213,6 +278,31 @@ EMsg *e_msgport_wait(EMsgPort *mp) } while (retry); g_mutex_lock(mp->lock); m(printf("wait: got pipe\n")); +#ifdef HAVE_NSS + } else if (mp->prpipe.read != NULL) { + PRPollDesc polltable[1]; + int retry; + + m(printf("wait: waitng on pr pipe\n")); + g_mutex_unlock(mp->lock); + do { + polltable[0].fd = mp->prpipe.read; + polltable[0].in_flags = PR_POLL_READ|PR_POLL_ERR; + retry = PR_Poll(polltable, 1, PR_INTERVAL_NO_TIMEOUT) == -1 && PR_GetError() == PR_PENDING_INTERRUPT_ERROR; + pthread_testcancel(); + } while (retry); + g_mutex_lock(mp->lock); + m(printf("wait: got pr pipe\n")); +#endif /* HAVE_NSS */ + } else { + m(printf("wait: waiting on condition\n")); + mp->condwait++; + /* if we are cancelled in the cond-wait, then we need to unlock our lock when we cleanup */ + pthread_cleanup_push(msgport_cleanlock, mp); + g_cond_wait(mp->cond, mp->lock); + pthread_cleanup_pop(0); + m(printf("wait: got condition\n")); + mp->condwait--; } } msg = (EMsg *)mp->queue.head; @@ -229,8 +319,17 @@ EMsg *e_msgport_get(EMsgPort *mp) g_mutex_lock(mp->lock); msg = (EMsg *)e_dlist_remhead(&mp->queue); - if (msg && mp->pipe.fd.read != -1) - read(mp->pipe.fd.read, dummy, 1); + if (msg) { + if (mp->pipe.fd.read != -1) + read(mp->pipe.fd.read, dummy, 1); +#ifdef HAVE_NSS + if (mp->prpipe.read != NULL) { + int c; + c = PR_Read(mp->prpipe.read, dummy, 1); + g_assert(c == 1); + } +#endif + } m(printf("get: message = %p\n", msg)); g_mutex_unlock(mp->lock); diff --git a/e-util/e-msgport.h b/e-util/e-msgport.h index 03dc514b07..6fc01efb14 100644 --- a/e-util/e-msgport.h +++ b/e-util/e-msgport.h @@ -43,6 +43,9 @@ void e_msgport_put(EMsgPort *mp, EMsg *msg); EMsg *e_msgport_wait(EMsgPort *mp); EMsg *e_msgport_get(EMsgPort *mp); void e_msgport_reply(EMsg *msg); +#ifdef HAVE_NSS +struct PRFileDesc *e_msgport_prfd(EMsgPort *mp); +#endif /* e threads, a server thread with a message based request-response, and flexible queuing */ typedef struct _EThread EThread; |