132 lines
3.1 KiB
C++
132 lines
3.1 KiB
C++
#include <stdlib.h>
|
|
#include <getopt.h>
|
|
#include <syslog.h>
|
|
#include <stdio.h>
|
|
#include <pcre.h>
|
|
|
|
#include "PatchCord.h"
|
|
|
|
#define VECTORS_COUNT 16
|
|
#define DEFAULT_USER_NUMBER 1
|
|
#define DEFAULT_LINK_NUMBER 10
|
|
|
|
#define EMPTY_STRING ""
|
|
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
printf("\n");
|
|
printf("CallCapture for BrandMeister DMR Master Server\n");
|
|
printf("Copyright 2015-2017 Artem Prilutskiy (R3ABM, cyanide.burnout@gmail.com)\n");
|
|
printf("\n");
|
|
|
|
// Start up
|
|
|
|
struct option options[] =
|
|
{
|
|
{ "expression", required_argument, NULL, 'e' },
|
|
{ "identity", required_argument, NULL, 'i' },
|
|
{ "network", required_argument, NULL, 'n' },
|
|
{ "unknown", required_argument, NULL, 'u' },
|
|
{ "link", required_argument, NULL, 'l' },
|
|
{ NULL, 0, NULL, 0 }
|
|
};
|
|
|
|
pcre* expression = NULL;
|
|
uint32_t network = 0;
|
|
uint32_t unknown = DEFAULT_USER_NUMBER;
|
|
uint32_t link = DEFAULT_LINK_NUMBER;
|
|
|
|
int position = 0;
|
|
const char* error = NULL;
|
|
|
|
int selection = 0;
|
|
while ((selection = getopt_long(argc, const_cast<char* const*>(argv), "e:u:n:l:", options, NULL)) != EOF)
|
|
switch (selection)
|
|
{
|
|
case 'e':
|
|
expression = pcre_compile(optarg, 0, &error, &position, NULL);
|
|
break;
|
|
|
|
case 'i':
|
|
openlog(optarg, 0, LOG_USER);
|
|
break;
|
|
|
|
case 'u':
|
|
unknown = atoi(optarg);
|
|
break;
|
|
|
|
case 'n':
|
|
network = atoi(optarg);
|
|
break;
|
|
|
|
case 'l':
|
|
link = atoi(optarg);
|
|
break;
|
|
}
|
|
|
|
if ((expression == NULL) &&
|
|
(error != NULL))
|
|
{
|
|
printf("Error compiling regular expression: %s (at %d)\n", error, position);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
if ((expression == NULL) ||
|
|
(network == 0))
|
|
{
|
|
printf(
|
|
"Usage: %s\n"
|
|
" --expression <regular expression>\n"
|
|
" [--unknown <ID for unknown call-signs>]\n"
|
|
" --network <network number>\n"
|
|
" --link <link number>\n"
|
|
" [--identity <identity>]\n"
|
|
"\n"
|
|
"Expression example:\n"
|
|
" (?<alias>(?<call>[A-Z0-9]{2,7})[-,][^;]+)\n"
|
|
"\n",
|
|
argv[0]);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
// Main
|
|
|
|
PatchCord proxy(network, link);
|
|
|
|
char* line = NULL;
|
|
size_t length = 0;
|
|
ssize_t read;
|
|
|
|
while ((read = getline(&line, &length, stdin)) != EOF)
|
|
{
|
|
syslog(LOG_DEBUG, "%s", line);
|
|
|
|
int vectors[VECTORS_COUNT];
|
|
int count = pcre_exec(expression, NULL, line, length, 0, 0, vectors, VECTORS_COUNT);
|
|
|
|
if (count > 0)
|
|
{
|
|
const char* call = EMPTY_STRING;
|
|
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 = proxy.getPrivateIDForCall(call); // This method moved from MySQL connector to proxt
|
|
|
|
if (number == 0)
|
|
number = unknown;
|
|
|
|
proxy.setTalkerID(number);
|
|
proxy.setTalkerAlias(alias);
|
|
|
|
syslog(LOG_INFO, "*** Found call-sign: %s (ID: %d, Alias: \"%s\")", call, number, alias);
|
|
|
|
pcre_free_substring(call);
|
|
}
|
|
}
|
|
|
|
pcre_free(expression);
|
|
|
|
return EXIT_SUCCESS;
|
|
};
|