153 lines
5.5 KiB
C
153 lines
5.5 KiB
C
/*
|
|
* Copyright (c) 2018-2019, Texas Instruments Incorporated
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* * 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.
|
|
*
|
|
* * Neither the name of Texas Instruments Incorporated nor the names of
|
|
* its contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* 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 OWNER 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.
|
|
*/
|
|
|
|
#ifndef ti_drivers_utils_StructRingBuf__include
|
|
#define ti_drivers_utils_StructRingBuf__include
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
uint8_t *buffer;
|
|
size_t length;
|
|
size_t count;
|
|
size_t head;
|
|
size_t tail;
|
|
size_t maxCount;
|
|
size_t structSize;
|
|
} StructRingBuf_Object, *StructRingBuf_Handle;
|
|
|
|
/*!
|
|
* @brief Initialize circular buffer
|
|
*
|
|
* @param object Pointer to a StructRingBuf Object that contains the member variables to
|
|
* operate a circular buffer.
|
|
*
|
|
* @param bufPtr Pointer to data buffer to be used for the circular buffer. The
|
|
* buffer is NOT stored in StructRingBuf_Object.
|
|
*
|
|
* @param bufSize The size of bufPtr in number of structures
|
|
*
|
|
* @param structSize The size of a member structure in bytes
|
|
*/
|
|
void StructRingBuf_construct(StructRingBuf_Handle object, void *bufPtr,
|
|
size_t bufSize, size_t structSize);
|
|
|
|
/*!
|
|
* @brief Get an unsigned char from the end of the circular buffer and remove
|
|
* it.
|
|
*
|
|
* @param object Pointer to a StructRingBuf Object that contains the member variables to
|
|
* operate a circular buffer.
|
|
*
|
|
* @param data Pointer to an unsigned char to be filled with the data from the
|
|
* front of the circular buffer.
|
|
*
|
|
* @return Number of unsigned chars on the buffer after taking it out of the
|
|
* circular buffer. If it returns -1, the circular buffer was already
|
|
* empty and data is invalid.
|
|
*/
|
|
int StructRingBuf_get(StructRingBuf_Handle object, void *data);
|
|
|
|
/*!
|
|
* @brief Get the number of unsigned chars currently stored on the circular
|
|
* buffer.
|
|
*
|
|
* @param object Pointer to a StructRingBuf Object that contains the member variables to
|
|
* operate a circular buffer.
|
|
*
|
|
* @return Number of unsigned chars on the circular buffer.
|
|
*/
|
|
int StructRingBuf_getCount(StructRingBuf_Handle object);
|
|
|
|
/*!
|
|
* @brief Function to determine if the circular buffer is full or not.
|
|
*
|
|
* @param object Pointer to a StructRingBuf Object that contains the member variables to
|
|
* operate a circular buffer.
|
|
*
|
|
* @return true if circular buffer is full, else false.
|
|
*/
|
|
bool StructRingBuf_isFull(StructRingBuf_Handle object);
|
|
|
|
/*!
|
|
* @brief A high-water mark indicating the largest number of unsigned chars
|
|
* stored on the circular buffer since it was constructed.
|
|
*
|
|
* @return Get the largest number of unsigned chars that were at one point in
|
|
* the circular buffer.
|
|
*/
|
|
int StructRingBuf_getMaxCount(StructRingBuf_Handle object);
|
|
|
|
/*!
|
|
* @brief Get an unsigned char from the end of the circular buffer without
|
|
* remove it.
|
|
*
|
|
* @param object Pointer to a StructRingBuf Object that contains the member variables to
|
|
* operate a circular buffer.
|
|
*
|
|
* @param data Pointer to an unsigned char to be filled with the data from the
|
|
* front of the circular buffer. This function does not remove the data
|
|
* from the circular buffer. Do not evaluate data if the count returned
|
|
* is equal to 0.
|
|
*
|
|
* @return Number of unsigned chars on the circular buffer. If the number != 0,
|
|
* then data will contain the unsigned char at the end of the circular
|
|
* buffer.
|
|
*/
|
|
int StructRingBuf_peek(StructRingBuf_Handle object, void **data);
|
|
|
|
/*!
|
|
* @brief Put an unsigned char into the end of the circular buffer.
|
|
*
|
|
* @param object Pointer to a StructRingBuf Object that contains the member variables to
|
|
* operate a circular buffer.
|
|
*
|
|
* @param data unsigned char to be placed at the end of the circular buffer.
|
|
*
|
|
* @return Number of unsigned chars on the buffer after it was added, or -1 if
|
|
* it's already full.
|
|
*/
|
|
int StructRingBuf_put(StructRingBuf_Handle object, const void *data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ti_drivers_utils_StructRingBuf__include */
|