mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.7 KiB
C
81 lines
2.7 KiB
C
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2020 Software Radio Systems Limited
|
|
*
|
|
* By using this file, you agree to the terms and conditions set
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
* the distribution.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSLTE_RINGBUFFER_H
|
|
#define SRSLTE_RINGBUFFER_H
|
|
|
|
#include "srslte/config.h"
|
|
#include <pthread.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
uint8_t* buffer;
|
|
bool active;
|
|
int capacity;
|
|
int count;
|
|
int wpm;
|
|
int rpm;
|
|
pthread_mutex_t mutex;
|
|
pthread_cond_t write_cvar;
|
|
pthread_cond_t read_cvar;
|
|
} srslte_ringbuffer_t;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SRSLTE_API int srslte_ringbuffer_init(srslte_ringbuffer_t* q, int capacity);
|
|
|
|
SRSLTE_API void srslte_ringbuffer_free(srslte_ringbuffer_t* q);
|
|
|
|
SRSLTE_API void srslte_ringbuffer_reset(srslte_ringbuffer_t* q);
|
|
|
|
SRSLTE_API int srslte_ringbuffer_status(srslte_ringbuffer_t* q);
|
|
|
|
SRSLTE_API int srslte_ringbuffer_space(srslte_ringbuffer_t* q);
|
|
|
|
SRSLTE_API int srslte_ringbuffer_resize(srslte_ringbuffer_t* q, int capacity);
|
|
|
|
// write to the buffer immediately, if there isnt enough space it will overflow
|
|
SRSLTE_API int srslte_ringbuffer_write(srslte_ringbuffer_t* q, void* ptr, int nof_bytes);
|
|
|
|
// block forever until there is enough space then write to buffer
|
|
SRSLTE_API int srslte_ringbuffer_write_block(srslte_ringbuffer_t* q, void* ptr, int nof_bytes);
|
|
|
|
// block for timeout_ms milliseconds, then either write to buffer if there is space or return an error without writing
|
|
SRSLTE_API int srslte_ringbuffer_write_timed(srslte_ringbuffer_t* q, void* ptr, int nof_bytes, int32_t timeout_ms);
|
|
|
|
SRSLTE_API int
|
|
srslte_ringbuffer_write_timed_block(srslte_ringbuffer_t* q, void* ptr, int nof_bytes, int32_t timeout_ms);
|
|
|
|
// read from buffer, blocking until there is enough samples
|
|
SRSLTE_API int srslte_ringbuffer_read(srslte_ringbuffer_t* q, void* ptr, int nof_bytes);
|
|
|
|
// read from buffer, blocking for timeout_ms milliseconds until there is enough samples or return an error
|
|
SRSLTE_API int srslte_ringbuffer_read_timed(srslte_ringbuffer_t* q, void* p, int nof_bytes, int32_t timeout_ms);
|
|
|
|
SRSLTE_API int srslte_ringbuffer_read_timed_block(srslte_ringbuffer_t* q, void* p, int nof_bytes, int32_t timeout_ms);
|
|
|
|
// read samples from the buffer, convert them from uint16_t to cplx float and get the conjugate
|
|
SRSLTE_API int srslte_ringbuffer_read_convert_conj(srslte_ringbuffer_t* q, cf_t* dst_ptr, float norm, int nof_samples);
|
|
|
|
SRSLTE_API int srslte_ringbuffer_read_block(srslte_ringbuffer_t* q, void** p, int nof_bytes, int32_t timeout_ms);
|
|
|
|
SRSLTE_API void srslte_ringbuffer_stop(srslte_ringbuffer_t* q);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // SRSLTE_RINGBUFFER_H
|