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.
122 lines
4.0 KiB
C++
122 lines
4.0 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_RLC_H
|
|
#define SRSLTE_RLC_H
|
|
|
|
#include "srslte/common/buffer_pool.h"
|
|
#include "srslte/common/common.h"
|
|
#include "srslte/common/log.h"
|
|
#include "srslte/common/task_scheduler.h"
|
|
#include "srslte/interfaces/ue_pdcp_interfaces.h"
|
|
#include "srslte/interfaces/ue_rlc_interfaces.h"
|
|
#include "srslte/interfaces/ue_rrc_interfaces.h"
|
|
#include "srslte/upper/rlc_common.h"
|
|
#include "srslte/upper/rlc_metrics.h"
|
|
|
|
namespace srslte {
|
|
|
|
/****************************************************************************
|
|
* RLC Layer
|
|
* Ref: 3GPP TS 36.322 v10.0.0
|
|
* Single interface for RLC layer - contains separate RLC entities for
|
|
* each bearer.
|
|
***************************************************************************/
|
|
class rlc : public srsue::rlc_interface_mac, public srsue::rlc_interface_pdcp, public srsue::rlc_interface_rrc
|
|
{
|
|
public:
|
|
rlc(const char* logname);
|
|
virtual ~rlc();
|
|
void init(srsue::pdcp_interface_rlc* pdcp_,
|
|
srsue::rrc_interface_rlc* rrc_,
|
|
srslte::timer_handler* timers_,
|
|
uint32_t lcid_);
|
|
void init(srsue::pdcp_interface_rlc* pdcp_,
|
|
srsue::rrc_interface_rlc* rrc_,
|
|
srslte::timer_handler* timers_,
|
|
uint32_t lcid_,
|
|
bsr_callback_t bsr_callback_);
|
|
void stop();
|
|
|
|
void get_metrics(rlc_metrics_t& m, const uint32_t nof_tti);
|
|
|
|
// PDCP interface
|
|
void write_sdu(uint32_t lcid, unique_byte_buffer_t sdu);
|
|
void write_sdu_mch(uint32_t lcid, unique_byte_buffer_t sdu);
|
|
bool rb_is_um(uint32_t lcid);
|
|
void discard_sdu(uint32_t lcid, uint32_t discard_sn);
|
|
bool sdu_queue_is_full(uint32_t lcid);
|
|
|
|
// MAC interface
|
|
bool has_data_locked(const uint32_t lcid);
|
|
uint32_t get_buffer_state(const uint32_t lcid);
|
|
uint32_t get_total_mch_buffer_state(uint32_t lcid);
|
|
int read_pdu(uint32_t lcid, uint8_t* payload, uint32_t nof_bytes);
|
|
int read_pdu_mch(uint32_t lcid, uint8_t* payload, uint32_t nof_bytes);
|
|
int get_increment_sequence_num();
|
|
void write_pdu(uint32_t lcid, uint8_t* payload, uint32_t nof_bytes);
|
|
void write_pdu_bcch_bch(srslte::unique_byte_buffer_t pdu);
|
|
void write_pdu_bcch_dlsch(uint8_t* payload, uint32_t nof_bytes);
|
|
void write_pdu_pcch(srslte::unique_byte_buffer_t pdu);
|
|
void write_pdu_mch(uint32_t lcid, uint8_t* payload, uint32_t nof_bytes);
|
|
|
|
// RRC interface
|
|
bool is_suspended(const uint32_t lcid);
|
|
bool has_data(const uint32_t lcid);
|
|
void reestablish();
|
|
void reestablish(uint32_t lcid);
|
|
void reset();
|
|
void empty_queue();
|
|
void add_bearer(uint32_t lcid, const rlc_config_t& cnfg);
|
|
void add_bearer_mrb(uint32_t lcid);
|
|
void del_bearer(uint32_t lcid);
|
|
void del_bearer_mrb(uint32_t lcid);
|
|
void suspend_bearer(uint32_t lcid);
|
|
void resume_bearer(uint32_t lcid);
|
|
void change_lcid(uint32_t old_lcid, uint32_t new_lcid);
|
|
bool has_bearer(uint32_t lcid);
|
|
|
|
private:
|
|
void reset_metrics();
|
|
|
|
byte_buffer_pool* pool = nullptr;
|
|
srslog::basic_logger& logger;
|
|
srsue::pdcp_interface_rlc* pdcp = nullptr;
|
|
srsue::rrc_interface_rlc* rrc = nullptr;
|
|
srslte::timer_handler* timers = nullptr;
|
|
|
|
typedef std::map<uint16_t, rlc_common*> rlc_map_t;
|
|
typedef std::pair<uint16_t, rlc_common*> rlc_map_pair_t;
|
|
|
|
rlc_map_t rlc_array, rlc_array_mrb;
|
|
pthread_rwlock_t rwlock;
|
|
|
|
uint32_t default_lcid = 0;
|
|
|
|
bsr_callback_t bsr_callback = nullptr;
|
|
|
|
// Timer needed for metrics calculation
|
|
std::chrono::high_resolution_clock::time_point metrics_tp;
|
|
|
|
bool valid_lcid(uint32_t lcid);
|
|
bool valid_lcid_mrb(uint32_t lcid);
|
|
|
|
void update_bsr(uint32_t lcid);
|
|
void update_bsr_mch(uint32_t lcid);
|
|
};
|
|
|
|
void rlc_bearer_metrics_print(const rlc_bearer_metrics_t& metrics);
|
|
|
|
} // namespace srslte
|
|
|
|
#endif // SRSLTE_RLC_H
|