trick/trick_source/sim_services/ExternalApplications/StripChart.cpp

53 lines
1.1 KiB
C++
Raw Normal View History

2015-02-26 15:02:31 +00:00
#include <string>
#include "trick/StripChart.hh"
#include "trick/ExternalApplicationManager.hh"
2015-02-26 15:02:31 +00:00
Trick::StripChart::StripChart() {
command += std::string("trick-stripchart");
2015-02-26 15:02:31 +00:00
file_set = false;
}
void Trick::StripChart::set_arguments(std::string args) {
ExternalApplication::set_arguments(args);
file_set = false;
}
std::string Trick::StripChart::create_arguments_string() {
ExternalApplication::create_arguments_string();
std::ostringstream oss;
if (host_source != NONE) {
oss << " " << host;
}
if (port_source != NONE) {
oss << " " << port;
}
if (file_set) {
oss << " -input " << input_file;
}
return oss.str();
}
void Trick::StripChart::set_input_file(std::string filename) {
if (!filename.empty()) {
file_set = true;
input_file = filename;
//! Ensure this application is on the queue.
Trick::add_external_application(*this);
}
else {
file_set = false;
}
}
std::string Trick::StripChart::get_input_file() {
return input_file;
}