1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-23 00:00:01 +01:00
VILLASnode/src/villas-test-cmp.cpp

286 lines
6.4 KiB
C++
Raw Normal View History

/** Compare two data files.
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
2020-01-20 17:17:00 +01:00
* @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC
2017-04-27 12:56:43 +02:00
* @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.
*
2017-04-27 12:56:43 +02:00
* 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.
*
2017-04-27 12:56:43 +02:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************************/
2018-07-03 21:04:28 +02:00
#include <iostream>
#include <getopt.h>
#include <jansson.h>
#include <villas/tool.hpp>
#include <villas/sample.h>
2017-08-05 21:02:09 +02:00
#include <villas/io.h>
2018-05-12 13:56:12 +02:00
#include <villas/format_type.h>
2018-10-20 14:20:51 +02:00
#include <villas/utils.hpp>
#include <villas/log.hpp>
#include <villas/pool.h>
2018-10-20 14:20:51 +02:00
#include <villas/exceptions.hpp>
#include <villas/node/config.h>
2018-10-20 14:20:51 +02:00
using namespace villas;
namespace villas {
namespace node {
namespace tools {
class TestCmpSide {
2018-10-20 14:20:51 +02:00
public:
std::string path;
std::string dtypes;
struct sample *sample;
struct io io;
2018-10-20 14:20:51 +02:00
struct format_type *format;
TestCmpSide(const std::string &pth, struct format_type *fmt, const std::string &dt, struct pool *p) :
2018-10-20 14:20:51 +02:00
path(pth),
dtypes(dt),
format(fmt)
2018-10-20 14:20:51 +02:00
{
int ret;
ret = io_init2(&io, format, dtypes.c_str(), 0);
2018-10-20 14:20:51 +02:00
if (ret)
throw RuntimeError("Failed to initialize IO");
2018-10-20 14:20:51 +02:00
ret = io_open(&io, path.c_str());
if (ret)
throw RuntimeError("Failed to open file: {}", path);
2018-10-20 14:20:51 +02:00
sample = sample_alloc(p);
if (!sample)
throw RuntimeError("Failed to allocate samples");
2018-10-20 14:20:51 +02:00
}
~TestCmpSide() noexcept(false)
2018-10-20 14:20:51 +02:00
{
int ret __attribute((unused));
2018-10-20 14:20:51 +02:00
ret = io_close(&io);
ret = io_destroy(&io);
sample_decref(sample);
}
};
class TestCmp : public Tool {
public:
TestCmp(int argc, char *argv[]) :
Tool(argc, argv, "test-cmp"),
pool(),
epsilon(1e-9),
format("villas.human"),
dtypes("64f"),
2019-06-23 16:13:23 +02:00
flags((int) SampleFlags::HAS_SEQUENCE | (int) SampleFlags::HAS_DATA | (int) SampleFlags::HAS_TS_ORIGIN)
{
int ret;
ret = memory_init(DEFAULT_NR_HUGEPAGES);
if (ret)
throw RuntimeError("Failed to initialize memory");
}
2019-04-17 18:46:18 +02:00
protected:
struct pool pool;
2019-04-17 18:46:18 +02:00
double epsilon;
std::string format;
std::string dtypes;
int flags;
2019-04-17 18:46:18 +02:00
std::vector<std::string> filenames;
2019-04-17 18:46:18 +02:00
void usage()
{
std::cout << "Usage: villas-test-cmp [OPTIONS] FILE1 FILE2 ... FILEn" << std::endl
<< " FILE a list of files to compare" << std::endl
<< " OPTIONS is one or more of the following options:" << std::endl
<< " -d LVL adjust the debug level" << std::endl
<< " -e EPS set epsilon for floating point comparisons to EPS" << std::endl
<< " -v ignore data values" << std::endl
<< " -T ignore timestamp" << std::endl
<< " -s ignore sequence no" << std::endl
<< " -f FMT file format for all files" << std::endl
<< " -t DT the data-type format string" << std::endl
<< " -h show this usage information" << std::endl
<< " -V show the version of the tool" << std::endl << std::endl
<< "Return codes:" << std::endl
<< " 0 files are equal" << std::endl
<< " 1 file length not equal" << std::endl
<< " 2 sequence no not equal" << std::endl
<< " 3 timestamp not equal" << std::endl
<< " 4 number of values is not equal" << std::endl
<< " 5 data is not equal" << std::endl << std::endl;
printCopyright();
}
void parse()
{
2019-04-17 18:46:18 +02:00
/* Parse Arguments */
int c;
char *endptr;
while ((c = getopt (argc, argv, "he:vTsf:t:Vd:")) != -1) {
switch (c) {
case 'e':
epsilon = strtod(optarg, &endptr);
goto check;
case 'v':
2019-06-23 16:13:23 +02:00
flags &= ~(int) SampleFlags::HAS_DATA;
2019-04-17 18:46:18 +02:00
break;
case 'T':
2019-06-23 16:13:23 +02:00
flags &= ~(int) SampleFlags::HAS_TS_ORIGIN;
2019-04-17 18:46:18 +02:00
break;
case 's':
2019-06-23 16:13:23 +02:00
flags &= ~(int) SampleFlags::HAS_SEQUENCE;
2019-04-17 18:46:18 +02:00
break;
case 'f':
format = optarg;
break;
case 't':
dtypes = optarg;
break;
case 'V':
printVersion();
2019-04-17 18:46:18 +02:00
exit(EXIT_SUCCESS);
case 'd':
logging.setLevel(optarg);
break;
case 'h':
case '?':
usage();
exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS);
}
2019-04-17 18:46:18 +02:00
continue;
2019-04-17 18:46:18 +02:00
check: if (optarg == endptr)
throw RuntimeError("Failed to parse parse option argument '-{} {}'", c, optarg);
}
2019-04-17 18:46:18 +02:00
if (argc - optind < 2) {
usage();
exit(EXIT_FAILURE);
2017-09-04 23:03:00 +02:00
}
/* Open files */
for (int i = 0; i < argc - optind; i++)
filenames.push_back(argv[optind + i]);
}
2019-04-17 18:46:18 +02:00
int main()
{
int ret, rc = 0, line, failed;
unsigned eofs;
2019-04-17 18:46:18 +02:00
struct format_type *fmt = format_type_lookup(format.c_str());
2019-04-17 18:46:18 +02:00
if (!fmt)
throw RuntimeError("Invalid IO format: {}", format);
2019-06-20 09:50:14 +02:00
ret = pool_init(&pool, filenames.size(), SAMPLE_LENGTH(DEFAULT_SAMPLE_LENGTH), &memory_heap);
if (ret)
throw RuntimeError("Failed to initialize pool");
2019-04-17 18:46:18 +02:00
/* Open files */
std::vector<TestCmpSide *> sides;
for (auto filename : filenames) {
auto *s = new TestCmpSide(filename, fmt, dtypes, &pool);
if (!s)
throw MemoryAllocationError();
sides.push_back(s);
}
2019-04-17 18:46:18 +02:00
line = 0;
for (;;) {
/* Read next sample from all files */
retry: eofs = 0;
for (auto side : sides) {
ret = io_eof(&side->io);
2019-04-17 18:46:18 +02:00
if (ret)
eofs++;
}
2019-04-17 18:46:18 +02:00
if (eofs) {
if (eofs == sides.size())
2019-04-17 18:46:18 +02:00
ret = 0;
else {
std::cout << "length unequal" << std::endl;
rc = 1;
}
2017-09-04 23:03:00 +02:00
goto out;
2018-08-20 18:31:27 +02:00
}
2019-04-17 18:46:18 +02:00
failed = 0;
for (auto side : sides) {
ret = io_scan(&side->io, &side->sample, 1);
2019-04-17 18:46:18 +02:00
if (ret <= 0)
failed++;
}
if (failed)
goto retry;
/* We compare all files against the first one */
for (auto side : sides) {
ret = sample_cmp(sides[0]->sample, side->sample, epsilon, flags);
2019-04-17 18:46:18 +02:00
if (ret) {
rc = ret;
goto out;
}
}
line++;
}
out: for (auto side : sides)
delete side;
2019-04-17 18:46:18 +02:00
ret = pool_destroy(&pool);
if (ret)
throw RuntimeError("Failed to destroy pool");
2019-04-17 18:46:18 +02:00
return rc;
}
};
2020-06-15 22:16:38 +02:00
} /* namespace tools */
} /* namespace node */
} /* namespace villas */
int main(int argc, char *argv[])
{
2019-06-18 17:52:54 +02:00
villas::node::tools::TestCmp t(argc, argv);
return t.run();
2017-07-24 19:33:35 +02:00
}