|
|
|
/*
|
|
|
|
* Copyright 2013-2019 Software Radio Systems Limited
|
|
|
|
*
|
|
|
|
* This file is part of srsLTE.
|
|
|
|
*
|
|
|
|
* srsLTE is free software: you can redistribute it and/or modify
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* srsLTE is distributed in the hope that it will be useful,
|
|
|
|
* 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/.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SRSLTE_RLC_TEST_COMMON_H
|
|
|
|
#define SRSLTE_RLC_TEST_COMMON_H
|
|
|
|
|
|
|
|
#include "srslte/interfaces/ue_interfaces.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace srslte {
|
|
|
|
|
|
|
|
class rlc_um_tester : public srsue::pdcp_interface_rlc, public srsue::rrc_interface_rlc
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
rlc_um_tester() {}
|
|
|
|
|
|
|
|
// PDCP interface
|
|
|
|
void write_pdu(uint32_t lcid, unique_byte_buffer_t sdu)
|
|
|
|
{
|
|
|
|
// check length
|
|
|
|
if (lcid != 3 && sdu->N_bytes != expected_sdu_len) {
|
|
|
|
printf("Received PDU with size %d, expected %d. Exiting.\n", sdu->N_bytes, expected_sdu_len);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// check content
|
|
|
|
uint8_t first_byte = *sdu->msg;
|
|
|
|
for (uint32_t i = 0; i < sdu->N_bytes; i++) {
|
|
|
|
if (sdu->msg[i] != first_byte) {
|
|
|
|
printf("Received corrupted SDU with size %d. Exiting.\n", sdu->N_bytes);
|
|
|
|
srslte_vec_fprint_byte(stdout, sdu->msg, sdu->N_bytes);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// srslte_vec_fprint_byte(stdout, sdu->msg, sdu->N_bytes);
|
|
|
|
sdus.push_back(std::move(sdu));
|
|
|
|
}
|
|
|
|
void write_pdu_bcch_bch(unique_byte_buffer_t sdu) {}
|
|
|
|
void write_pdu_bcch_dlsch(unique_byte_buffer_t sdu) {}
|
|
|
|
void write_pdu_pcch(unique_byte_buffer_t sdu) {}
|
|
|
|
void write_pdu_mch(uint32_t lcid, srslte::unique_byte_buffer_t sdu) { sdus.push_back(std::move(sdu)); }
|
|
|
|
|
|
|
|
// RRC interface
|
|
|
|
void max_retx_attempted() {}
|
|
|
|
std::string get_rb_name(uint32_t lcid) { return std::string(""); }
|
|
|
|
void set_expected_sdu_len(uint32_t len) { expected_sdu_len = len; }
|
|
|
|
|
|
|
|
uint32_t get_num_sdus() { return sdus.size(); }
|
|
|
|
|
|
|
|
// TODO: this should be private
|
|
|
|
std::vector<unique_byte_buffer_t> sdus;
|
|
|
|
uint32_t expected_sdu_len = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace srslte
|
|
|
|
|
|
|
|
#endif // SRSLTE_RLC_TEST_COMMON_H
|