You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
190 lines
4.2 KiB
190 lines
4.2 KiB
/*
|
|
* Copyright (C) 2014 by Jonathan Naylor G4KLX
|
|
* Copyright (C) 2022 by Geoffrey Merck F4FXL / KC3FRA
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <cassert>
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <thread>
|
|
#include <chrono>
|
|
|
|
#include "DStarDefines.h"
|
|
#include "VoiceTransmit.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
std::string repeater;
|
|
std::vector<std::string> filenames;
|
|
|
|
if (!parseCLIArgs(argc, argv, repeater, filenames)) {
|
|
::fprintf(stderr, "dgwvoicetransmit: invalid command line usage: dgwvoicetransmit <repeater> <file1> <file2> ..., exiting\n");
|
|
return 1;
|
|
}
|
|
|
|
CHeaderData::initialise();
|
|
|
|
CVoiceStore store(filenames);
|
|
bool opened = store.open();
|
|
if (!opened) {
|
|
::fprintf(stderr, "dgwvoicetransmit: unable to open one of the files, exiting\n");
|
|
return 1;
|
|
}
|
|
|
|
CVoiceTransmit tt(repeater, &store);
|
|
bool ret = tt.run();
|
|
|
|
store.close();
|
|
|
|
|
|
return ret ? 0 : 1;
|
|
}
|
|
|
|
bool parseCLIArgs(int argc, char * argv[], std::string& repeater, std::vector<std::string>& files)
|
|
{
|
|
if(argc < 3)
|
|
return false;
|
|
|
|
repeater.assign(argv[1]);
|
|
boost::to_upper(repeater);
|
|
boost::replace_all(repeater, "_", " ");
|
|
repeater.resize(LONG_CALLSIGN_LENGTH, ' ');
|
|
|
|
files.clear();
|
|
|
|
for(int i = 2; i < argc; i++) {
|
|
if(argv[i] != nullptr) {
|
|
files.push_back(std::string(argv[i]));
|
|
}
|
|
}
|
|
|
|
return files.size() > 0U;
|
|
}
|
|
|
|
CVoiceTransmit::CVoiceTransmit(const std::string& callsign, CVoiceStore* store) :
|
|
m_socket("", 0U),
|
|
m_callsign(callsign),
|
|
m_store(store)
|
|
{
|
|
assert(store != NULL);
|
|
}
|
|
|
|
CVoiceTransmit::~CVoiceTransmit()
|
|
{
|
|
}
|
|
|
|
bool CVoiceTransmit::run()
|
|
{
|
|
bool opened = m_socket.open();
|
|
if (!opened)
|
|
return false;
|
|
|
|
in_addr address = CUDPReaderWriter::lookup("127.0.0.1");
|
|
|
|
unsigned int id = CHeaderData::createId();
|
|
|
|
std::string callsignG = m_callsign.substr(0U, LONG_CALLSIGN_LENGTH - 1U);
|
|
callsignG.push_back('G');
|
|
|
|
CHeaderData* header = m_store->getHeader();
|
|
if (header == NULL) {
|
|
m_socket.close();
|
|
return false;
|
|
}
|
|
|
|
header->setId(id);
|
|
header->setRptCall1(callsignG);
|
|
header->setRptCall2(m_callsign);
|
|
header->setDestination(address, G2_DV_PORT);
|
|
|
|
sendHeader(header);
|
|
|
|
delete header;
|
|
|
|
auto start = std::chrono::high_resolution_clock::now();
|
|
|
|
unsigned int out = 0U;
|
|
unsigned int seqNo = 0U;
|
|
|
|
for (;;) {
|
|
unsigned int needed = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - start).count();
|
|
needed /= DSTAR_FRAME_TIME_MS;
|
|
|
|
while (out < needed) {
|
|
CAMBEData* ambe = m_store->getAMBE();
|
|
|
|
if (ambe == NULL) {
|
|
seqNo++;
|
|
if (seqNo >= 21U)
|
|
seqNo = 0U;
|
|
|
|
CAMBEData data;
|
|
data.setData(END_PATTERN_BYTES, DV_FRAME_LENGTH_BYTES);
|
|
data.setDestination(address, G2_DV_PORT);
|
|
data.setId(id);
|
|
data.setSeq(seqNo);
|
|
data.setEnd(true);
|
|
|
|
sendData(&data);
|
|
|
|
m_socket.close();
|
|
|
|
return true;
|
|
}
|
|
|
|
seqNo = ambe->getSeq();
|
|
|
|
ambe->setDestination(address, G2_DV_PORT);
|
|
ambe->setEnd(false);
|
|
ambe->setId(id);
|
|
|
|
sendData(ambe);
|
|
|
|
delete ambe;
|
|
|
|
out++;
|
|
}
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(10U));
|
|
}
|
|
}
|
|
|
|
bool CVoiceTransmit::sendHeader(CHeaderData* header)
|
|
{
|
|
assert(header != NULL);
|
|
|
|
unsigned char buffer[60U];
|
|
unsigned int length = header->getG2Data(buffer, 60U, true);
|
|
|
|
for (unsigned int i = 0U; i < 2U; i++) {
|
|
bool res = m_socket.write(buffer, length, header->getYourAddress(), header->getYourPort());
|
|
if (!res)
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool CVoiceTransmit::sendData(CAMBEData* data)
|
|
{
|
|
assert(data != NULL);
|
|
|
|
unsigned char buffer[40U];
|
|
unsigned int length = data->getG2Data(buffer, 40U);
|
|
|
|
return m_socket.write(buffer, length, data->getYourAddress(), data->getYourPort());
|
|
}
|