srsLTE/srsue/hdr/ue.h

133 lines
3.4 KiB
C
Raw Normal View History

2019-04-26 12:27:38 -07:00
/*
* Copyright 2013-2019 Software Radio Systems Limited
2017-05-30 06:38:04 -07:00
*
2019-04-26 12:27:38 -07:00
* This file is part of srsLTE.
2017-05-30 06:38:04 -07:00
*
2019-04-26 12:27:38 -07:00
* srsLTE is free software: you can redistribute it and/or modify
2017-05-30 06:38:04 -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-30 06:38:04 -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/.
*
*/
/******************************************************************************
* 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"
#include "srslte/common/buffer_pool.h"
#include "srslte/common/log_filter.h"
#include "srslte/common/logger_file.h"
#include "srslte/interfaces/ue_interfaces.h"
#include "srslte/radio/radio.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;
std::string metrics_csv_filename;
} general_args_t;
typedef struct {
srslte::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_, srslte::logger* logger_);
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;
std::unique_ptr<srslte::radio> 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
srslte::logger* logger = nullptr;
srslte::log_filter log; // Own logger for UE
all_args_t args;
srslte::byte_buffer_pool* pool = nullptr;
// 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