mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.1 KiB
C
106 lines
2.1 KiB
C
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <strings.h>
|
|
|
|
#include "io/filesource.h"
|
|
|
|
int filesource_init(filesource_t *q, char *filename, file_data_type_t type) {
|
|
bzero(q, sizeof(filesource_t));
|
|
q->f = fopen(filename, "r");
|
|
if (!q->f) {
|
|
perror("fopen");
|
|
return -1;
|
|
}
|
|
q->type = type;
|
|
return 0;
|
|
}
|
|
|
|
void filesource_close(filesource_t *q) {
|
|
if (q->f) {
|
|
fclose(q->f);
|
|
}
|
|
bzero(q, sizeof(filesource_t));
|
|
}
|
|
|
|
int read_complex_f(FILE *f, _Complex float *y) {
|
|
char in_str[64];
|
|
_Complex float x;
|
|
if (NULL == fgets(in_str, 64, f)) {
|
|
return -1;
|
|
} else {
|
|
if (index(in_str, 'i') || index(in_str, 'j')) {
|
|
sscanf(in_str,"%f%fi",&(__real__ x),&(__imag__ x));
|
|
} else {
|
|
__imag__ x = 0;
|
|
sscanf(in_str,"%f",&(__real__ x));
|
|
}
|
|
*y = x;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int filesource_read(filesource_t *q, void *buffer, int nsamples) {
|
|
int i;
|
|
float *fbuf = (float*) buffer;
|
|
_Complex float *cbuf = (_Complex float*) buffer;
|
|
_Complex short *sbuf = (_Complex short*) buffer;
|
|
int size;
|
|
|
|
switch(q->type) {
|
|
case FLOAT:
|
|
for (i=0;i<nsamples;i++) {
|
|
if (EOF == fscanf(q->f,"%g\n",&fbuf[i]))
|
|
break;
|
|
}
|
|
break;
|
|
case COMPLEX_FLOAT:
|
|
for (i=0;i<nsamples;i++) {
|
|
if (read_complex_f(q->f, &cbuf[i])) {
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case COMPLEX_SHORT:
|
|
for (i=0;i<nsamples;i++) {
|
|
if (EOF == fscanf(q->f,"%hd%hdi\n",&(__real__ sbuf[i]),&(__imag__ sbuf[i])))
|
|
break;
|
|
}
|
|
break;
|
|
case FLOAT_BIN:
|
|
case COMPLEX_FLOAT_BIN:
|
|
case COMPLEX_SHORT_BIN:
|
|
if (q->type == FLOAT_BIN) {
|
|
size = sizeof(float);
|
|
} else if (q->type == COMPLEX_FLOAT_BIN) {
|
|
size = sizeof(_Complex float);
|
|
} else if (q->type == COMPLEX_SHORT_BIN) {
|
|
size = sizeof(_Complex short);
|
|
}
|
|
return fread(buffer, size, nsamples, q->f);
|
|
break;
|
|
default:
|
|
i = -1;
|
|
break;
|
|
}
|
|
return i;
|
|
}
|
|
|
|
|
|
int filesource_initialize(filesource_hl* h) {
|
|
return filesource_init(&h->obj, h->init.file_name, h->init.data_type);
|
|
}
|
|
|
|
int filesource_work(filesource_hl* h) {
|
|
*h->out_len = filesource_read(&h->obj, h->output, h->ctrl_in.nsamples);
|
|
if (*h->out_len < 0) {
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int filesource_stop(filesource_hl* h) {
|
|
filesource_close(&h->obj);
|
|
return 0;
|
|
}
|