osmo-gmr/src/gmr1_rx_live.c

174 lines
3.8 KiB
C

/* GMR-1 Demo RX live application */
/* (C) 2011-2019 by Sylvain Munaut <tnt@246tNt.com>
* All Rights Reserved
*
* This program 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.
*
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <osmocom/core/gsmtap.h>
#include <osmocom/core/gsmtap_util.h>
#include <osmocom/gmr1/sdr/fcch.h>
#include "rtfwk/common.h"
#include "rtfwk/sampbuf.h"
#include "rtfwk/sa_fcch.h"
#include "rtfwk/sa_file.h"
/* Main ------------------------------------------------------------------- */
int main(int argc, char *argv[])
{
struct app_state *as;
struct stat ss;
int rv = 0, i;
/* Args */
if (argc < 3) {
fprintf(stderr, "Usage: %s sps arfcn1:file1 [arfcn2:file2] ...\n", argv[0]);
return -EINVAL;
}
/* Init app state */
i = argc - 2;
as = calloc(1, sizeof(struct app_state) + i * sizeof(as->chans[0]));
as->n_chans = i;
as->sps = atoi(argv[1]);
if (as->sps < 1 || as->sps > 16) {
fprintf(stderr, "[!] sps must be withing [1,16]\n");
return -EINVAL;
}
/* Init GSMTap */
as->gti = gsmtap_source_init("127.0.0.1", GSMTAP_UDP_PORT, 0);
gsmtap_source_add_sink(as->gti);
/* Open status */
rv = stat("/tmp/gmr_rx_status", &ss);
if (!rv && (ss.st_mode & S_IFIFO))
as->status = fopen("/tmp/gmr_rx_status", "w");
/* Buffer */
as->buf = sbuf_alloc(as->n_chans);
if (!as->buf) {
rv = -ENOMEM;
goto err;
}
/* Parse arguments */
for (i=0; i<as->n_chans; i++)
{
char *d;
d = strchr(argv[i+2], ':');
if (!d) {
fprintf(stderr, "[!] Arguments must be of the form arfcn:filename\n");
rv = -EINVAL;
goto err;
}
*d = '\0';
as->chans[i].arfcn = atoi(argv[i+2]);
as->chans[i].filename = d+1;
}
/* Create all the sources */
for (i=0; i<as->n_chans; i++) {
struct sample_actor *sa;
sa = sbuf_set_producer(as->buf, i, &sa_file_src, as->chans[i].filename);
if (!sa) {
fprintf(stderr, "[!] Failed to create source for stream #%d\n", i);
rv = -EIO;
goto err;
}
}
/* Attribute single 'FCCH detect' sink to each channel */
for (i=0; i<as->n_chans; i++) {
struct sample_actor *sa;
struct fcch_sink_params p = {
.as = as,
.chan_id = i,
.start_discard = 5000,
.burst_type = &gmr1_fcch_burst,
};
sa = sbuf_add_consumer(as->buf, i, &fcch_sink, &p);
if (!sa) {
fprintf(stderr, "[!] Failed to create FCCH sink for stream #%d\n", i);
rv = -ENOMEM;
goto err;
}
}
/* Go forth and process ! */
int iter = 0;
while (sbuf_work(as->buf))
{
if (iter++ < 100)
continue;
iter = 0;
if (!as->status)
continue;
fprintf(as->status, "\033c");
fprintf(as->status, "GMR-1 RX status\n");
fprintf(as->status, "---------------\n");
fprintf(as->status, "\n");
for (i=0; i<as->buf->n_chans; i++)
{
struct sample_actor *sact, *tmp;
llist_for_each_entry_safe(sact, tmp, &as->buf->chans[i].consumers, list)
{
fprintf(as->status, "ARFCN %4d: Task %s (%p)\n",
as->chans[i].arfcn,
sact->desc->name,
sact
);
if (sact->desc->stat)
sact->desc->stat(sact, as->status);
fprintf(as->status, "\n");
}
}
fprintf(as->status, "\n");
fflush(as->status);
}
/* Done ! */
rv = 0;
/* Clean up */
err:
sbuf_free(as->buf);
return rv;
}