-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into python-federated
- Loading branch information
Showing
43 changed files
with
3,399 additions
and
684 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,213 @@ | ||
/** | ||
@file | ||
@author Arthur Deng | ||
@author Edward A. Lee | ||
@section LICENSE | ||
Copyright (c) 2021, The University of California at Berkeley. | ||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
1. Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY | ||
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF | ||
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
@section DESCRIPTION | ||
This provides an implementation of a double-ended queue. | ||
Each node contains a void* pointer. | ||
To use this, include the following in your target properties: | ||
To use this, include the following in your target properties: | ||
<pre> | ||
target C { | ||
cmake-include: "/lib/c/reactor-c/util/deque.cmake" | ||
files: ["/lib/c/reactor-c/util/deque.c", "/lib/c/reactor-c/util/deque.h"] | ||
}; | ||
</pre> | ||
In addition, you need this in your Lingua Franca file: | ||
<pre> | ||
preamble {= | ||
#include "deque.h" | ||
=} | ||
</pre> | ||
To create a deque, use calloc to ensure that it gets initialized | ||
with null pointers and zero size: | ||
<pre> | ||
deque_t* my_deque = (deque_t*) calloc(1, sizeof(deque_t)); | ||
</pre> | ||
Alternatively, you can call initialize: | ||
<pre> | ||
deque my_deque; | ||
deque_initialize(&my_deque); | ||
</pre> | ||
*/ | ||
|
||
#include "deque.h" | ||
|
||
/** | ||
* A node in the queue. | ||
*/ | ||
typedef struct deque_node_t { | ||
struct deque_node_t *next; | ||
struct deque_node_t *prev; | ||
void* value; | ||
} deque_node_t; | ||
|
||
/** | ||
* Initialize the specified deque to an empty deque. | ||
* @param d The deque. | ||
*/ | ||
void deque_initialize(deque_t* d) { | ||
if (d != NULL) { | ||
d->front = NULL; | ||
d->back = NULL; | ||
d->size = 0; | ||
} | ||
} | ||
|
||
/** | ||
* Return true if the queue is empty. | ||
* @param d The deque. | ||
*/ | ||
bool deque_is_empty(deque_t* d) { | ||
if (d != NULL) { | ||
return (d->front == NULL); | ||
} | ||
return true; | ||
} | ||
|
||
/** | ||
* Return the size of the queue. | ||
* @param d The deque. | ||
* @return The size of the queue. | ||
*/ | ||
size_t deque_size(deque_t* d) { | ||
return d->size; | ||
} | ||
|
||
/** | ||
* Internal function to create a node to insert in the deque. | ||
* Users should not call this function. It is used internally | ||
* by deque_push_front and deque_push_back. It allocates memory | ||
* that is freed in popped using deque_pop_back and deque_pop_front. | ||
* @param value The payload of the node. | ||
*/ | ||
deque_node_t* _deque_create_node(void* value) { | ||
deque_node_t *new_node = (deque_node_t *) calloc(1, sizeof(deque_node_t)); | ||
new_node->value = value; | ||
return new_node; | ||
} | ||
|
||
/** | ||
* Push a value to the front of the queue. | ||
* @param d The queue. | ||
* @param value The value to push. | ||
*/ | ||
void deque_push_front(deque_t* d, void* value) { | ||
deque_node_t *n = _deque_create_node(value); | ||
if (d->front == NULL) { | ||
d->back = d->front = n; | ||
d->size = 1; | ||
} else { | ||
d->front->prev = n; | ||
n->next = d->front; | ||
d->front = n; | ||
d->size++; | ||
} | ||
} | ||
|
||
/** | ||
* Push a value to the back of the queue. | ||
* @param d The queue. | ||
* @param value The value to push. | ||
*/ | ||
void deque_push_back(deque_t* d, void* value) { | ||
deque_node_t *n = _deque_create_node(value); | ||
if (d->back == NULL) { | ||
d->back = d->front = n; | ||
d->size++; | ||
} else { | ||
d->back->next = n; | ||
n->prev = d->back; | ||
d->back = n; | ||
d->size++; | ||
} | ||
} | ||
|
||
/** | ||
* Pop a value from the front of the queue, removing it from the queue. | ||
* @param d The queue. | ||
* @return The value on the front of the queue or NULL if the queue is empty. | ||
*/ | ||
void* deque_pop_front(deque_t* d) { | ||
if (d == NULL || d->front == NULL) { | ||
return NULL; | ||
} | ||
|
||
void* value = d->front->value; | ||
deque_node_t *temp = d->front; // temporary pointer for freeing up memory | ||
|
||
if (d->front == d->back) { | ||
// popping last element in deque | ||
d->front = d->back = NULL; | ||
} else { | ||
d->front = d->front->next; | ||
} | ||
free(temp); // free memory for popped node | ||
d->size--; | ||
return value; | ||
} | ||
|
||
/** | ||
* Pop a value from the back of the queue, removing it from the queue. | ||
* @param d The queue. | ||
* @return The value on the back of the queue or NULL if the queue is empty. | ||
*/ | ||
void* deque_pop_back(deque_t* d) { | ||
if (d == NULL || d->back == NULL) { | ||
return NULL; | ||
} | ||
|
||
void* value = d->back->value; | ||
deque_node_t *temp = d->back; // temporary pointer for freeing up memory | ||
if (d->front == d->back) { | ||
// popping last element in deque | ||
d->front = d->back = NULL; | ||
} else { | ||
d->back = d->back->prev; | ||
} | ||
free(temp); | ||
d->size--; | ||
return value; | ||
} | ||
|
||
/** | ||
* Peek at the value on the front of the queue, leaving it on the queue. | ||
* @param d The queue. | ||
* @return The value on the front of the queue or NULL if the queue is empty. | ||
*/ | ||
void* deque_peek_back(deque_t* d) { | ||
if (d == NULL || d->back == NULL) { | ||
return NULL; | ||
} | ||
return d->back->value; | ||
} | ||
|
||
/** | ||
* Peek at the value on the back of the queue, leaving it on the queue. | ||
* @param d The queue. | ||
* @return The value on the back of the queue or NULL if the queue is empty. | ||
*/ | ||
void* deque_peek_front(deque_t* d) { | ||
if (d == NULL || d->front == NULL) { | ||
return NULL; | ||
} | ||
return d->front->value; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
target_sources(${LF_MAIN_TARGET} PRIVATE deque.c) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/** | ||
@file | ||
@author Arthur Deng | ||
@author Edward A. Lee | ||
@section LICENSE | ||
Copyright (c) 2021, The University of California at Berkeley. | ||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
1. Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY | ||
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF | ||
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
@section DESCRIPTION | ||
This is the header file for an implementation of a double-ended queue. | ||
Each node in the queue contains a void* pointer. | ||
To use this, include the following in your target properties: | ||
<pre> | ||
target C { | ||
cmake-include: "/lib/c/reactor-c/util/deque.cmake" | ||
files: ["/lib/c/reactor-c/util/deque.c", "/lib/c/reactor-c/util/deque.h"] | ||
}; | ||
</pre> | ||
In addition, you need this in your Lingua Franca file: | ||
<pre> | ||
preamble {= | ||
#include "deque.h" | ||
=} | ||
</pre> | ||
To create a deque, use calloc to ensure that it gets initialized | ||
with null pointers and zero size: | ||
<pre> | ||
deque_t* my_deque = (deque_t*) calloc(1, sizeof(deque_t)); | ||
</pre> | ||
Alternatively, you can call initialize: | ||
<pre> | ||
deque my_deque; | ||
deque_initialize(&my_deque); | ||
</pre> | ||
*/ | ||
|
||
#ifndef DEQUE_H | ||
#define DEQUE_H | ||
|
||
#include <stddef.h> // Defines size_t | ||
#include <stdbool.h> // Defines bool | ||
#include <stdlib.h> // Defines malloc and free | ||
|
||
/** | ||
* A double-ended queue data structure. | ||
*/ | ||
typedef struct deque_t { | ||
struct deque_node_t* front; | ||
struct deque_node_t* back; | ||
size_t size; | ||
} deque_t; | ||
|
||
/** | ||
* Initialize the specified deque to an empty deque. | ||
* @param d The deque. | ||
*/ | ||
void deque_initialize(deque_t* d); | ||
|
||
/** | ||
* Return true if the queue is empty. | ||
* @param d The deque. | ||
*/ | ||
bool deque_is_empty(deque_t* d); | ||
|
||
/** | ||
* Return the size of the queue. | ||
* @param d The deque. | ||
* @return The size of the queue. | ||
*/ | ||
size_t deque_size(deque_t* d); | ||
|
||
/** | ||
* Push a value to the front of the queue. | ||
* @param d The queue. | ||
* @param value The value to push. | ||
*/ | ||
void deque_push_front(deque_t* d, void* value); | ||
|
||
/** | ||
* Push a value to the back of the queue. | ||
* @param d The queue. | ||
* @param value The value to push. | ||
*/ | ||
void deque_push_back(deque_t* d, void* value); | ||
|
||
/** | ||
* Pop a value from the front of the queue, removing it from the queue. | ||
* @param d The queue. | ||
* @return The value on the front of the queue or NULL if the queue is empty. | ||
*/ | ||
void* deque_pop_front(deque_t* d); | ||
|
||
/** | ||
* Pop a value from the back of the queue, removing it from the queue. | ||
* @param d The queue. | ||
* @return The value on the back of the queue or NULL if the queue is empty. | ||
*/ | ||
void* deque_pop_back(deque_t* d); | ||
|
||
/** | ||
* Peek at the value on the front of the queue, leaving it on the queue. | ||
* @param d The queue. | ||
* @return The value on the front of the queue or NULL if the queue is empty. | ||
*/ | ||
void* deque_peek_back(deque_t* d); | ||
|
||
/** | ||
* Peek at the value on the back of the queue, leaving it on the queue. | ||
* @param d The queue. | ||
* @return The value on the back of the queue or NULL if the queue is empty. | ||
*/ | ||
void* deque_peek_front(deque_t* d); | ||
|
||
#endif // DEQUE_H |
Oops, something went wrong.