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.
119 lines
2.9 KiB
C
119 lines
2.9 KiB
C
11 years ago
|
/**
|
||
|
*
|
||
|
* \section COPYRIGHT
|
||
|
*
|
||
9 years ago
|
* Copyright 2013-2015 Software Radio Systems Limited
|
||
11 years ago
|
*
|
||
|
* \section LICENSE
|
||
|
*
|
||
10 years ago
|
* This file is part of the srsLTE library.
|
||
11 years ago
|
*
|
||
10 years ago
|
* srsLTE is free software: you can redistribute it and/or modify
|
||
10 years ago
|
* it under the terms of the GNU Affero General Public License as
|
||
11 years ago
|
* published by the Free Software Foundation, either version 3 of
|
||
|
* the License, or (at your option) any later version.
|
||
|
*
|
||
10 years ago
|
* srsLTE is distributed in the hope that it will be useful,
|
||
11 years ago
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
10 years ago
|
* GNU Affero General Public License for more details.
|
||
11 years ago
|
*
|
||
10 years ago
|
* A copy of the GNU Affero General Public License can be found in
|
||
11 years ago
|
* the LICENSE file in the top-level directory of this distribution
|
||
|
* and at http://www.gnu.org/licenses/.
|
||
|
*
|
||
|
*/
|
||
|
|
||
11 years ago
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <strings.h>
|
||
|
|
||
10 years ago
|
#include "srslte/io/filesource.h"
|
||
11 years ago
|
|
||
10 years ago
|
int srslte_filesource_init(srslte_filesource_t *q, char *filename, srslte_datatype_t type) {
|
||
|
bzero(q, sizeof(srslte_filesource_t));
|
||
11 years ago
|
q->f = fopen(filename, "r");
|
||
|
if (!q->f) {
|
||
|
perror("fopen");
|
||
|
return -1;
|
||
|
}
|
||
|
q->type = type;
|
||
|
return 0;
|
||
11 years ago
|
}
|
||
|
|
||
10 years ago
|
void srslte_filesource_free(srslte_filesource_t *q) {
|
||
11 years ago
|
if (q->f) {
|
||
|
fclose(q->f);
|
||
|
}
|
||
10 years ago
|
bzero(q, sizeof(srslte_filesource_t));
|
||
11 years ago
|
}
|
||
|
|
||
10 years ago
|
void srslte_filesource_seek(srslte_filesource_t *q, int pos) {
|
||
11 years ago
|
fseek(q->f, pos, SEEK_SET);
|
||
11 years ago
|
}
|
||
|
|
||
11 years ago
|
int read_complex_f(FILE *f, _Complex float *y) {
|
||
11 years ago
|
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;
|
||
|
}
|
||
11 years ago
|
}
|
||
|
|
||
10 years ago
|
int srslte_filesource_read(srslte_filesource_t *q, void *buffer, int nsamples) {
|
||
11 years ago
|
int i;
|
||
|
float *fbuf = (float*) buffer;
|
||
|
_Complex float *cbuf = (_Complex float*) buffer;
|
||
|
_Complex short *sbuf = (_Complex short*) buffer;
|
||
|
int size;
|
||
11 years ago
|
|
||
11 years ago
|
switch(q->type) {
|
||
10 years ago
|
case SRSLTE_FLOAT:
|
||
11 years ago
|
for (i=0;i<nsamples;i++) {
|
||
|
if (EOF == fscanf(q->f,"%g\n",&fbuf[i]))
|
||
|
break;
|
||
|
}
|
||
|
break;
|
||
10 years ago
|
case SRSLTE_COMPLEX_FLOAT:
|
||
11 years ago
|
for (i=0;i<nsamples;i++) {
|
||
|
if (read_complex_f(q->f, &cbuf[i])) {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
10 years ago
|
case SRSLTE_COMPLEX_SHORT:
|
||
11 years ago
|
for (i=0;i<nsamples;i++) {
|
||
|
if (EOF == fscanf(q->f,"%hd%hdi\n",&(__real__ sbuf[i]),&(__imag__ sbuf[i])))
|
||
|
break;
|
||
|
}
|
||
|
break;
|
||
10 years ago
|
case SRSLTE_FLOAT_BIN:
|
||
|
case SRSLTE_COMPLEX_FLOAT_BIN:
|
||
|
case SRSLTE_COMPLEX_SHORT_BIN:
|
||
|
if (q->type == SRSLTE_FLOAT_BIN) {
|
||
11 years ago
|
size = sizeof(float);
|
||
10 years ago
|
} else if (q->type == SRSLTE_COMPLEX_FLOAT_BIN) {
|
||
11 years ago
|
size = sizeof(_Complex float);
|
||
10 years ago
|
} else if (q->type == SRSLTE_COMPLEX_SHORT_BIN) {
|
||
11 years ago
|
size = sizeof(_Complex short);
|
||
|
}
|
||
|
return fread(buffer, size, nsamples, q->f);
|
||
|
break;
|
||
|
default:
|
||
|
i = -1;
|
||
|
break;
|
||
|
}
|
||
|
return i;
|
||
11 years ago
|
}
|
||
|
|