srsLTE/srsue/hdr/ue.h

131 lines
3.0 KiB
C
Raw Normal View History

/**
2017-05-30 06:38:04 -07:00
*
* \section COPYRIGHT
2017-05-30 06:38:04 -07:00
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2017-05-30 06:38:04 -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.
2017-05-30 06:38:04 -07:00
*
*/
/******************************************************************************
* File: ue.h
* Description: Top-level UE class. Creates and links all
* layers and helpers.
*****************************************************************************/
2018-03-31 10:04:04 -07:00
#ifndef SRSUE_UE_H
#define SRSUE_UE_H
2017-05-30 06:38:04 -07:00
#include <pthread.h>
2017-05-30 06:38:04 -07:00
#include <stdarg.h>
#include <string>
#include "phy/ue_phy_base.h"
2021-03-19 03:45:56 -07:00
#include "srsran/common/buffer_pool.h"
#include "srsran/radio/radio.h"
#include "srsran/srslog/srslog.h"
#include "srsran/system/sys_metrics_processor.h"
#include "stack/ue_stack_base.h"
2017-05-30 06:38:04 -07:00
#include "ue_metrics_interface.h"
namespace srsue {
/*******************************************************************************
UE Parameters
*******************************************************************************/
typedef struct {
bool enable;
std::string phy_filename;
std::string radio_filename;
} trace_args_t;
typedef struct {
std::string all_level;
int all_hex_limit;
int file_max_size;
std::string filename;
} log_args_t;
typedef struct {
bool enable;
} gui_args_t;
typedef struct {
float metrics_period_secs;
bool metrics_csv_enable;
bool metrics_csv_append;
int metrics_csv_flush_period_sec;
std::string metrics_csv_filename;
bool metrics_json_enable;
std::string metrics_json_filename;
bool tracing_enable;
std::string tracing_filename;
std::size_t tracing_buffcapacity;
} general_args_t;
typedef struct {
2021-03-19 03:45:56 -07:00
srsran::rf_args_t rf;
trace_args_t trace;
log_args_t log;
gui_args_t gui;
phy_args_t phy;
stack_args_t stack;
gw_args_t gw;
general_args_t general;
} all_args_t;
2017-05-30 06:38:04 -07:00
/*******************************************************************************
Main UE class
*******************************************************************************/
class ue : public ue_metrics_interface
2017-05-30 06:38:04 -07:00
{
public:
ue();
~ue();
2017-05-30 06:38:04 -07:00
int init(const all_args_t& args_);
2017-05-30 06:38:04 -07:00
void stop();
2018-08-05 00:37:58 -07:00
bool switch_on();
bool switch_off();
2017-05-30 06:38:04 -07:00
void start_plot();
// UE metrics interface
bool get_metrics(ue_metrics_t* m);
2018-02-02 01:58:40 -08:00
void radio_overflow();
2017-05-30 06:38:04 -07:00
private:
// UE consists of a radio, a PHY and a stack element
std::unique_ptr<ue_phy_base> phy;
2021-03-19 03:45:56 -07:00
std::unique_ptr<srsran::radio_base> radio;
std::unique_ptr<ue_stack_base> stack;
std::unique_ptr<gw> gw_inst;
2017-05-30 06:38:04 -07:00
// 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
srslog::basic_logger& logger;
// System metrics processor.
2021-03-19 03:45:56 -07:00
srsran::sys_metrics_processor sys_proc;
all_args_t args;
// Helper functions
int parse_args(const all_args_t& args); // parse and validate arguments
std::string get_build_mode();
std::string get_build_info();
std::string get_build_string();
2017-05-30 06:38:04 -07:00
};
} // namespace srsue
2018-03-31 10:04:04 -07:00
#endif // SRSUE_UE_H