blob: adbc5be1bde655a6d6c245d82f462ba42824d2ee [file] [log] [blame]
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -07001/******************************************************************************
2 *
Jakub Pawlowski5b790fe2017-09-18 09:00:20 -07003 * Copyright 2014 Google, Inc.
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -07004 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
Sharvil Nanavatic11b4072014-05-02 23:55:09 -070019#pragma once
20
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -070021#include <stdbool.h>
Marie Janssen49a86702015-07-08 11:48:57 -070022#include <stdlib.h>
Sharvil Nanavatic11b4072014-05-02 23:55:09 -070023
Pavlin Radoslavov1a3844f2015-09-25 11:21:15 -070024#include "osi/include/list.h"
25
Sharvil Nanavatic11b4072014-05-02 23:55:09 -070026struct fixed_queue_t;
27typedef struct fixed_queue_t fixed_queue_t;
Zach Johnsonbd522a42014-08-15 16:44:46 -070028typedef struct reactor_t reactor_t;
Sharvil Nanavatic11b4072014-05-02 23:55:09 -070029
Myles Watsonb55040c2016-10-19 13:15:34 -070030typedef void (*fixed_queue_free_cb)(void* data);
31typedef void (*fixed_queue_cb)(fixed_queue_t* queue, void* context);
Sharvil Nanavatic11b4072014-05-02 23:55:09 -070032
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -070033// Creates a new fixed queue with the given |capacity|. If more elements than
34// |capacity| are added to the queue, the caller is blocked until space is
35// made available in the queue. Returns NULL on failure. The caller must free
36// the returned queue with |fixed_queue_free|.
Myles Watsonb55040c2016-10-19 13:15:34 -070037fixed_queue_t* fixed_queue_new(size_t capacity);
Sharvil Nanavatic11b4072014-05-02 23:55:09 -070038
Pavlin Radoslavov3335cf42016-08-19 15:32:30 -070039// Frees a queue and (optionally) the enqueued elements.
40// |queue| is the queue to free. If the |free_cb| callback is not null,
41// it is called on each queue element to free it.
Sharvil Nanavatic11b4072014-05-02 23:55:09 -070042// Freeing a queue that is currently in use (i.e. has waiters
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -070043// blocked on it) results in undefined behaviour.
Myles Watsonb55040c2016-10-19 13:15:34 -070044void fixed_queue_free(fixed_queue_t* queue, fixed_queue_free_cb free_cb);
Sharvil Nanavatic11b4072014-05-02 23:55:09 -070045
Pavlin Radoslavov3335cf42016-08-19 15:32:30 -070046// Flushes a queue and (optionally) frees the enqueued elements.
47// |queue| is the queue to flush. If the |free_cb| callback is not null,
48// it is called on each queue element to free it.
Myles Watsonb55040c2016-10-19 13:15:34 -070049void fixed_queue_flush(fixed_queue_t* queue, fixed_queue_free_cb free_cb);
Pavlin Radoslavov3335cf42016-08-19 15:32:30 -070050
Pavlin Radoslavov577862e2015-10-07 18:07:48 -070051// Returns a value indicating whether the given |queue| is empty. If |queue|
52// is NULL, the return value is true.
Myles Watsonb55040c2016-10-19 13:15:34 -070053bool fixed_queue_is_empty(fixed_queue_t* queue);
Zach Johnson93a1c802014-07-30 13:40:09 -070054
Pavlin Radoslavov577862e2015-10-07 18:07:48 -070055// Returns the length of the |queue|. If |queue| is NULL, the return value
56// is 0.
Myles Watsonb55040c2016-10-19 13:15:34 -070057size_t fixed_queue_length(fixed_queue_t* queue);
Pavlin Radoslavov1a3844f2015-09-25 11:21:15 -070058
Chris Mantonc446cbe2014-08-05 11:07:23 -070059// Returns the maximum number of elements this queue may hold. |queue| may
60// not be NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -070061size_t fixed_queue_capacity(fixed_queue_t* queue);
Chris Mantonc446cbe2014-08-05 11:07:23 -070062
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -070063// Enqueues the given |data| into the |queue|. The caller will be blocked
Pavlin Radoslavov153bdfb2015-11-13 18:36:56 -080064// if no more space is available in the queue. Neither |queue| nor |data|
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -070065// may be NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -070066void fixed_queue_enqueue(fixed_queue_t* queue, void* data);
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -070067
68// Dequeues the next element from |queue|. If the queue is currently empty,
69// this function will block the caller until an item is enqueued. This
70// function will never return NULL. |queue| may not be NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -070071void* fixed_queue_dequeue(fixed_queue_t* queue);
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -070072
73// Tries to enqueue |data| into the |queue|. This function will never block
74// the caller. If the queue capacity would be exceeded by adding one more
75// element, this function returns false immediately. Otherwise, this function
76// returns true. Neither |queue| nor |data| may be NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -070077bool fixed_queue_try_enqueue(fixed_queue_t* queue, void* data);
Sharvil Nanavatic5856ba2014-06-23 12:25:40 -070078
79// Tries to dequeue an element from |queue|. This function will never block
Pavlin Radoslavov577862e2015-10-07 18:07:48 -070080// the caller. If the queue is empty or NULL, this function returns NULL
81// immediately. Otherwise, the next element in the queue is returned.
Myles Watsonb55040c2016-10-19 13:15:34 -070082void* fixed_queue_try_dequeue(fixed_queue_t* queue);
Sharvil Nanavatiab606b52014-07-04 16:33:37 -070083
Zach Johnsonbd522a42014-08-15 16:44:46 -070084// Returns the first element from |queue|, if present, without dequeuing it.
Pavlin Radoslavov1a3844f2015-09-25 11:21:15 -070085// This function will never block the caller. Returns NULL if there are no
Pavlin Radoslavov577862e2015-10-07 18:07:48 -070086// elements in the queue or |queue| is NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -070087void* fixed_queue_try_peek_first(fixed_queue_t* queue);
Pavlin Radoslavov1a3844f2015-09-25 11:21:15 -070088
89// Returns the last element from |queue|, if present, without dequeuing it.
90// This function will never block the caller. Returns NULL if there are no
Pavlin Radoslavov577862e2015-10-07 18:07:48 -070091// elements in the queue or |queue| is NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -070092void* fixed_queue_try_peek_last(fixed_queue_t* queue);
Pavlin Radoslavov1a3844f2015-09-25 11:21:15 -070093
94// Tries to remove a |data| element from the middle of the |queue|. This
Pavlin Radoslavov153bdfb2015-11-13 18:36:56 -080095// function will never block the caller. If the queue is empty or NULL, this
96// function returns NULL immediately. |data| may not be NULL. If the |data|
97// element is found in the queue, a pointer to the removed data is returned,
98// otherwise NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -070099void* fixed_queue_try_remove_from_queue(fixed_queue_t* queue, void* data);
Pavlin Radoslavov1a3844f2015-09-25 11:21:15 -0700100
101// Returns the iterateable list with all entries in the |queue|. This function
102// will never block the caller. |queue| may not be NULL.
103//
104// NOTE: The return result of this function is not thread safe: the list could
105// be modified by another thread, and the result would be unpredictable.
Pavlin Radoslavov153bdfb2015-11-13 18:36:56 -0800106// TODO: The usage of this function should be refactored, and the function
107// itself should be removed.
Myles Watsonb55040c2016-10-19 13:15:34 -0700108list_t* fixed_queue_get_list(fixed_queue_t* queue);
Zach Johnsonbd522a42014-08-15 16:44:46 -0700109
Sharvil Nanavatiab606b52014-07-04 16:33:37 -0700110// This function returns a valid file descriptor. Callers may perform one
111// operation on the fd: select(2). If |select| indicates that the file
112// descriptor is readable, the caller may call |fixed_queue_enqueue| without
113// blocking. The caller must not close the returned file descriptor. |queue|
114// may not be NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -0700115int fixed_queue_get_enqueue_fd(const fixed_queue_t* queue);
Sharvil Nanavatiab606b52014-07-04 16:33:37 -0700116
117// This function returns a valid file descriptor. Callers may perform one
118// operation on the fd: select(2). If |select| indicates that the file
119// descriptor is readable, the caller may call |fixed_queue_dequeue| without
120// blocking. The caller must not close the returned file descriptor. |queue|
121// may not be NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -0700122int fixed_queue_get_dequeue_fd(const fixed_queue_t* queue);
Zach Johnsonbd522a42014-08-15 16:44:46 -0700123
Myles Watsonb55040c2016-10-19 13:15:34 -0700124// Registers |queue| with |reactor| for dequeue operations. When there is an
Myles Watson9ca07092016-11-28 16:41:53 -0800125// element in the queue, ready_cb will be called. The |context| parameter is
126// passed, untouched, to the callback routine. Neither |queue|, nor |reactor|,
127// nor |read_cb| may be NULL. |context| may be NULL.
Myles Watsonb55040c2016-10-19 13:15:34 -0700128void fixed_queue_register_dequeue(fixed_queue_t* queue, reactor_t* reactor,
129 fixed_queue_cb ready_cb, void* context);
Zach Johnsonbd522a42014-08-15 16:44:46 -0700130
131// Unregisters the dequeue ready callback for |queue| from whichever reactor
132// it is registered with, if any. This function is idempotent.
Myles Watsonb55040c2016-10-19 13:15:34 -0700133void fixed_queue_unregister_dequeue(fixed_queue_t* queue);