2015-02-26 15:02:31 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2017-05-22 19:07:25 +00:00
|
|
|
#include <errno.h>
|
2015-02-26 15:02:31 +00:00
|
|
|
#include <limits>
|
|
|
|
|
2015-06-01 15:28:29 +00:00
|
|
|
#include "trick/MonteVarFile.hh"
|
|
|
|
#include "trick/message_proto.h"
|
|
|
|
#include "trick/exec_proto.h"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
Trick::MonteVarFile::MonteVarFile(std::string in_name, std::string in_file_name, unsigned int in_column, std::string in_unit) : input_file_stream(NULL)
|
2016-10-03 19:57:11 +00:00
|
|
|
{
|
2015-02-26 15:02:31 +00:00
|
|
|
this->name = in_name;
|
|
|
|
this->column = in_column;
|
|
|
|
this->unit = in_unit;
|
2016-11-08 09:25:07 +00:00
|
|
|
|
2016-10-03 19:57:11 +00:00
|
|
|
set_file_name(in_file_name);
|
2015-02-26 15:02:31 +00:00
|
|
|
buffer = new char[4096];
|
2016-10-03 19:57:11 +00:00
|
|
|
}
|
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
Trick::MonteVarFile::~MonteVarFile()
|
|
|
|
{
|
2016-10-03 19:57:11 +00:00
|
|
|
delete input_file_stream;
|
|
|
|
delete buffer;
|
2015-02-26 15:02:31 +00:00
|
|
|
}
|
|
|
|
|
2017-10-10 15:30:28 +00:00
|
|
|
// Composite the various properties of this MonteVarFile.
|
|
|
|
std::string Trick::MonteVarFile::describe_variable()
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
|
|
|
|
ss << "#NAME:\t\t" << this->name << "\n"
|
2017-10-12 15:00:54 +00:00
|
|
|
<< "#TYPE:\t\tFILE\n"
|
2017-10-10 15:30:28 +00:00
|
|
|
<< "#UNIT:\t\t" << this->unit << "\n"
|
|
|
|
<< "#FILE:\t\t" << this->file_name << "\n"
|
|
|
|
<< "#COLUMN:\t" << this->column << "\n";
|
|
|
|
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
std::string Trick::MonteVarFile::get_next_value()
|
|
|
|
{
|
|
|
|
if (input_file_stream->good())
|
|
|
|
{
|
|
|
|
// Skip the comments and empty lines in the data file.
|
|
|
|
do
|
|
|
|
{
|
2015-02-26 15:02:31 +00:00
|
|
|
input_file_stream->getline(buffer, 4096);
|
2017-10-12 15:00:54 +00:00
|
|
|
|
|
|
|
if(input_file_stream->eof())
|
|
|
|
{
|
2015-02-26 15:02:31 +00:00
|
|
|
input_file_stream->close();
|
|
|
|
return "EOF";
|
|
|
|
}
|
2017-10-12 15:00:54 +00:00
|
|
|
}
|
|
|
|
while(buffer[0] == '#' || buffer[0] == '\0');
|
2015-02-26 15:02:31 +00:00
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
// Count the number of columns in the input file.
|
|
|
|
char *token;
|
2015-02-26 15:02:31 +00:00
|
|
|
unsigned int ntokens = 0;
|
|
|
|
char temp_str[4096];
|
2017-10-12 15:00:54 +00:00
|
|
|
strcpy(temp_str, buffer);
|
|
|
|
token = strtok(temp_str, " \t");
|
|
|
|
while (token != NULL)
|
|
|
|
{
|
|
|
|
token = strtok(NULL, " \t");
|
2015-02-26 15:02:31 +00:00
|
|
|
ntokens++;
|
|
|
|
}
|
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
// Verify the input column number is valid.
|
|
|
|
if ((column == 0) || (column > ntokens))
|
|
|
|
{
|
2015-02-26 15:02:31 +00:00
|
|
|
char string[100];
|
|
|
|
sprintf(string, "Trick:MonteVarFile An invalid column number %d, valid column numbers are 1 - %d", column, ntokens);
|
|
|
|
exec_terminate_with_return(-1, __FILE__, __LINE__, string);
|
|
|
|
}
|
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
// Get the next value.
|
|
|
|
strcpy(temp_str, buffer);
|
|
|
|
token = strtok(temp_str, " \t");
|
2015-02-26 15:02:31 +00:00
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
for(unsigned int i = 1; i < column; i++)
|
|
|
|
{
|
|
|
|
// Iterate through each token in the temp_str.
|
|
|
|
if(token != NULL)
|
|
|
|
{
|
|
|
|
token = strtok(NULL, " \t");
|
2015-02-26 15:02:31 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-12 15:00:54 +00:00
|
|
|
|
|
|
|
// Return the value as a string.
|
|
|
|
this->value = token;
|
|
|
|
std::stringstream ss;
|
|
|
|
|
|
|
|
if(unit.empty())
|
|
|
|
{
|
|
|
|
ss << this->name << " = " << token;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ss << this->name << " = " << "trick.attach_units(\"" << unit << "\", " << token << ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
return ss.str();
|
2015-02-26 15:02:31 +00:00
|
|
|
}
|
|
|
|
char string[100];
|
2015-03-23 21:03:14 +00:00
|
|
|
sprintf(string, "Trick:MonteVarFile the input file \"%s\" is not open for reading", file_name.c_str());
|
2015-02-26 15:02:31 +00:00
|
|
|
exec_terminate_with_return(-1, __FILE__, __LINE__, string);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-10-03 19:57:11 +00:00
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
void Trick::MonteVarFile::set_file_name(std::string in_file_name)
|
|
|
|
{
|
2016-10-03 19:57:11 +00:00
|
|
|
delete input_file_stream;
|
|
|
|
|
|
|
|
input_file_stream = new std::ifstream(in_file_name.c_str(), std::ifstream::in);
|
2017-10-12 15:00:54 +00:00
|
|
|
if (input_file_stream->fail())
|
|
|
|
{
|
2016-10-03 19:57:11 +00:00
|
|
|
std::stringstream string_stream;
|
2017-05-22 18:47:25 +00:00
|
|
|
|
|
|
|
string_stream << "Error: " << strerror(errno) << std::endl
|
2017-10-12 15:00:54 +00:00
|
|
|
<< " Trick:MonteVarFile input file \"" << in_file_name << "\" failed to open";
|
2017-05-22 18:47:25 +00:00
|
|
|
|
2016-10-03 19:57:11 +00:00
|
|
|
exec_terminate_with_return(-1, __FILE__, __LINE__, string_stream.str().c_str());
|
|
|
|
}
|
|
|
|
this->file_name = in_file_name;
|
|
|
|
}
|
|
|
|
|
2017-10-12 15:00:54 +00:00
|
|
|
void Trick::MonteVarFile::set_column(unsigned int in_column)
|
|
|
|
{
|
2016-10-03 19:57:11 +00:00
|
|
|
this->column = in_column;
|
|
|
|
}
|