mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
150 lines
3.7 KiB
C++
150 lines
3.7 KiB
C++
/** Convert between samples IO formats
|
|
*
|
|
* @file
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2017-2018, Institute for Automation of Complex Power Systems, EONERC
|
|
* @license GNU General Public License (version 3)
|
|
*
|
|
* VILLASnode
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @addtogroup tools Test and debug tools
|
|
* @{
|
|
*********************************************************************************/
|
|
|
|
#include <iostream>
|
|
|
|
#include <villas/utils.h>
|
|
#include <villas/io.h>
|
|
#include <villas/sample.h>
|
|
#include <villas/plugin.h>
|
|
|
|
static void usage()
|
|
{
|
|
std::cout << "Usage: villas-convert [OPTIONS]" << std::endl;
|
|
std::cout << " OPTIONS are:" << std::endl;
|
|
std::cout << " -i FMT set the input format" << std::endl;
|
|
std::cout << " -o FMT set the output format" << std::endl;
|
|
std::cout << " -d LVL set debug log level to LVL" << std::endl;
|
|
std::cout << " -h show this usage information" << std::endl;
|
|
std::cout << " -V show the version of the tool" << std::endl << std::endl;
|
|
|
|
print_copyright();
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int ret, level = 2;
|
|
const char *input_format = "villas.human";
|
|
const char *output_format = "villas.human";
|
|
|
|
int c;
|
|
char *endptr;
|
|
while ((c = getopt(argc, argv, "Vhd:i:o:")) != -1) {
|
|
switch (c) {
|
|
case 'V':
|
|
print_version();
|
|
exit(EXIT_SUCCESS);
|
|
case 'i':
|
|
input_format = optarg;
|
|
break;
|
|
case 'o':
|
|
output_format = optarg;
|
|
break;
|
|
case 'd':
|
|
level = strtoul(optarg, &endptr, 10);
|
|
goto check;
|
|
case 'h':
|
|
case '?':
|
|
usage();
|
|
exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS);
|
|
}
|
|
|
|
continue;
|
|
|
|
check: if (optarg == endptr)
|
|
error("Failed to parse parse option argument '-%c %s'", c, optarg);
|
|
}
|
|
|
|
if (argc != optind) {
|
|
usage();
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
struct format_type *fmt;
|
|
struct log log;
|
|
struct io input = { .state = STATE_DESTROYED };
|
|
struct io output = { .state = STATE_DESTROYED };
|
|
|
|
ret = log_init(&log, "convert", level, LOG_ALL);
|
|
if (ret)
|
|
error("Failed to initialize log");
|
|
|
|
ret = log_open(&log);
|
|
if (ret)
|
|
error("Failed to start log");
|
|
|
|
struct {
|
|
const char *name;
|
|
struct io *io;
|
|
} dirs[] = {
|
|
{ input_format, &input },
|
|
{ output_format, &output },
|
|
};
|
|
|
|
for (unsigned i = 0; i < ARRAY_LEN(dirs); i++) {
|
|
fmt = format_type_lookup(dirs[i].name);
|
|
if (!fmt)
|
|
error("Invalid format: %s", dirs[i].name);
|
|
|
|
ret = io_init_auto(dirs[i].io, fmt, DEFAULT_SAMPLE_LENGTH, SAMPLE_HAS_ALL);
|
|
if (ret)
|
|
error("Failed to initialize IO: %s", dirs[i].name);
|
|
|
|
ret = io_check(dirs[i].io);
|
|
if (ret)
|
|
error("Failed to validate IO configuration");
|
|
|
|
ret = io_open(dirs[i].io, NULL);
|
|
if (ret)
|
|
error("Failed to open IO");
|
|
}
|
|
|
|
struct sample *smp = sample_alloc_mem(DEFAULT_SAMPLE_LENGTH);
|
|
|
|
for (;;) {
|
|
ret = io_scan(&input, &smp, 1);
|
|
if (ret == 0)
|
|
continue;
|
|
if (ret < 0)
|
|
break;
|
|
|
|
io_print(&output, &smp, 1);
|
|
}
|
|
|
|
for (unsigned i = 0; i < ARRAY_LEN(dirs); i++) {
|
|
ret = io_close(dirs[i].io);
|
|
if (ret)
|
|
error("Failed to close IO");
|
|
|
|
ret = io_destroy(dirs[i].io);
|
|
if (ret)
|
|
error("Failed to destroy IO");
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/** @} */
|