2 This file is part of GNUnet.
3 Copyright (C) 2012-2017 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 GNUNET_break (mq->queue_length < 10000); /* This would seem like a bug... */
378 ev->parent_queue = mq;
379 /* is the implementation busy? queue it! */
380 if ( (NULL != mq->current_envelope) ||
381 (NULL != mq->send_task) )
383 GNUNET_CONTAINER_DLL_insert_tail (mq->envelope_head,
388 GNUNET_assert (NULL == mq->envelope_head);
389 mq->current_envelope = ev;
391 LOG (GNUNET_ERROR_TYPE_DEBUG,
392 "sending message of type %u, queue empty (MQ: %p)\n",
403 * Remove the first envelope that has not yet been sent from the message
404 * queue and return it.
406 * @param mq queue to remove envelope from
407 * @return NULL if queue is empty (or has no envelope that is not under transmission)
409 struct GNUNET_MQ_Envelope *
410 GNUNET_MQ_unsent_head (struct GNUNET_MQ_Handle *mq)
412 struct GNUNET_MQ_Envelope *env;
414 env = mq->envelope_head;
415 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
419 env->parent_queue = NULL;
425 * Function to copy an envelope. The envelope must not yet
426 * be in any queue or have any options or callbacks set.
428 * @param env envelope to copy
429 * @return copy of @a env
431 struct GNUNET_MQ_Envelope *
432 GNUNET_MQ_env_copy (struct GNUNET_MQ_Envelope *env)
434 GNUNET_assert (NULL == env->next);
435 GNUNET_assert (NULL == env->parent_queue);
436 GNUNET_assert (NULL == env->sent_cb);
437 GNUNET_assert (GNUNET_NO == env->have_custom_options);
438 return GNUNET_MQ_msg_copy (env->mh);
443 * Send a copy of a message with the given message queue.
444 * Can be called repeatedly on the same envelope.
446 * @param mq message queue
447 * @param ev the envelope with the message to send.
450 GNUNET_MQ_send_copy (struct GNUNET_MQ_Handle *mq,
451 const struct GNUNET_MQ_Envelope *ev)
453 struct GNUNET_MQ_Envelope *env;
456 msize = ntohs (ev->mh->size);
457 env = GNUNET_malloc (sizeof (struct GNUNET_MQ_Envelope) +
459 env->mh = (struct GNUNET_MessageHeader *) &env[1];
460 env->sent_cb = ev->sent_cb;
461 env->sent_cls = ev->sent_cls;
462 GNUNET_memcpy (&env[1],
471 * Task run to call the send implementation for the next queued
472 * message, if any. Only useful for implementing message queues,
473 * results in undefined behavior if not used carefully.
475 * @param cls message queue to send the next message with
478 impl_send_continue (void *cls)
480 struct GNUNET_MQ_Handle *mq = cls;
482 mq->send_task = NULL;
483 /* call is only valid if we're actually currently sending
485 if (NULL == mq->envelope_head)
487 mq->current_envelope = mq->envelope_head;
488 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
490 mq->current_envelope);
492 LOG (GNUNET_ERROR_TYPE_DEBUG,
493 "sending message of type %u from queue\n",
494 ntohs(mq->current_envelope->mh->type));
497 mq->current_envelope->mh,
503 * Call the send implementation for the next queued message, if any.
504 * Only useful for implementing message queues, results in undefined
505 * behavior if not used carefully.
507 * @param mq message queue to send the next message with
510 GNUNET_MQ_impl_send_continue (struct GNUNET_MQ_Handle *mq)
512 struct GNUNET_MQ_Envelope *current_envelope;
513 GNUNET_SCHEDULER_TaskCallback cb;
515 GNUNET_assert (0 < mq->queue_length);
517 mq->in_flight = GNUNET_NO;
518 current_envelope = mq->current_envelope;
519 current_envelope->parent_queue = NULL;
520 mq->current_envelope = NULL;
521 GNUNET_assert (NULL == mq->send_task);
522 mq->send_task = GNUNET_SCHEDULER_add_now (&impl_send_continue,
524 if (NULL != (cb = current_envelope->sent_cb))
526 current_envelope->sent_cb = NULL;
527 cb (current_envelope->sent_cls);
529 GNUNET_free (current_envelope);
534 * Call the send notification for the current message, but do not
535 * try to send the next message until #GNUNET_MQ_impl_send_continue
538 * Only useful for implementing message queues, results in undefined
539 * behavior if not used carefully.
541 * @param mq message queue to send the next message with
544 GNUNET_MQ_impl_send_in_flight (struct GNUNET_MQ_Handle *mq)
546 struct GNUNET_MQ_Envelope *current_envelope;
547 GNUNET_SCHEDULER_TaskCallback cb;
549 mq->in_flight = GNUNET_YES;
550 /* call is only valid if we're actually currently sending
552 current_envelope = mq->current_envelope;
553 GNUNET_assert (NULL != current_envelope);
554 /* can't call cancel from now on anymore */
555 current_envelope->parent_queue = NULL;
556 if (NULL != (cb = current_envelope->sent_cb))
558 current_envelope->sent_cb = NULL;
559 cb (current_envelope->sent_cls);
565 * Create a message queue for the specified handlers.
567 * @param send function the implements sending messages
568 * @param destroy function that implements destroying the queue
569 * @param cancel function that implements canceling a message
570 * @param impl_state for the queue, passed to 'send' and 'destroy'
571 * @param handlers array of message handlers
572 * @param error_handler handler for read and write errors
573 * @param error_handler_cls closure for @a error_handler
574 * @return a new message queue
576 struct GNUNET_MQ_Handle *
577 GNUNET_MQ_queue_for_callbacks (GNUNET_MQ_SendImpl send,
578 GNUNET_MQ_DestroyImpl destroy,
579 GNUNET_MQ_CancelImpl cancel,
581 const struct GNUNET_MQ_MessageHandler *handlers,
582 GNUNET_MQ_ErrorHandler error_handler,
583 void *error_handler_cls)
585 struct GNUNET_MQ_Handle *mq;
587 mq = GNUNET_new (struct GNUNET_MQ_Handle);
588 mq->send_impl = send;
589 mq->destroy_impl = destroy;
590 mq->cancel_impl = cancel;
591 mq->handlers = GNUNET_MQ_copy_handlers (handlers);
592 mq->error_handler = error_handler;
593 mq->error_handler_cls = error_handler_cls;
594 mq->impl_state = impl_state;
601 * Change the closure argument in all of the `handlers` of the
604 * @param mq to modify
605 * @param handlers_cls new closure to use
608 GNUNET_MQ_set_handlers_closure (struct GNUNET_MQ_Handle *mq,
611 if (NULL == mq->handlers)
613 for (unsigned int i=0;NULL != mq->handlers[i].cb; i++)
614 mq->handlers[i].cls = handlers_cls;
619 * Get the message that should currently be sent.
620 * Fails if there is no current message.
621 * Only useful for implementing message queues,
622 * results in undefined behavior if not used carefully.
624 * @param mq message queue with the current message
625 * @return message to send, never NULL
627 const struct GNUNET_MessageHeader *
628 GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq)
630 GNUNET_assert (NULL != mq->current_envelope);
631 GNUNET_assert (NULL != mq->current_envelope->mh);
632 return mq->current_envelope->mh;
637 * Get the implementation state associated with the
640 * While the GNUNET_MQ_Impl* callbacks receive the
641 * implementation state, continuations that are scheduled
642 * by the implementation function often only have one closure
643 * argument, with this function it is possible to get at the
644 * implementation state when only passing the GNUNET_MQ_Handle
647 * @param mq message queue with the current message
648 * @return message to send, never NULL
651 GNUNET_MQ_impl_state (struct GNUNET_MQ_Handle *mq)
653 return mq->impl_state;
657 struct GNUNET_MQ_Envelope *
658 GNUNET_MQ_msg_ (struct GNUNET_MessageHeader **mhp,
662 struct GNUNET_MQ_Envelope *ev;
664 ev = GNUNET_malloc (size + sizeof (struct GNUNET_MQ_Envelope));
665 ev->mh = (struct GNUNET_MessageHeader *) &ev[1];
666 ev->mh->size = htons (size);
667 ev->mh->type = htons (type);
675 * Create a new envelope by copying an existing message.
677 * @param hdr header of the message to copy
678 * @return envelope containing @a hdr
680 struct GNUNET_MQ_Envelope *
681 GNUNET_MQ_msg_copy (const struct GNUNET_MessageHeader *hdr)
683 struct GNUNET_MQ_Envelope *mqm;
684 uint16_t size = ntohs (hdr->size);
686 mqm = GNUNET_malloc (sizeof (*mqm) + size);
687 mqm->mh = (struct GNUNET_MessageHeader *) &mqm[1];
688 GNUNET_memcpy (mqm->mh,
696 * Implementation of the #GNUNET_MQ_msg_nested_mh macro.
698 * @param mhp pointer to the message header pointer that will be changed to allocate at
699 * the newly allocated space for the message.
700 * @param base_size size of the data before the nested message
701 * @param type type of the message in the envelope
702 * @param nested_mh the message to append to the message after base_size
704 struct GNUNET_MQ_Envelope *
705 GNUNET_MQ_msg_nested_mh_ (struct GNUNET_MessageHeader **mhp,
708 const struct GNUNET_MessageHeader *nested_mh)
710 struct GNUNET_MQ_Envelope *mqm;
713 if (NULL == nested_mh)
714 return GNUNET_MQ_msg_ (mhp, base_size, type);
716 size = base_size + ntohs (nested_mh->size);
718 /* check for uint16_t overflow */
719 if (size < base_size)
722 mqm = GNUNET_MQ_msg_ (mhp, size, type);
723 GNUNET_memcpy ((char *) mqm->mh + base_size,
725 ntohs (nested_mh->size));
732 * Associate the assoc_data in mq with a unique request id.
734 * @param mq message queue, id will be unique for the queue
735 * @param assoc_data to associate
738 GNUNET_MQ_assoc_add (struct GNUNET_MQ_Handle *mq,
743 if (NULL == mq->assoc_map)
745 mq->assoc_map = GNUNET_CONTAINER_multihashmap32_create (8);
749 GNUNET_assert (GNUNET_OK ==
750 GNUNET_CONTAINER_multihashmap32_put (mq->assoc_map,
753 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
759 * Get the data associated with a @a request_id in a queue
761 * @param mq the message queue with the association
762 * @param request_id the request id we are interested in
763 * @return the associated data
766 GNUNET_MQ_assoc_get (struct GNUNET_MQ_Handle *mq,
769 if (NULL == mq->assoc_map)
771 return GNUNET_CONTAINER_multihashmap32_get (mq->assoc_map,
777 * Remove the association for a @a request_id
779 * @param mq the message queue with the association
780 * @param request_id the request id we want to remove
781 * @return the associated data
784 GNUNET_MQ_assoc_remove (struct GNUNET_MQ_Handle *mq,
789 if (NULL == mq->assoc_map)
791 val = GNUNET_CONTAINER_multihashmap32_get (mq->assoc_map,
793 GNUNET_CONTAINER_multihashmap32_remove_all (mq->assoc_map,
800 * Call a callback once the envelope has been sent, that is,
801 * sending it can not be canceled anymore.
802 * There can be only one notify sent callback per envelope.
804 * @param ev message to call the notify callback for
805 * @param cb the notify callback
806 * @param cb_cls closure for the callback
809 GNUNET_MQ_notify_sent (struct GNUNET_MQ_Envelope *ev,
810 GNUNET_SCHEDULER_TaskCallback cb,
813 /* allow setting *OR* clearing callback */
814 GNUNET_assert ( (NULL == ev->sent_cb) ||
817 ev->sent_cls = cb_cls;
822 * Handle we return for callbacks registered to be
823 * notified when #GNUNET_MQ_destroy() is called on a queue.
825 struct GNUNET_MQ_DestroyNotificationHandle
830 struct GNUNET_MQ_DestroyNotificationHandle *prev;
835 struct GNUNET_MQ_DestroyNotificationHandle *next;
838 * Queue to notify about.
840 struct GNUNET_MQ_Handle *mq;
845 GNUNET_SCHEDULER_TaskCallback cb;
855 * Destroy the message queue.
857 * @param mq message queue to destroy
860 GNUNET_MQ_destroy (struct GNUNET_MQ_Handle *mq)
862 struct GNUNET_MQ_DestroyNotificationHandle *dnh;
864 if (NULL != mq->destroy_impl)
866 mq->destroy_impl (mq, mq->impl_state);
868 if (NULL != mq->send_task)
870 GNUNET_SCHEDULER_cancel (mq->send_task);
871 mq->send_task = NULL;
873 while (NULL != mq->envelope_head)
875 struct GNUNET_MQ_Envelope *ev;
877 ev = mq->envelope_head;
878 ev->parent_queue = NULL;
879 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
882 GNUNET_assert (0 < mq->queue_length);
884 LOG (GNUNET_ERROR_TYPE_DEBUG,
885 "MQ destroy drops message of type %u\n",
886 ntohs (ev->mh->type));
887 GNUNET_MQ_discard (ev);
889 if (NULL != mq->current_envelope)
891 /* we can only discard envelopes that
893 mq->current_envelope->parent_queue = NULL;
894 LOG (GNUNET_ERROR_TYPE_DEBUG,
895 "MQ destroy drops current message of type %u\n",
896 ntohs (mq->current_envelope->mh->type));
897 GNUNET_MQ_discard (mq->current_envelope);
898 mq->current_envelope = NULL;
899 GNUNET_assert (0 < mq->queue_length);
902 GNUNET_assert (0 == mq->queue_length);
903 while (NULL != (dnh = mq->dnh_head))
905 dnh->cb (dnh->cb_cls);
906 GNUNET_MQ_destroy_notify_cancel (dnh);
908 if (NULL != mq->assoc_map)
910 GNUNET_CONTAINER_multihashmap32_destroy (mq->assoc_map);
911 mq->assoc_map = NULL;
913 GNUNET_free_non_null (mq->handlers);
918 const struct GNUNET_MessageHeader *
919 GNUNET_MQ_extract_nested_mh_ (const struct GNUNET_MessageHeader *mh,
923 uint16_t nested_size;
924 const struct GNUNET_MessageHeader *nested_msg;
926 whole_size = ntohs (mh->size);
927 GNUNET_assert (whole_size >= base_size);
928 nested_size = whole_size - base_size;
929 if (0 == nested_size)
931 if (nested_size < sizeof (struct GNUNET_MessageHeader))
936 nested_msg = (const struct GNUNET_MessageHeader *) ((char *) mh + base_size);
937 if (ntohs (nested_msg->size) != nested_size)
947 * Cancel sending the message. Message must have been sent with
948 * #GNUNET_MQ_send before. May not be called after the notify sent
949 * callback has been called
951 * @param ev queued envelope to cancel
954 GNUNET_MQ_send_cancel (struct GNUNET_MQ_Envelope *ev)
956 struct GNUNET_MQ_Handle *mq = ev->parent_queue;
958 GNUNET_assert (NULL != mq);
959 GNUNET_assert (NULL != mq->cancel_impl);
961 mq->evacuate_called = GNUNET_NO;
963 if (mq->current_envelope == ev)
965 /* complex case, we already started with transmitting
966 the message using the callbacks. */
967 GNUNET_assert (GNUNET_NO == mq->in_flight);
968 GNUNET_assert (0 < mq->queue_length);
972 /* continue sending the next message, if any */
973 mq->current_envelope = mq->envelope_head;
974 if (NULL != mq->current_envelope)
976 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
978 mq->current_envelope);
980 LOG (GNUNET_ERROR_TYPE_DEBUG,
981 "sending canceled message of type %u queue\n",
982 ntohs(ev->mh->type));
985 mq->current_envelope->mh,
991 /* simple case, message is still waiting in the queue */
992 GNUNET_CONTAINER_DLL_remove (mq->envelope_head,
995 GNUNET_assert (0 < mq->queue_length);
999 if (GNUNET_YES != mq->evacuate_called)
1001 ev->parent_queue = NULL;
1010 * Function to obtain the current envelope
1011 * from within #GNUNET_MQ_SendImpl implementations.
1013 * @param mq message queue to interrogate
1014 * @return the current envelope
1016 struct GNUNET_MQ_Envelope *
1017 GNUNET_MQ_get_current_envelope (struct GNUNET_MQ_Handle *mq)
1019 return mq->current_envelope;
1024 * Function to obtain the last envelope in the queue.
1026 * @param mq message queue to interrogate
1027 * @return the last envelope in the queue
1029 struct GNUNET_MQ_Envelope *
1030 GNUNET_MQ_get_last_envelope (struct GNUNET_MQ_Handle *mq)
1032 if (NULL != mq->envelope_tail)
1033 return mq->envelope_tail;
1035 return mq->current_envelope;
1040 * Set application-specific options for this envelope.
1041 * Overrides the options set for the queue with
1042 * #GNUNET_MQ_set_options() for this message only.
1044 * @param env message to set options for
1045 * @param flags flags to use (meaning is queue-specific)
1046 * @param extra additional buffer for further data (also queue-specific)
1049 GNUNET_MQ_env_set_options (struct GNUNET_MQ_Envelope *env,
1055 env->have_custom_options = GNUNET_YES;
1060 * Get application-specific options for this envelope.
1062 * @param env message to set options for
1063 * @param[out] flags set to flags to use (meaning is queue-specific)
1064 * @return extra additional buffer for further data (also queue-specific)
1067 GNUNET_MQ_env_get_options (struct GNUNET_MQ_Envelope *env,
1070 struct GNUNET_MQ_Handle *mq = env->parent_queue;
1072 if (GNUNET_YES == env->have_custom_options)
1074 *flags = env->flags;
1082 *flags = mq->default_flags;
1083 return mq->default_extra;
1088 * Set application-specific options for this queue.
1090 * @param mq message queue to set options for
1091 * @param flags flags to use (meaning is queue-specific)
1092 * @param extra additional buffer for further data (also queue-specific)
1095 GNUNET_MQ_set_options (struct GNUNET_MQ_Handle *mq,
1099 mq->default_flags = flags;
1100 mq->default_extra = extra;
1105 * Obtain message contained in envelope.
1107 * @param env the envelope
1108 * @return message contained in the envelope
1110 const struct GNUNET_MessageHeader *
1111 GNUNET_MQ_env_get_msg (const struct GNUNET_MQ_Envelope *env)
1118 * Return next envelope in queue.
1120 * @param env a queued envelope
1121 * @return next one, or NULL
1123 const struct GNUNET_MQ_Envelope *
1124 GNUNET_MQ_env_next (const struct GNUNET_MQ_Envelope *env)
1131 * Register function to be called whenever @a mq is being
1134 * @param mq message queue to watch
1135 * @param cb function to call on @a mq destruction
1136 * @param cb_cls closure for @a cb
1137 * @return handle for #GNUNET_MQ_destroy_notify_cancel().
1139 struct GNUNET_MQ_DestroyNotificationHandle *
1140 GNUNET_MQ_destroy_notify (struct GNUNET_MQ_Handle *mq,
1141 GNUNET_SCHEDULER_TaskCallback cb,
1144 struct GNUNET_MQ_DestroyNotificationHandle *dnh;
1146 dnh = GNUNET_new (struct GNUNET_MQ_DestroyNotificationHandle);
1149 dnh->cb_cls = cb_cls;
1150 GNUNET_CONTAINER_DLL_insert (mq->dnh_head,
1158 * Cancel registration from #GNUNET_MQ_destroy_notify().
1160 * @param dnh handle for registration to cancel
1163 GNUNET_MQ_destroy_notify_cancel (struct GNUNET_MQ_DestroyNotificationHandle *dnh)
1165 struct GNUNET_MQ_Handle *mq = dnh->mq;
1167 GNUNET_CONTAINER_DLL_remove (mq->dnh_head,
1175 * Insert @a env into the envelope DLL starting at @a env_head
1176 * Note that @a env must not be in any MQ while this function
1177 * is used with DLLs defined outside of the MQ module. This
1178 * is just in case some application needs to also manage a
1179 * FIFO of envelopes independent of MQ itself and wants to
1180 * re-use the pointers internal to @a env. Use with caution.
1182 * @param[in|out] env_head of envelope DLL
1183 * @param[in|out] env_tail tail of envelope DLL
1184 * @param[in|out] env element to insert at the tail
1187 GNUNET_MQ_dll_insert_tail (struct GNUNET_MQ_Envelope **env_head,
1188 struct GNUNET_MQ_Envelope **env_tail,
1189 struct GNUNET_MQ_Envelope *env)
1191 GNUNET_CONTAINER_DLL_insert_tail (*env_head,
1198 * Remove @a env from the envelope DLL starting at @a env_head.
1199 * Note that @a env must not be in any MQ while this function
1200 * is used with DLLs defined outside of the MQ module. This
1201 * is just in case some application needs to also manage a
1202 * FIFO of envelopes independent of MQ itself and wants to
1203 * re-use the pointers internal to @a env. Use with caution.
1205 * @param[in|out] env_head of envelope DLL
1206 * @param[in|out] env_tail tail of envelope DLL
1207 * @param[in|out] env element to remove from the DLL
1210 GNUNET_MQ_dll_remove (struct GNUNET_MQ_Envelope **env_head,
1211 struct GNUNET_MQ_Envelope **env_tail,
1212 struct GNUNET_MQ_Envelope *env)
1214 GNUNET_CONTAINER_DLL_remove (*env_head,
1221 * Copy an array of handlers.
1223 * Useful if the array has been delared in local memory and needs to be
1224 * persisted for future use.
1226 * @param handlers Array of handlers to be copied. Can be NULL (nothing done).
1227 * @return A newly allocated array of handlers.
1228 * Needs to be freed with #GNUNET_free.
1230 struct GNUNET_MQ_MessageHandler *
1231 GNUNET_MQ_copy_handlers (const struct GNUNET_MQ_MessageHandler *handlers)
1233 struct GNUNET_MQ_MessageHandler *copy;
1236 if (NULL == handlers)
1239 count = GNUNET_MQ_count_handlers (handlers);
1240 copy = GNUNET_new_array (count + 1,
1241 struct GNUNET_MQ_MessageHandler);
1242 GNUNET_memcpy (copy,
1244 count * sizeof (struct GNUNET_MQ_MessageHandler));
1250 * Copy an array of handlers, appending AGPL handler.
1252 * Useful if the array has been delared in local memory and needs to be
1253 * persisted for future use.
1255 * @param handlers Array of handlers to be copied. Can be NULL (nothing done).
1256 * @param agpl_handler function to call for AGPL handling
1257 * @param agpl_cls closure for @a agpl_handler
1258 * @return A newly allocated array of handlers.
1259 * Needs to be freed with #GNUNET_free.
1261 struct GNUNET_MQ_MessageHandler *
1262 GNUNET_MQ_copy_handlers2 (const struct GNUNET_MQ_MessageHandler *handlers,
1263 GNUNET_MQ_MessageCallback agpl_handler,
1266 struct GNUNET_MQ_MessageHandler *copy;
1269 if (NULL == handlers)
1271 count = GNUNET_MQ_count_handlers (handlers);
1272 copy = GNUNET_new_array (count + 2,
1273 struct GNUNET_MQ_MessageHandler);
1274 GNUNET_memcpy (copy,
1276 count * sizeof (struct GNUNET_MQ_MessageHandler));
1277 copy[count].mv = NULL;
1278 copy[count].cb = agpl_handler;
1279 copy[count].cls = agpl_cls;
1280 copy[count].type = GNUNET_MESSAGE_TYPE_REQUEST_AGPL;
1281 copy[count].expected_size = sizeof (struct GNUNET_MessageHeader);
1287 * Count the handlers in a handler array.
1289 * @param handlers Array of handlers to be counted.
1290 * @return The number of handlers in the array.
1293 GNUNET_MQ_count_handlers (const struct GNUNET_MQ_MessageHandler *handlers)
1297 if (NULL == handlers)
1300 for (i=0; NULL != handlers[i].cb; i++) ;
1307 * Convert an `enum GNUNET_MQ_PreferenceType` to a string
1309 * @param type the preference type
1310 * @return a string or NULL if invalid
1313 GNUNET_MQ_preference_to_string (enum GNUNET_MQ_PreferenceKind type)
1316 case GNUNET_MQ_PREFERENCE_NONE:
1318 case GNUNET_MQ_PREFERENCE_BANDWIDTH:
1320 case GNUNET_MQ_PREFERENCE_LATENCY:
1322 case GNUNET_MQ_PREFERENCE_RELIABILITY:
1323 return "RELIABILITY";