mirror of https://github.com/pvnis/srsRAN_4G.git
Merge branch 'next' into rlc_updates
commit
51e093e611
@ -1,155 +0,0 @@
|
|||||||
/**
|
|
||||||
*
|
|
||||||
* \section COPYRIGHT
|
|
||||||
*
|
|
||||||
* Copyright 2013-2015 Software Radio Systems Limited
|
|
||||||
*
|
|
||||||
* \section LICENSE
|
|
||||||
*
|
|
||||||
* This file is part of the srsUE library.
|
|
||||||
*
|
|
||||||
* srsUE is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU Affero General Public License as
|
|
||||||
* published by the Free Software Foundation, either version 3 of
|
|
||||||
* the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* srsUE is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU Affero General Public License for more details.
|
|
||||||
*
|
|
||||||
* A copy of the GNU Affero General Public License can be found in
|
|
||||||
* the LICENSE file in the top-level directory of this distribution
|
|
||||||
* and at http://www.gnu.org/licenses/.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
/******************************************************************************
|
|
||||||
* File: msg_queue.h
|
|
||||||
* Description: Thread-safe bounded circular buffer of srsue_byte_buffer pointers.
|
|
||||||
* Reference:
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#ifndef SRSLTE_MSG_QUEUE_H
|
|
||||||
#define SRSLTE_MSG_QUEUE_H
|
|
||||||
|
|
||||||
#include "srslte/common/common.h"
|
|
||||||
#include <pthread.h>
|
|
||||||
|
|
||||||
namespace srslte {
|
|
||||||
|
|
||||||
class msg_queue
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
msg_queue(uint32_t capacity_ = 128)
|
|
||||||
:head(0)
|
|
||||||
,tail(0)
|
|
||||||
,unread(0)
|
|
||||||
,unread_bytes(0)
|
|
||||||
,capacity(capacity_)
|
|
||||||
{
|
|
||||||
buf = new byte_buffer_t*[capacity];
|
|
||||||
pthread_mutex_init(&mutex, NULL);
|
|
||||||
pthread_cond_init(¬_empty, NULL);
|
|
||||||
pthread_cond_init(¬_full, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
~msg_queue()
|
|
||||||
{
|
|
||||||
pthread_mutex_destroy(&mutex);
|
|
||||||
pthread_cond_destroy(¬_empty);
|
|
||||||
pthread_cond_destroy(¬_full);
|
|
||||||
delete [] buf;
|
|
||||||
}
|
|
||||||
|
|
||||||
void write(byte_buffer_t *msg)
|
|
||||||
{
|
|
||||||
pthread_mutex_lock(&mutex);
|
|
||||||
while(is_full()) {
|
|
||||||
pthread_cond_wait(¬_full, &mutex);
|
|
||||||
}
|
|
||||||
buf[head] = msg;
|
|
||||||
head = (head+1)%capacity;
|
|
||||||
unread++;
|
|
||||||
unread_bytes += msg->N_bytes;
|
|
||||||
|
|
||||||
pthread_cond_signal(¬_empty);
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
void read(byte_buffer_t **msg)
|
|
||||||
{
|
|
||||||
pthread_mutex_lock(&mutex);
|
|
||||||
while(is_empty()) {
|
|
||||||
pthread_cond_wait(¬_empty, &mutex);
|
|
||||||
}
|
|
||||||
*msg = buf[tail];
|
|
||||||
tail = (tail+1)%capacity;
|
|
||||||
unread--;
|
|
||||||
unread_bytes -= (*msg)->N_bytes;
|
|
||||||
|
|
||||||
pthread_cond_signal(¬_full);
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool try_read(byte_buffer_t **msg)
|
|
||||||
{
|
|
||||||
pthread_mutex_lock(&mutex);
|
|
||||||
if(is_empty())
|
|
||||||
{
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
return false;
|
|
||||||
}else{
|
|
||||||
*msg = buf[tail];
|
|
||||||
tail = (tail+1)%capacity;
|
|
||||||
unread--;
|
|
||||||
unread_bytes -= (*msg)->N_bytes;
|
|
||||||
pthread_cond_signal(¬_full);
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
uint32_t size()
|
|
||||||
{
|
|
||||||
pthread_mutex_lock(&mutex);
|
|
||||||
uint32_t r = unread;
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint32_t size_bytes()
|
|
||||||
{
|
|
||||||
pthread_mutex_lock(&mutex);
|
|
||||||
uint32_t r = unread_bytes;
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint32_t size_tail_bytes()
|
|
||||||
{
|
|
||||||
pthread_mutex_lock(&mutex);
|
|
||||||
uint32_t r = buf[tail]->N_bytes;
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
bool is_empty() const { return unread == 0; }
|
|
||||||
bool is_full() const { return unread == capacity; }
|
|
||||||
|
|
||||||
pthread_cond_t not_empty;
|
|
||||||
pthread_cond_t not_full;
|
|
||||||
pthread_mutex_t mutex;
|
|
||||||
byte_buffer_t **buf;
|
|
||||||
uint32_t capacity;
|
|
||||||
uint32_t unread;
|
|
||||||
uint32_t unread_bytes;
|
|
||||||
uint32_t head;
|
|
||||||
uint32_t tail;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace srslte
|
|
||||||
|
|
||||||
|
|
||||||
#endif // SRSLTE_MSG_QUEUE_H
|
|
@ -0,0 +1,117 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* \section COPYRIGHT
|
||||||
|
*
|
||||||
|
* Copyright 2013-2015 Software Radio Systems Limited
|
||||||
|
*
|
||||||
|
* \section LICENSE
|
||||||
|
*
|
||||||
|
* This file is part of the srsUE library.
|
||||||
|
*
|
||||||
|
* srsUE is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* srsUE is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of the GNU Affero General Public License can be found in
|
||||||
|
* the LICENSE file in the top-level directory of this distribution
|
||||||
|
* and at http://www.gnu.org/licenses/.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* File: rlc_tx_queue.h
|
||||||
|
* Description: Queue used in RLC TM/UM/AM TX queues.
|
||||||
|
* Uses a blocking queue with bounded capacity to block higher layers
|
||||||
|
* when pushing Uplink traffic
|
||||||
|
* Reference:
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
#ifndef SRSLTE_MSG_QUEUE_H
|
||||||
|
#define SRSLTE_MSG_QUEUE_H
|
||||||
|
|
||||||
|
#include "srslte/common/block_queue.h"
|
||||||
|
#include "srslte/common/common.h"
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
|
namespace srslte {
|
||||||
|
|
||||||
|
class rlc_tx_queue
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
rlc_tx_queue(uint32_t capacity = 128) : queue((int) capacity) {
|
||||||
|
unread_bytes = 0;
|
||||||
|
}
|
||||||
|
void write(byte_buffer_t *msg)
|
||||||
|
{
|
||||||
|
queue.push(msg);
|
||||||
|
unread_bytes += msg->N_bytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
void read(byte_buffer_t **msg)
|
||||||
|
{
|
||||||
|
byte_buffer_t *m = queue.wait_pop();
|
||||||
|
*msg = m;
|
||||||
|
if (unread_bytes > (*msg)->N_bytes) {
|
||||||
|
unread_bytes -= (*msg)->N_bytes;
|
||||||
|
} else {
|
||||||
|
unread_bytes = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool try_read(byte_buffer_t **msg)
|
||||||
|
{
|
||||||
|
if (queue.try_pop(msg)) {
|
||||||
|
if (unread_bytes > (*msg)->N_bytes) {
|
||||||
|
unread_bytes -= (*msg)->N_bytes;
|
||||||
|
} else {
|
||||||
|
unread_bytes = 0;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t size()
|
||||||
|
{
|
||||||
|
return (uint32_t) queue.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t size_bytes()
|
||||||
|
{
|
||||||
|
return unread_bytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t size_tail_bytes()
|
||||||
|
{
|
||||||
|
if (!queue.empty()) {
|
||||||
|
byte_buffer_t *m = queue.front();
|
||||||
|
if (m) {
|
||||||
|
return m->N_bytes;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// This is a hack to reset N_bytes counter when queue is corrupted (see line 89)
|
||||||
|
void reset() {
|
||||||
|
unread_bytes = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool is_empty() { return queue.empty(); }
|
||||||
|
|
||||||
|
block_queue<byte_buffer_t*> queue;
|
||||||
|
uint32_t unread_bytes;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace srslte
|
||||||
|
|
||||||
|
|
||||||
|
#endif // SRSLTE_MSG_QUEUE_H
|
Loading…
Reference in New Issue