2 This file is part of GNUnet.
3 Copyright (C) 2012-2019 GNUnet e.V.
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 SPDX-License-Identifier: AGPL3.0-or-later
22 * @author Florian Dold
24 * @brief general purpose request queue
27 #include "gnunet_util_lib.h"
29 #define LOG(kind,...) GNUNET_log_from (kind, "util-mq",__VA_ARGS__)
32 struct GNUNET_MQ_Envelope
35 * Messages are stored in a linked list.
36 * Each queue has its own list of envelopes.
38 struct GNUNET_MQ_Envelope *next;
41 * Messages are stored in a linked list
42 * Each queue has its own list of envelopes.
44 struct GNUNET_MQ_Envelope *prev;
47 * Actual allocated message header.
48 * The GNUNET_MQ_Envelope header is allocated at
49 * the end of the message.
51 struct GNUNET_MessageHeader *mh;
54 * Queue the message is queued in, NULL if message is not queued.
56 struct GNUNET_MQ_Handle *parent_queue;
59 * Called after the message was sent irrevocably.
61 GNUNET_SCHEDULER_TaskCallback sent_cb;
64 * Closure for @e send_cb
69 * Flags that were set for this envelope by
70 * #GNUNET_MQ_env_set_options(). Only valid if
71 * @e have_custom_options is set.
76 * Additional options buffer set for this envelope by
77 * #GNUNET_MQ_env_set_options(). Only valid if
78 * @e have_custom_options is set.
83 * Did the application call #GNUNET_MQ_env_set_options()?
85 int have_custom_options;
90 * Handle to a message queue.
92 struct GNUNET_MQ_Handle
95 * Handlers array, or NULL if the queue should not receive messages
97 struct GNUNET_MQ_MessageHandler *handlers;
100 * Actual implementation of message sending,
101 * called when a message is added
103 GNUNET_MQ_SendImpl send_impl;
106 * Implementation-dependent queue destruction function
108 GNUNET_MQ_DestroyImpl destroy_impl;
111 * Implementation-dependent send cancel function
113 GNUNET_MQ_CancelImpl cancel_impl;
116 * Implementation-specific state
121 * Callback will be called when an error occurs.
123 GNUNET_MQ_ErrorHandler error_handler;
126 * Closure for the error handler.
128 void *error_handler_cls;
131 * Task to asynchronously run #impl_send_continue().
133 struct GNUNET_SCHEDULER_Task *send_task;
136 * Linked list of messages pending to be sent
138 struct GNUNET_MQ_Envelope *envelope_head;
141 * Linked list of messages pending to be sent
143 struct GNUNET_MQ_Envelope *envelope_tail;
146 * Message that is currently scheduled to be
147 * sent. Not the head of the message queue, as the implementation
148 * needs to know if sending has been already scheduled or not.
150 struct GNUNET_MQ_Envelope *current_envelope;
153 * Map of associations, lazily allocated
155 struct GNUNET_CONTAINER_MultiHashMap32 *assoc_map;
158 * Functions to call on queue destruction; kept in a DLL.
160 struct GNUNET_MQ_DestroyNotificationHandle *dnh_head;
163 * Functions to call on queue destruction; kept in a DLL.
165 struct GNUNET_MQ_DestroyNotificationHandle *dnh_tail;
168 * Additional options buffer set for this queue by
169 * #GNUNET_MQ_set_options(). Default is 0.
171 const void *default_extra;
174 * Flags that were set for this queue by
175 * #GNUNET_MQ_set_options(). Default is 0.
177 uint64_t default_flags;
180 * Next id that should be used for the @e assoc_map,
181 * initialized lazily to a random value together with
187 * Number of entries we have in the envelope-DLL.
189 unsigned int queue_length;
192 * #GNUNET_YES if GNUNET_MQ_impl_evacuate was called.
193 * FIXME: is this dead?
198 * #GNUNET_YES if GNUNET_MQ_impl_send_in_flight() was called.
205 * Call the message message handler that was registered
206 * for the type of the given message in the given message queue.
208 * This function is indended to be used for the implementation
211 * @param mq message queue with the handlers
212 * @param mh message to dispatch
215 GNUNET_MQ_inject_message (struct GNUNET_MQ_Handle *mq,
216 const struct GNUNET_MessageHeader *mh)
220 ret = GNUNET_MQ_handle_message (mq->handlers,
222 if (GNUNET_SYSERR == ret)
224 GNUNET_MQ_inject_error (mq,
225 GNUNET_MQ_ERROR_MALFORMED);
232 * Call the message message handler that was registered
233 * for the type of the given message in the given @a handlers list.
235 * This function is indended to be used for the implementation
238 * @param handlers a set of handlers
239 * @param mh message to dispatch
240 * @return #GNUNET_OK on success, #GNUNET_NO if no handler matched,
241 * #GNUNET_SYSERR if message was rejected by check function
244 GNUNET_MQ_handle_message (const struct GNUNET_MQ_MessageHandler *handlers,
245 const struct GNUNET_MessageHeader *mh)
247 const struct GNUNET_MQ_MessageHandler *handler;
248 int handled = GNUNET_NO;
249 uint16_t msize = ntohs (mh->size);
250 uint16_t mtype = ntohs (mh->type);
252 LOG (GNUNET_ERROR_TYPE_DEBUG,
253 "Received message of type %u and size %u\n",
256 if (NULL == handlers)
258 for (handler = handlers; NULL != handler->cb; handler++)
260 if (handler->type == mtype)
262 handled = GNUNET_YES;
263 if ( (handler->expected_size > msize) ||
264 ( (handler->expected_size != msize) &&
265 (NULL == handler->mv) ) )
267 /* Too small, or not an exact size and
268 no 'mv' handler to check rest */
269 LOG (GNUNET_ERROR_TYPE_ERROR,
270 "Received malformed message of type %u\n",
271 (unsigned int) handler->type);
272 return GNUNET_SYSERR;
274 if ( (NULL == handler->mv) ||
276 handler->mv (handler->cls, mh)) )
278 /* message well-formed, pass to handler */
279 handler->cb (handler->cls, mh);
283 /* Message rejected by check routine */
284 LOG (GNUNET_ERROR_TYPE_ERROR,
285 "Received malformed message of type %u\n",
286 (unsigned int) handler->type);
287 return GNUNET_SYSERR;
293 if (GNUNET_NO == handled)
295 LOG (GNUNET_ERROR_TYPE_INFO,
296 "No handler for message of type %u and size %u\n",
305 * Call the error handler of a message queue with the given
306 * error code. If there is no error handler, log a warning.
308 * This function is intended to be used by the implementation
311 * @param mq message queue
312 * @param error the error type
315 GNUNET_MQ_inject_error (struct GNUNET_MQ_Handle *mq,
316 enum GNUNET_MQ_Error error)
318 if (NULL == mq->error_handler)
320 LOG (GNUNET_ERROR_TYPE_WARNING,
321 "Got error %d, but no handler installed\n",
325 mq->error_handler (mq->error_handler_cls,
331 * Discard the message queue message, free all
332 * allocated resources. Must be called in the event
333 * that a message is created but should not actually be sent.
335 * @param mqm the message to discard
338 GNUNET_MQ_discard (struct GNUNET_MQ_Envelope *ev)
340 GNUNET_assert (NULL == ev->parent_queue);
346 * Obtain the current length of the message queue.
348 * @param mq queue to inspect
349 * @return number of queued, non-transmitted messages
352 GNUNET_MQ_get_length (struct GNUNET_MQ_Handle *mq)
354 if (GNUNET_YES != mq->in_flight)
356 return mq->queue_length;
358 return mq->queue_length - 1;
363 * Send a message with the given message queue.
364 * May only be called once per message.
366 * @param mq message queue
367 * @param ev the envelope with the message to send.
370 GNUNET_MQ_send (struct GNUNET_MQ_Handle *mq,
371 struct GNUNET_MQ_Envelope *ev)
373 GNUNET_assert (NULL != mq);
374 GNUNET_assert (NULL == ev->parent_queue);
377 if (mq->queue_length >= 10000)
379 /* This would seem like a bug... */
380 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
381 "MQ with %u entries extended by message of type %u (FC broken?)\n",
382 (unsigned int) mq->queue_length,
383 (unsigned int) ntohs (ev->mh->type));
385 ev->parent_queue = mq;
386 /* is the implementation busy? queue it! */
387 if ( (NULL != mq->current_envelope) ||
388 (NULL != mq->send_task) )
390 GNUNET_CONTAINER_DLL_insert_tail (mq->envelope_head,
395 GNUNET_assert (NULL == mq->envelope_head);
396 mq->current_envelope = ev;
398 LOG (GNUNET_ERROR_TYPE_DEBUG,
399 "sending message of type %u, queue empty (MQ: %p)\n",
410 * Remove the first envelope that has not yet been sent from the message
411 * queue and return it.
413 * @param mq queue to remove envelope from
414 * @return NULL if queue is empty (or has no envelope that is not under transmission)
416 struct GNUNET_MQ_Envelope *
417 GNUNET_MQ_unsent_head (struct GNUNET_MQ_Handle *mq)
419 struct GNUNET_MQ_Envelope *env;
421 env = mq->envelope_head;
422 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
426 env->parent_queue = NULL;
432 * Function to copy an envelope. The envelope must not yet
433 * be in any queue or have any options or callbacks set.
435 * @param env envelope to copy
436 * @return copy of @a env
438 struct GNUNET_MQ_Envelope *
439 GNUNET_MQ_env_copy (struct GNUNET_MQ_Envelope *env)
441 GNUNET_assert (NULL == env->next);
442 GNUNET_assert (NULL == env->parent_queue);
443 GNUNET_assert (NULL == env->sent_cb);
444 GNUNET_assert (GNUNET_NO == env->have_custom_options);
445 return GNUNET_MQ_msg_copy (env->mh);
450 * Send a copy of a message with the given message queue.
451 * Can be called repeatedly on the same envelope.
453 * @param mq message queue
454 * @param ev the envelope with the message to send.
457 GNUNET_MQ_send_copy (struct GNUNET_MQ_Handle *mq,
458 const struct GNUNET_MQ_Envelope *ev)
460 struct GNUNET_MQ_Envelope *env;
463 msize = ntohs (ev->mh->size);
464 env = GNUNET_malloc (sizeof (struct GNUNET_MQ_Envelope) +
466 env->mh = (struct GNUNET_MessageHeader *) &env[1];
467 env->sent_cb = ev->sent_cb;
468 env->sent_cls = ev->sent_cls;
469 GNUNET_memcpy (&env[1],
478 * Task run to call the send implementation for the next queued
479 * message, if any. Only useful for implementing message queues,
480 * results in undefined behavior if not used carefully.
482 * @param cls message queue to send the next message with
485 impl_send_continue (void *cls)
487 struct GNUNET_MQ_Handle *mq = cls;
489 mq->send_task = NULL;
490 /* call is only valid if we're actually currently sending
492 if (NULL == mq->envelope_head)
494 mq->current_envelope = mq->envelope_head;
495 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
497 mq->current_envelope);
499 LOG (GNUNET_ERROR_TYPE_DEBUG,
500 "sending message of type %u from queue\n",
501 ntohs(mq->current_envelope->mh->type));
504 mq->current_envelope->mh,
510 * Call the send implementation for the next queued message, if any.
511 * Only useful for implementing message queues, results in undefined
512 * behavior if not used carefully.
514 * @param mq message queue to send the next message with
517 GNUNET_MQ_impl_send_continue (struct GNUNET_MQ_Handle *mq)
519 struct GNUNET_MQ_Envelope *current_envelope;
520 GNUNET_SCHEDULER_TaskCallback cb;
522 GNUNET_assert (0 < mq->queue_length);
524 mq->in_flight = GNUNET_NO;
525 current_envelope = mq->current_envelope;
526 current_envelope->parent_queue = NULL;
527 mq->current_envelope = NULL;
528 GNUNET_assert (NULL == mq->send_task);
529 mq->send_task = GNUNET_SCHEDULER_add_now (&impl_send_continue,
531 if (NULL != (cb = current_envelope->sent_cb))
533 current_envelope->sent_cb = NULL;
534 cb (current_envelope->sent_cls);
536 GNUNET_free (current_envelope);
541 * Call the send notification for the current message, but do not
542 * try to send the next message until #GNUNET_MQ_impl_send_continue
545 * Only useful for implementing message queues, results in undefined
546 * behavior if not used carefully.
548 * @param mq message queue to send the next message with
551 GNUNET_MQ_impl_send_in_flight (struct GNUNET_MQ_Handle *mq)
553 struct GNUNET_MQ_Envelope *current_envelope;
554 GNUNET_SCHEDULER_TaskCallback cb;
556 mq->in_flight = GNUNET_YES;
557 /* call is only valid if we're actually currently sending
559 current_envelope = mq->current_envelope;
560 GNUNET_assert (NULL != current_envelope);
561 /* can't call cancel from now on anymore */
562 current_envelope->parent_queue = NULL;
563 if (NULL != (cb = current_envelope->sent_cb))
565 current_envelope->sent_cb = NULL;
566 cb (current_envelope->sent_cls);
572 * Create a message queue for the specified handlers.
574 * @param send function the implements sending messages
575 * @param destroy function that implements destroying the queue
576 * @param cancel function that implements canceling a message
577 * @param impl_state for the queue, passed to 'send' and 'destroy'
578 * @param handlers array of message handlers
579 * @param error_handler handler for read and write errors
580 * @param error_handler_cls closure for @a error_handler
581 * @return a new message queue
583 struct GNUNET_MQ_Handle *
584 GNUNET_MQ_queue_for_callbacks (GNUNET_MQ_SendImpl send,
585 GNUNET_MQ_DestroyImpl destroy,
586 GNUNET_MQ_CancelImpl cancel,
588 const struct GNUNET_MQ_MessageHandler *handlers,
589 GNUNET_MQ_ErrorHandler error_handler,
590 void *error_handler_cls)
592 struct GNUNET_MQ_Handle *mq;
594 mq = GNUNET_new (struct GNUNET_MQ_Handle);
595 mq->send_impl = send;
596 mq->destroy_impl = destroy;
597 mq->cancel_impl = cancel;
598 mq->handlers = GNUNET_MQ_copy_handlers (handlers);
599 mq->error_handler = error_handler;
600 mq->error_handler_cls = error_handler_cls;
601 mq->impl_state = impl_state;
608 * Change the closure argument in all of the `handlers` of the
611 * @param mq to modify
612 * @param handlers_cls new closure to use
615 GNUNET_MQ_set_handlers_closure (struct GNUNET_MQ_Handle *mq,
618 if (NULL == mq->handlers)
620 for (unsigned int i=0;NULL != mq->handlers[i].cb; i++)
621 mq->handlers[i].cls = handlers_cls;
626 * Get the message that should currently be sent.
627 * Fails if there is no current message.
628 * Only useful for implementing message queues,
629 * results in undefined behavior if not used carefully.
631 * @param mq message queue with the current message
632 * @return message to send, never NULL
634 const struct GNUNET_MessageHeader *
635 GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq)
637 GNUNET_assert (NULL != mq->current_envelope);
638 GNUNET_assert (NULL != mq->current_envelope->mh);
639 return mq->current_envelope->mh;
644 * Get the implementation state associated with the
647 * While the GNUNET_MQ_Impl* callbacks receive the
648 * implementation state, continuations that are scheduled
649 * by the implementation function often only have one closure
650 * argument, with this function it is possible to get at the
651 * implementation state when only passing the GNUNET_MQ_Handle
654 * @param mq message queue with the current message
655 * @return message to send, never NULL
658 GNUNET_MQ_impl_state (struct GNUNET_MQ_Handle *mq)
660 return mq->impl_state;
664 struct GNUNET_MQ_Envelope *
665 GNUNET_MQ_msg_ (struct GNUNET_MessageHeader **mhp,
669 struct GNUNET_MQ_Envelope *ev;
671 ev = GNUNET_malloc (size + sizeof (struct GNUNET_MQ_Envelope));
672 ev->mh = (struct GNUNET_MessageHeader *) &ev[1];
673 ev->mh->size = htons (size);
674 ev->mh->type = htons (type);
682 * Create a new envelope by copying an existing message.
684 * @param hdr header of the message to copy
685 * @return envelope containing @a hdr
687 struct GNUNET_MQ_Envelope *
688 GNUNET_MQ_msg_copy (const struct GNUNET_MessageHeader *hdr)
690 struct GNUNET_MQ_Envelope *mqm;
691 uint16_t size = ntohs (hdr->size);
693 mqm = GNUNET_malloc (sizeof (*mqm) + size);
694 mqm->mh = (struct GNUNET_MessageHeader *) &mqm[1];
695 GNUNET_memcpy (mqm->mh,
703 * Implementation of the #GNUNET_MQ_msg_nested_mh macro.
705 * @param mhp pointer to the message header pointer that will be changed to allocate at
706 * the newly allocated space for the message.
707 * @param base_size size of the data before the nested message
708 * @param type type of the message in the envelope
709 * @param nested_mh the message to append to the message after base_size
711 struct GNUNET_MQ_Envelope *
712 GNUNET_MQ_msg_nested_mh_ (struct GNUNET_MessageHeader **mhp,
715 const struct GNUNET_MessageHeader *nested_mh)
717 struct GNUNET_MQ_Envelope *mqm;
720 if (NULL == nested_mh)
721 return GNUNET_MQ_msg_ (mhp, base_size, type);
723 size = base_size + ntohs (nested_mh->size);
725 /* check for uint16_t overflow */
726 if (size < base_size)
729 mqm = GNUNET_MQ_msg_ (mhp, size, type);
730 GNUNET_memcpy ((char *) mqm->mh + base_size,
732 ntohs (nested_mh->size));
739 * Associate the assoc_data in mq with a unique request id.
741 * @param mq message queue, id will be unique for the queue
742 * @param assoc_data to associate
745 GNUNET_MQ_assoc_add (struct GNUNET_MQ_Handle *mq,
750 if (NULL == mq->assoc_map)
752 mq->assoc_map = GNUNET_CONTAINER_multihashmap32_create (8);
756 GNUNET_assert (GNUNET_OK ==
757 GNUNET_CONTAINER_multihashmap32_put (mq->assoc_map,
760 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
766 * Get the data associated with a @a request_id in a queue
768 * @param mq the message queue with the association
769 * @param request_id the request id we are interested in
770 * @return the associated data
773 GNUNET_MQ_assoc_get (struct GNUNET_MQ_Handle *mq,
776 if (NULL == mq->assoc_map)
778 return GNUNET_CONTAINER_multihashmap32_get (mq->assoc_map,
784 * Remove the association for a @a request_id
786 * @param mq the message queue with the association
787 * @param request_id the request id we want to remove
788 * @return the associated data
791 GNUNET_MQ_assoc_remove (struct GNUNET_MQ_Handle *mq,
796 if (NULL == mq->assoc_map)
798 val = GNUNET_CONTAINER_multihashmap32_get (mq->assoc_map,
800 GNUNET_CONTAINER_multihashmap32_remove_all (mq->assoc_map,
807 * Call a callback once the envelope has been sent, that is,
808 * sending it can not be canceled anymore.
809 * There can be only one notify sent callback per envelope.
811 * @param ev message to call the notify callback for
812 * @param cb the notify callback
813 * @param cb_cls closure for the callback
816 GNUNET_MQ_notify_sent (struct GNUNET_MQ_Envelope *ev,
817 GNUNET_SCHEDULER_TaskCallback cb,
820 /* allow setting *OR* clearing callback */
821 GNUNET_assert ( (NULL == ev->sent_cb) ||
824 ev->sent_cls = cb_cls;
829 * Handle we return for callbacks registered to be
830 * notified when #GNUNET_MQ_destroy() is called on a queue.
832 struct GNUNET_MQ_DestroyNotificationHandle
837 struct GNUNET_MQ_DestroyNotificationHandle *prev;
842 struct GNUNET_MQ_DestroyNotificationHandle *next;
845 * Queue to notify about.
847 struct GNUNET_MQ_Handle *mq;
852 GNUNET_SCHEDULER_TaskCallback cb;
862 * Destroy the message queue.
864 * @param mq message queue to destroy
867 GNUNET_MQ_destroy (struct GNUNET_MQ_Handle *mq)
869 struct GNUNET_MQ_DestroyNotificationHandle *dnh;
871 if (NULL != mq->destroy_impl)
873 mq->destroy_impl (mq, mq->impl_state);
875 if (NULL != mq->send_task)
877 GNUNET_SCHEDULER_cancel (mq->send_task);
878 mq->send_task = NULL;
880 while (NULL != mq->envelope_head)
882 struct GNUNET_MQ_Envelope *ev;
884 ev = mq->envelope_head;
885 ev->parent_queue = NULL;
886 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
889 GNUNET_assert (0 < mq->queue_length);
891 LOG (GNUNET_ERROR_TYPE_DEBUG,
892 "MQ destroy drops message of type %u\n",
893 ntohs (ev->mh->type));
894 GNUNET_MQ_discard (ev);
896 if (NULL != mq->current_envelope)
898 /* we can only discard envelopes that
900 mq->current_envelope->parent_queue = NULL;
901 LOG (GNUNET_ERROR_TYPE_DEBUG,
902 "MQ destroy drops current message of type %u\n",
903 ntohs (mq->current_envelope->mh->type));
904 GNUNET_MQ_discard (mq->current_envelope);
905 mq->current_envelope = NULL;
906 GNUNET_assert (0 < mq->queue_length);
909 GNUNET_assert (0 == mq->queue_length);
910 while (NULL != (dnh = mq->dnh_head))
912 dnh->cb (dnh->cb_cls);
913 GNUNET_MQ_destroy_notify_cancel (dnh);
915 if (NULL != mq->assoc_map)
917 GNUNET_CONTAINER_multihashmap32_destroy (mq->assoc_map);
918 mq->assoc_map = NULL;
920 GNUNET_free_non_null (mq->handlers);
925 const struct GNUNET_MessageHeader *
926 GNUNET_MQ_extract_nested_mh_ (const struct GNUNET_MessageHeader *mh,
930 uint16_t nested_size;
931 const struct GNUNET_MessageHeader *nested_msg;
933 whole_size = ntohs (mh->size);
934 GNUNET_assert (whole_size >= base_size);
935 nested_size = whole_size - base_size;
936 if (0 == nested_size)
938 if (nested_size < sizeof (struct GNUNET_MessageHeader))
943 nested_msg = (const struct GNUNET_MessageHeader *) ((char *) mh + base_size);
944 if (ntohs (nested_msg->size) != nested_size)
954 * Cancel sending the message. Message must have been sent with
955 * #GNUNET_MQ_send before. May not be called after the notify sent
956 * callback has been called
958 * @param ev queued envelope to cancel
961 GNUNET_MQ_send_cancel (struct GNUNET_MQ_Envelope *ev)
963 struct GNUNET_MQ_Handle *mq = ev->parent_queue;
965 GNUNET_assert (NULL != mq);
966 GNUNET_assert (NULL != mq->cancel_impl);
968 mq->evacuate_called = GNUNET_NO;
970 if (mq->current_envelope == ev)
972 /* complex case, we already started with transmitting
973 the message using the callbacks. */
974 GNUNET_assert (GNUNET_NO == mq->in_flight);
975 GNUNET_assert (0 < mq->queue_length);
979 /* continue sending the next message, if any */
980 mq->current_envelope = mq->envelope_head;
981 if (NULL != mq->current_envelope)
983 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
985 mq->current_envelope);
987 LOG (GNUNET_ERROR_TYPE_DEBUG,
988 "sending canceled message of type %u queue\n",
989 ntohs(ev->mh->type));
992 mq->current_envelope->mh,
998 /* simple case, message is still waiting in the queue */
999 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
1002 GNUNET_assert (0 < mq->queue_length);
1006 if (GNUNET_YES != mq->evacuate_called)
1008 ev->parent_queue = NULL;
1017 * Function to obtain the current envelope
1018 * from within #GNUNET_MQ_SendImpl implementations.
1020 * @param mq message queue to interrogate
1021 * @return the current envelope
1023 struct GNUNET_MQ_Envelope *
1024 GNUNET_MQ_get_current_envelope (struct GNUNET_MQ_Handle *mq)
1026 return mq->current_envelope;
1031 * Function to obtain the last envelope in the queue.
1033 * @param mq message queue to interrogate
1034 * @return the last envelope in the queue
1036 struct GNUNET_MQ_Envelope *
1037 GNUNET_MQ_get_last_envelope (struct GNUNET_MQ_Handle *mq)
1039 if (NULL != mq->envelope_tail)
1040 return mq->envelope_tail;
1042 return mq->current_envelope;
1047 * Set application-specific options for this envelope.
1048 * Overrides the options set for the queue with
1049 * #GNUNET_MQ_set_options() for this message only.
1051 * @param env message to set options for
1052 * @param flags flags to use (meaning is queue-specific)
1053 * @param extra additional buffer for further data (also queue-specific)
1056 GNUNET_MQ_env_set_options (struct GNUNET_MQ_Envelope *env,
1062 env->have_custom_options = GNUNET_YES;
1067 * Get application-specific options for this envelope.
1069 * @param env message to set options for
1070 * @param[out] flags set to flags to use (meaning is queue-specific)
1071 * @return extra additional buffer for further data (also queue-specific)
1074 GNUNET_MQ_env_get_options (struct GNUNET_MQ_Envelope *env,
1077 struct GNUNET_MQ_Handle *mq = env->parent_queue;
1079 if (GNUNET_YES == env->have_custom_options)
1081 *flags = env->flags;
1089 *flags = mq->default_flags;
1090 return mq->default_extra;
1095 * Set application-specific options for this queue.
1097 * @param mq message queue to set options for
1098 * @param flags flags to use (meaning is queue-specific)
1099 * @param extra additional buffer for further data (also queue-specific)
1102 GNUNET_MQ_set_options (struct GNUNET_MQ_Handle *mq,
1106 mq->default_flags = flags;
1107 mq->default_extra = extra;
1112 * Obtain message contained in envelope.
1114 * @param env the envelope
1115 * @return message contained in the envelope
1117 const struct GNUNET_MessageHeader *
1118 GNUNET_MQ_env_get_msg (const struct GNUNET_MQ_Envelope *env)
1125 * Return next envelope in queue.
1127 * @param env a queued envelope
1128 * @return next one, or NULL
1130 const struct GNUNET_MQ_Envelope *
1131 GNUNET_MQ_env_next (const struct GNUNET_MQ_Envelope *env)
1138 * Register function to be called whenever @a mq is being
1141 * @param mq message queue to watch
1142 * @param cb function to call on @a mq destruction
1143 * @param cb_cls closure for @a cb
1144 * @return handle for #GNUNET_MQ_destroy_notify_cancel().
1146 struct GNUNET_MQ_DestroyNotificationHandle *
1147 GNUNET_MQ_destroy_notify (struct GNUNET_MQ_Handle *mq,
1148 GNUNET_SCHEDULER_TaskCallback cb,
1151 struct GNUNET_MQ_DestroyNotificationHandle *dnh;
1153 dnh = GNUNET_new (struct GNUNET_MQ_DestroyNotificationHandle);
1156 dnh->cb_cls = cb_cls;
1157 GNUNET_CONTAINER_DLL_insert (mq->dnh_head,
1165 * Cancel registration from #GNUNET_MQ_destroy_notify().
1167 * @param dnh handle for registration to cancel
1170 GNUNET_MQ_destroy_notify_cancel (struct GNUNET_MQ_DestroyNotificationHandle *dnh)
1172 struct GNUNET_MQ_Handle *mq = dnh->mq;
1174 GNUNET_CONTAINER_DLL_remove (mq->dnh_head,
1182 * Insert @a env into the envelope DLL starting at @a env_head
1183 * Note that @a env must not be in any MQ while this function
1184 * is used with DLLs defined outside of the MQ module. This
1185 * is just in case some application needs to also manage a
1186 * FIFO of envelopes independent of MQ itself and wants to
1187 * re-use the pointers internal to @a env. Use with caution.
1189 * @param[in|out] env_head of envelope DLL
1190 * @param[in|out] env_tail tail of envelope DLL
1191 * @param[in|out] env element to insert at the tail
1194 GNUNET_MQ_dll_insert_tail (struct GNUNET_MQ_Envelope **env_head,
1195 struct GNUNET_MQ_Envelope **env_tail,
1196 struct GNUNET_MQ_Envelope *env)
1198 GNUNET_CONTAINER_DLL_insert_tail (*env_head,
1205 * Remove @a env from the envelope DLL starting at @a env_head.
1206 * Note that @a env must not be in any MQ while this function
1207 * is used with DLLs defined outside of the MQ module. This
1208 * is just in case some application needs to also manage a
1209 * FIFO of envelopes independent of MQ itself and wants to
1210 * re-use the pointers internal to @a env. Use with caution.
1212 * @param[in|out] env_head of envelope DLL
1213 * @param[in|out] env_tail tail of envelope DLL
1214 * @param[in|out] env element to remove from the DLL
1217 GNUNET_MQ_dll_remove (struct GNUNET_MQ_Envelope **env_head,
1218 struct GNUNET_MQ_Envelope **env_tail,
1219 struct GNUNET_MQ_Envelope *env)
1221 GNUNET_CONTAINER_DLL_remove (*env_head,
1228 * Copy an array of handlers.
1230 * Useful if the array has been delared in local memory and needs to be
1231 * persisted for future use.
1233 * @param handlers Array of handlers to be copied. Can be NULL (nothing done).
1234 * @return A newly allocated array of handlers.
1235 * Needs to be freed with #GNUNET_free.
1237 struct GNUNET_MQ_MessageHandler *
1238 GNUNET_MQ_copy_handlers (const struct GNUNET_MQ_MessageHandler *handlers)
1240 struct GNUNET_MQ_MessageHandler *copy;
1243 if (NULL == handlers)
1246 count = GNUNET_MQ_count_handlers (handlers);
1247 copy = GNUNET_new_array (count + 1,
1248 struct GNUNET_MQ_MessageHandler);
1249 GNUNET_memcpy (copy,
1251 count * sizeof (struct GNUNET_MQ_MessageHandler));
1257 * Copy an array of handlers, appending AGPL handler.
1259 * Useful if the array has been delared in local memory and needs to be
1260 * persisted for future use.
1262 * @param handlers Array of handlers to be copied. Can be NULL (nothing done).
1263 * @param agpl_handler function to call for AGPL handling
1264 * @param agpl_cls closure for @a agpl_handler
1265 * @return A newly allocated array of handlers.
1266 * Needs to be freed with #GNUNET_free.
1268 struct GNUNET_MQ_MessageHandler *
1269 GNUNET_MQ_copy_handlers2 (const struct GNUNET_MQ_MessageHandler *handlers,
1270 GNUNET_MQ_MessageCallback agpl_handler,
1273 struct GNUNET_MQ_MessageHandler *copy;
1276 if (NULL == handlers)
1278 count = GNUNET_MQ_count_handlers (handlers);
1279 copy = GNUNET_new_array (count + 2,
1280 struct GNUNET_MQ_MessageHandler);
1281 GNUNET_memcpy (copy,
1283 count * sizeof (struct GNUNET_MQ_MessageHandler));
1284 copy[count].mv = NULL;
1285 copy[count].cb = agpl_handler;
1286 copy[count].cls = agpl_cls;
1287 copy[count].type = GNUNET_MESSAGE_TYPE_REQUEST_AGPL;
1288 copy[count].expected_size = sizeof (struct GNUNET_MessageHeader);
1294 * Count the handlers in a handler array.
1296 * @param handlers Array of handlers to be counted.
1297 * @return The number of handlers in the array.
1300 GNUNET_MQ_count_handlers (const struct GNUNET_MQ_MessageHandler *handlers)
1304 if (NULL == handlers)
1307 for (i=0; NULL != handlers[i].cb; i++) ;
1314 * Convert an `enum GNUNET_MQ_PreferenceType` to a string
1316 * @param type the preference type
1317 * @return a string or NULL if invalid
1320 GNUNET_MQ_preference_to_string (enum GNUNET_MQ_PreferenceKind type)
1323 case GNUNET_MQ_PREFERENCE_NONE:
1325 case GNUNET_MQ_PREFERENCE_BANDWIDTH:
1327 case GNUNET_MQ_PREFERENCE_LATENCY:
1329 case GNUNET_MQ_PREFERENCE_RELIABILITY:
1330 return "RELIABILITY";