srsLTE/lib/include/srslte/upper/rlc_tm.h

84 lines
2.3 KiB
C
Raw Normal View History

2019-04-26 12:27:38 -07:00
/*
* Copyright 2013-2019 Software Radio Systems Limited
2017-05-18 03:52:29 -07:00
*
2019-04-26 12:27:38 -07:00
* This file is part of srsLTE.
2017-05-18 03:52:29 -07:00
*
2019-04-26 12:27:38 -07:00
* srsLTE is free software: you can redistribute it and/or modify
2017-05-18 03:52:29 -07:00
* 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.
*
2019-04-26 12:27:38 -07:00
* srsLTE is distributed in the hope that it will be useful,
2017-05-18 03:52:29 -07:00
* 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/.
*
*/
2018-03-31 10:04:04 -07:00
#ifndef SRSLTE_RLC_TM_H
#define SRSLTE_RLC_TM_H
2017-05-18 03:52:29 -07:00
#include "srslte/common/buffer_pool.h"
#include "srslte/common/log.h"
#include "srslte/common/common.h"
#include "srslte/interfaces/ue_interfaces.h"
#include "srslte/upper/rlc_tx_queue.h"
#include "srslte/upper/rlc_common.h"
2017-05-18 03:52:29 -07:00
namespace srslte {
2017-05-18 03:52:29 -07:00
class rlc_tm : public rlc_common
2017-05-18 03:52:29 -07:00
{
public:
rlc_tm(srslte::log* log_,
uint32_t lcid_,
srsue::pdcp_interface_rlc* pdcp_,
srsue::rrc_interface_rlc* rrc_,
srslte::timers* timers_,
uint32_t queue_len = 16);
~rlc_tm();
bool configure(rlc_config_t cnfg);
2017-09-19 06:15:25 -07:00
void stop();
void reestablish();
2017-05-18 03:52:29 -07:00
void empty_queue();
rlc_mode_t get_mode();
uint32_t get_bearer();
uint32_t get_num_tx_bytes();
uint32_t get_num_rx_bytes();
void reset_metrics();
2017-05-18 03:52:29 -07:00
// PDCP interface
2019-05-13 07:34:15 -07:00
void write_sdu(unique_byte_buffer_t sdu, bool blocking);
2017-05-18 03:52:29 -07:00
// MAC interface
bool has_data();
2017-05-18 03:52:29 -07:00
uint32_t get_buffer_state();
int read_pdu(uint8_t *payload, uint32_t nof_bytes);
void write_pdu(uint8_t *payload, uint32_t nof_bytes);
private:
byte_buffer_pool* pool = nullptr;
srslte::log* log = nullptr;
uint32_t lcid = 0;
srsue::pdcp_interface_rlc* pdcp = nullptr;
srsue::rrc_interface_rlc* rrc = nullptr;
2017-05-18 03:52:29 -07:00
bool tx_enabled = true;
2017-05-18 03:52:29 -07:00
uint32_t num_tx_bytes = 0;
uint32_t num_rx_bytes = 0;
2017-05-18 03:52:29 -07:00
// Thread-safe queues for MAC messages
rlc_tx_queue ul_queue;
2017-05-18 03:52:29 -07:00
};
} // namespace srslte
2017-05-18 03:52:29 -07:00
2018-03-31 10:04:04 -07:00
#endif // SRSLTE_RLC_TM_H