Skip to content
Snippets Groups Projects
Commit e90a477d authored by Markus Grotz's avatar Markus Grotz
Browse files

Plotter now uses the filename specified by the TopicReplayer

parent 35fcda77
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -53,6 +53,7 @@
#include <QTextEdit>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/filesystem/path.hpp>
#include <IceUtil/IceUtil.h>
......@@ -242,16 +243,31 @@ namespace armarx
if (toggled)
{
std::string filename = "datalog-" + IceUtil::Time::now().toDateTime() + ".csv";
boost::replace_all(filename, "/", "-");
filename = loggingDir.toStdString() + "/" + filename;
ARMARX_INFO << "Logging to " << filename;
logstream.open(filename);
boost::filesystem::path outputPath;
if (filename.empty())
{
outputPath = loggingDir.toStdString() + "/datalog.csv";
std::string time = IceUtil::Time::now().toDateTime();
boost::replace_all(time, "/", "-");
boost::replace_all(time, " ", "_");
boost::replace_all(time, ":", "-");
outputPath = outputPath.parent_path() / (outputPath.stem().string() + "-" + time + outputPath.extension().string());
}
else
{
boost::filesystem::path path = filename;
outputPath = loggingDir.toStdString() + "/" + path.stem().string() + ".csv";
}
ARMARX_INFO << "Logging to " << outputPath.string();
logstream.open(outputPath.string());
logStartTime = IceUtil::Time::now();
if (!logstream.is_open())
{
ARMARX_ERROR << "Could not open file for logging: " << filename;
ARMARX_ERROR << "Could not open file for logging: " << outputPath.string();
ui.btnLogToFile->setChecked(false);
}
else
......@@ -268,6 +284,7 @@ namespace armarx
}
else
{
filename = "";
logstream.flush();
ARMARX_INFO << "done writing log";
logstream.close();
......
......@@ -88,7 +88,7 @@ namespace armarx
public:
void onStartReplay(const Ice::Current& c = Ice::Current())
void onStartReplay(const std::string& filename, const Ice::Current& c = Ice::Current())
{
if (!syncDataLogging)
{
......@@ -97,6 +97,7 @@ namespace armarx
if (!ui.btnLogToFile->isChecked())
{
this->filename = filename;
ui.btnLogToFile->setChecked(true);
}
else
......@@ -200,6 +201,7 @@ namespace armarx
int pollingInterval = 33;
std::ofstream logstream;
IceUtil::Time logStartTime;
std::string filename = "";
int graphStyle;
std::map<std::string, std::map<IceUtil::Time, std::map<std::string, boost::shared_ptr<QwtPlotMarker>>>> markers;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment