srsLTE/srsue/test/ttcn3/hdr/ttcn3_ue.h

85 lines
2.5 KiB
C
Raw Normal View History

/**
2019-09-16 12:17:21 -07:00
*
* \section COPYRIGHT
2019-09-16 12:17:21 -07:00
*
* Copyright 2013-2020 Software Radio Systems Limited
2019-09-16 12:17:21 -07:00
*
* 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.
2019-09-16 12:17:21 -07:00
*
*/
#ifndef SRSUE_TTCN3_UE_H
#define SRSUE_TTCN3_UE_H
#include "lte_ttcn3_phy.h"
#include "srsue/hdr/stack/ue_stack_lte.h"
#include <sstream>
class ttcn3_ue : public phy_interface_syssim, public gw_interface_stack
{
public:
ttcn3_ue();
2019-09-16 12:17:21 -07:00
virtual ~ttcn3_ue();
2019-09-16 12:17:21 -07:00
int init(all_args_t args, srslte::logger* logger_, syssim_interface_phy* syssim_, const std::string tc_name_);
void stop();
bool switch_on();
bool switch_off();
bool enable_data();
bool disable_data();
2019-09-16 12:17:21 -07:00
// The interface for SYSSIM
void set_cell_map(lte_ttcn3_phy::cell_list_t phy_cell_map);
2019-09-16 12:17:21 -07:00
void new_grant_ul(const srsue::mac_interface_phy_lte::mac_grant_ul_t grant);
2019-09-16 12:17:21 -07:00
void new_tb(const srsue::mac_interface_phy_lte::mac_grant_dl_t mac_grant, const uint8_t* data);
2019-09-16 12:17:21 -07:00
void set_current_tti(uint32_t tti);
2019-09-16 12:17:21 -07:00
uint16_t get_dl_sched_rnti(uint32_t tti);
2019-09-16 12:17:21 -07:00
// GW interface
void add_mch_port(uint32_t lcid, uint32_t port);
void write_pdu(uint32_t lcid, srslte::unique_byte_buffer_t pdu);
void write_pdu_mch(uint32_t lcid, srslte::unique_byte_buffer_t pdu);
int setup_if_addr(uint32_t lcid, uint8_t pdn_type, uint32_t ip_addr, uint8_t* ipv6_if_id, char* err_str);
2019-09-16 12:17:21 -07:00
int apply_traffic_flow_template(const uint8_t& eps_bearer_id,
const uint8_t& lcid,
const LIBLTE_MME_TRAFFIC_FLOW_TEMPLATE_STRUCT* tft);
void set_test_loop_mode(const test_loop_mode_state_t mode, const uint32_t ip_pdu_delay_ms_ = 0);
void timer_expired(uint32_t timeout_id);
void send_queued_data();
void loop_back_pdu_with_tft(uint32_t input_lcid, srslte::unique_byte_buffer_t pdu);
2019-09-16 12:17:21 -07:00
private:
std::unique_ptr<lte_ttcn3_phy> phy;
std::unique_ptr<ue_stack_lte> stack;
// Generic logger members
Upgrade loggers in srsue (#2163) * Replaced UE logger in the ue class. * Replaced loggers in the main phy class and prach. * Replaced loggers in phy common and ta_control. * Replace loggers in cc and sf workers. * Replaced loggers in intra_measure, scell_recv, search, sfn_sync, sync. * Remove last uses of the old loggers in the main phy class. * Remove stray newline in logs. * Replaced loggers in ue gw. * - Started to replace loggers in the ue stack. - Replaced loggers in usim and pcsc. - Adapted nas and usim tests. * Replace loggers in nas. * Added missing log init calls in two previously modified tests. * Replaced logger in nas idle procs. * Replaced loggers in nas emm state. * Replaced loggers in tft packet filter and adapted tft test. * Replaced loggers in main RRC class. * Replaced loggers in RRC cell. * Replaced loggers in RRC meas. * Replaced loggers in rrc procedures. * Started logger replacement in MAC layer, more precisely in demux and dl_harq classes. Been unable to inject loggers in construction for dl_tb_process due to very weird static assertions in the std::vector code being the type not constructible which is not true, so instead use the main MAC logger directly. * Replaced loggers in mac mux class. * Replaced loggers in mac pro_bsr. * Replaced loggers in mac proc phr. * Replaced loggers in mac proc SR and RA. * Replace loggers in mac UL HARQ. * Replaced loggers in main ue stack class. * Fixed nas test crashing due to a null string. * Ported mac_test to use the new loggers. * Removed TTI reporting for the PHY log as the old logger did. * Replaced loggers in UE phy tests. * Configure loggers in nas_test. * Replaced loggers in rrc_meas_test. * Replaced loggers in rrc_reconfig_test. * Added missing newline in tft_test. * Fix compilation errors in TTCN3 tests. * Fix linker error detected in CI and warning. * Replaced loggers in TTCN3 tests. * Fix a text replace error in some log messages. * Remove trailing newlines from log entries. * Remove old logger from rrc. * Flush backend before printing the test status. * - Fix compilation error from previous rebase. - Remove trailing newlines from some missing log entries.
2021-01-28 08:17:43 -08:00
srslte::logger* old_logger = nullptr;
srslog::basic_logger& logger;
2019-09-16 12:17:21 -07:00
test_loop_mode_state_t test_loop_mode = TEST_LOOP_INACTIVE;
srslte::timer_handler::unique_timer pdu_delay_timer;
std::map<uint32_t, block_queue<srslte::unique_byte_buffer_t> > pdu_queue; // A PDU queue for each DRB
tft_pdu_matcher tft_matcher;
all_args_t args = {};
2019-09-16 12:17:21 -07:00
};
#endif // SRSUE_TTCN3_UE_H