GObject parent_instance;
guint cancelled : 1;
- guint allocated_pipe : 1;
guint cancelled_running : 1;
guint cancelled_running_waiting : 1;
int cancel_pipe[2];
set_fd_close_exec (priv->cancel_pipe[0]);
set_fd_close_exec (priv->cancel_pipe[1]);
}
- else
- g_warning ("Failed to create pipe for GCancellable. Out of file descriptors?");
}
#endif
return -1;
#else
G_LOCK(cancellable);
- if (!priv->allocated_pipe)
- {
- priv->allocated_pipe = TRUE;
- g_cancellable_open_pipe (cancellable);
- }
+ if (priv->cancel_pipe[0] == -1)
+ g_cancellable_open_pipe (cancellable);
fd = priv->cancel_pipe[0];
G_UNLOCK(cancellable);
/**
* g_cancellable_make_pollfd:
- * @cancellable: a #GCancellable.
+ * @cancellable: a #GCancellable or %NULL
* @pollfd: a pointer to a #GPollFD
*
* Creates a #GPollFD corresponding to @cancellable; this can be passed
* for unix systems without a native poll and for portability to
* windows.
*
+ * If this function returns %FALSE, either no @cancellable was given or
+ * resource limits prevent this function from allocating the necessary
+ * structures for polling. (On Linux, you will likely have reached
+ * the maximum number of file descriptors.) The suggested way to handle
+ * these cases is to ignore the @cancellable.
+ *
* You are not supposed to read from the fd yourself, just check for
* readable status. Reading to unset the readable status is done
* with g_cancellable_reset().
+ *
+ * @Returns: %TRUE if @pollfd was successfully initialized, %FALSE on
+ * failure to prepare the cancellable.
*
+ * @Since: 2.22
**/
-void
+gboolean
g_cancellable_make_pollfd (GCancellable *cancellable, GPollFD *pollfd)
{
GCancellablePrivate *priv;
+ int fd;
- g_return_if_fail (G_IS_CANCELLABLE (cancellable));
- g_return_if_fail (pollfd != NULL);
+ g_return_val_if_fail (pollfd != NULL, FALSE);
+ if (cancellable == NULL)
+ return FALSE;
+ g_return_val_if_fail (G_IS_CANCELLABLE (cancellable), FALSE);
priv = cancellable->priv;
{
/* A manual reset anonymous event, starting unset */
priv->event = CreateEvent (NULL, TRUE, FALSE, NULL);
+ if (priv->event == NULL)
+ return FALSE;
}
pollfd->fd = (gintptr)priv->event;
#else /* !G_OS_WIN32 */
- pollfd->fd = g_cancellable_get_fd (cancellable);
+ fd = g_cancellable_get_fd (cancellable);
+ if (fd == -1)
+ return -1;
+ pollfd->fd = fd;
#endif /* G_OS_WIN32 */
pollfd->events = G_IO_IN;
pollfd->revents = 0;
winsock_source->condition = condition;
add_condition_watch (socket, &winsock_source->condition);
- if (cancellable)
+ if (g_cancellable_make_pollfd (cancellable,
+ &winsock_source->cancel_pollfd))
{
winsock_source->cancellable = g_object_ref (cancellable);
- g_cancellable_make_pollfd (cancellable,
- &winsock_source->cancel_pollfd);
g_source_add_poll (source, &winsock_source->cancel_pollfd);
}
num_events = 0;
events[num_events++] = socket->priv->event;
- if (cancellable)
- {
- g_cancellable_make_pollfd (cancellable, &cancel_fd);
- events[num_events++] = (WSAEVENT)cancel_fd.fd;
- }
+ if (g_cancellable_make_pollfd (cancellable, &cancel_fd))
+ events[num_events++] = (WSAEVENT)cancel_fd.fd;
current_condition = update_condition (socket);
while ((condition & current_condition) == 0)
poll_fd[0].events = condition;
num = 1;
- if (cancellable)
- {
- g_cancellable_make_pollfd (cancellable, &poll_fd[1]);
- num++;
- }
+ if (g_cancellable_make_pollfd (cancellable, &poll_fd[1]))
+ num++;
do
result = g_poll (poll_fd, num, -1);