Added support of Talker Alias
This commit is contained in:
parent
1c8eaa89e7
commit
262463046e
4 changed files with 38 additions and 20 deletions
|
@ -11,6 +11,8 @@
|
||||||
#define DEFAULT_USER_NUMBER 1
|
#define DEFAULT_USER_NUMBER 1
|
||||||
#define DEFAULT_LINK_NUMBER 10
|
#define DEFAULT_LINK_NUMBER 10
|
||||||
|
|
||||||
|
#define EMPTY_STRING ""
|
||||||
|
|
||||||
int main(int argc, const char* argv[])
|
int main(int argc, const char* argv[])
|
||||||
{
|
{
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
@ -81,13 +83,16 @@ int main(int argc, const char* argv[])
|
||||||
(file == NULL))
|
(file == NULL))
|
||||||
{
|
{
|
||||||
printf(
|
printf(
|
||||||
"Usage: %s"
|
"Usage: %s\n"
|
||||||
" --expression <regular expression>"
|
" --expression <regular expression>\n"
|
||||||
" --connection <path to configuration file>"
|
" --connection <path to configuration file>\n"
|
||||||
" [--unknown <ID for unknown call-signs>]"
|
" [--unknown <ID for unknown call-signs>]\n"
|
||||||
" --network <network number>"
|
" --network <network number>\n"
|
||||||
" --link <link number>"
|
" --link <link number>\n"
|
||||||
" [--identity <identity>]"
|
" [--identity <identity>]\n"
|
||||||
|
"\n"
|
||||||
|
"Expression example:\n"
|
||||||
|
" (?<alias>(?<call>[RU][A-Z]?[0-9][A-Z]{1,4})[^;])\n"
|
||||||
"\n",
|
"\n",
|
||||||
argv[0]);
|
argv[0]);
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
|
@ -110,15 +115,21 @@ int main(int argc, const char* argv[])
|
||||||
int count = pcre_exec(expression, NULL, line, length, 0, 0, vectors, VECTORS_COUNT);
|
int count = pcre_exec(expression, NULL, line, length, 0, 0, vectors, VECTORS_COUNT);
|
||||||
if (count > 0)
|
if (count > 0)
|
||||||
{
|
{
|
||||||
const char* call;
|
const char* call = EMPTY_STRING;
|
||||||
pcre_get_substring(line, vectors, count, 1, &call);
|
const char* alias = EMPTY_STRING;
|
||||||
|
|
||||||
|
pcre_get_named_substring(expression, line, vectors, count, "call", &call);
|
||||||
|
pcre_get_named_substring(expression, line, vectors, count, "alias", &alias);
|
||||||
|
|
||||||
uint32_t number = store.getPrivateIDForCall(call);
|
uint32_t number = store.getPrivateIDForCall(call);
|
||||||
|
|
||||||
if (number == 0)
|
if (number == 0)
|
||||||
number = unknown;
|
number = unknown;
|
||||||
|
|
||||||
proxy.setTalkerID(number);
|
proxy.setTalkerID(number);
|
||||||
proxy.setTalkerAlias(call);
|
proxy.setTalkerAlias(alias);
|
||||||
syslog(LOG_INFO, "*** Found call-sign: %s (ID: %d)", call, number);
|
|
||||||
|
syslog(LOG_INFO, "*** Found call-sign: %s (ID: %d, Alias: \"%s\")", call, number, alias);
|
||||||
|
|
||||||
pcre_free_substring(call);
|
pcre_free_substring(call);
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,19 +48,17 @@ uint32_t PatchCordProxy::getTalkerID()
|
||||||
|
|
||||||
void PatchCordProxy::setTalkerAlias(const char* value)
|
void PatchCordProxy::setTalkerAlias(const char* value)
|
||||||
{
|
{
|
||||||
size_t length = strlen(value);
|
int length = strlen(value);
|
||||||
const uint32_t* data = (const uint32_t*)value;
|
|
||||||
|
|
||||||
size_t index = VALUE_CORD_TALKER_ALIAS;
|
size_t index = VALUE_CORD_TALKER_ALIAS;
|
||||||
size_t count =
|
uint32_t* data = (uint32_t*)alloca(length + sizeof(uint32_t));
|
||||||
(length / sizeof(uint32_t)) +
|
|
||||||
((length % sizeof(uint32_t)) > 0);
|
memcpy(data, value, length);
|
||||||
|
|
||||||
getContextBanner();
|
getContextBanner();
|
||||||
while (count > 0)
|
while (length > 0)
|
||||||
{
|
{
|
||||||
setSpecificValue(index, *data);
|
setSpecificValue(index, *data);
|
||||||
count --;
|
length -= sizeof(uint32_t);
|
||||||
index ++;
|
index ++;
|
||||||
data ++;
|
data ++;
|
||||||
}
|
}
|
||||||
|
|
|
@ -412,6 +412,10 @@ bool ModuleEchoLink::initialize(void)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cfg().getValue(cfgName(), "BRIDGE_DEFAULT", value))
|
||||||
|
{
|
||||||
|
bridge.setDefaultConfiguration(value.c_str());
|
||||||
|
}
|
||||||
if (cfg().getValue(cfgName(), "BRIDGE_PROXY", value))
|
if (cfg().getValue(cfgName(), "BRIDGE_PROXY", value))
|
||||||
{
|
{
|
||||||
bridge.setProxyConfiguration(value.c_str());
|
bridge.setProxyConfiguration(value.c_str());
|
||||||
|
|
|
@ -1,2 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
./FRNClientConsole | ./callcapture --identity AlterFRN --expression "RX is started: ([A-Z0-9]{3,7})[-,]" --connection Registry.cnf --network 2502 --link 11
|
./FRNClientConsole | ./callcapture \
|
||||||
|
--identity AlterFRN \
|
||||||
|
--expression "RX is started: (?<alias>(?<call>[A-Z0-9]{2,7})[-,][^;]+)" \
|
||||||
|
--connection Registry.cnf \
|
||||||
|
--network 2502 \
|
||||||
|
--link 11
|
||||||
|
|
Loading…
Add table
Reference in a new issue