tsv_export.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #ifndef SRC_CORE_INCLUDE_CORBO_CORE_TSV_EXPORT_H_
26 #define SRC_CORE_INCLUDE_CORBO_CORE_TSV_EXPORT_H_
27 
29 
30 #include <fstream>
31 #include <memory>
32 
33 namespace corbo {
34 
42 class TsvExporter : public DataExporterInterface
43 {
44  public:
45  using Ptr = std::shared_ptr<TsvExporter>;
46 
47  TsvExporter() = default;
48 
49  DataExporterInterface::Ptr getInstance() const override { return std::make_shared<TsvExporter>(); }
50 
51  std::string getFormatName() const override { return "Tsv"; }
52  std::string getFileSuffix() const override { return ".tsv"; }
53 
54  bool isSupportingSignalGroup() const override { return false; }
55  bool isSupportingTimeSeriesSignal() const override { return true; }
56  bool isSupportingTimeSeries() const override { return true; }
57  bool isSupportingIndexedValuesSignal() const override { return false; }
58  bool isSupportingIndexedValuesSetSignal() const override { return false; }
59 
60  bool exportTimeSeriesSignal(const std::string& filename, const TimeSeriesSignal& signal) override;
61  bool exportTimeSeries(const std::string& filename, const TimeSeries& time_series) override;
62 };
64 
65 } // namespace corbo
66 
67 #endif // SRC_CORE_INCLUDE_CORBO_CORE_TSV_EXPORT_H_
data_exporter_interface.h
corbo::TsvExporter::isSupportingSignalGroup
bool isSupportingSignalGroup() const override
Definition: tsv_export.h:98
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::TsvExporter::exportTimeSeries
bool exportTimeSeries(const std::string &filename, const TimeSeries &time_series) override
Definition: tsv_export.cpp:59
corbo::TsvExporter::isSupportingIndexedValuesSetSignal
bool isSupportingIndexedValuesSetSignal() const override
Definition: tsv_export.h:102
corbo::TsvExporter::getFileSuffix
std::string getFileSuffix() const override
Definition: tsv_export.h:96
corbo::TsvExporter::getInstance
DataExporterInterface::Ptr getInstance() const override
Return a newly created shared instance of the implemented class.
Definition: tsv_export.h:93
corbo::TsvExporter::isSupportingTimeSeries
bool isSupportingTimeSeries() const override
Definition: tsv_export.h:100
relicense.filename
filename
Definition: relicense.py:57
corbo::DataExporterInterface::Ptr
std::shared_ptr< DataExporterInterface > Ptr
Definition: data_exporter_interface.h:92
corbo::FACTORY_REGISTER_DATA_EXPORTER
FACTORY_REGISTER_DATA_EXPORTER(TsvExporter)
corbo::TsvExporter::exportTimeSeriesSignal
bool exportTimeSeriesSignal(const std::string &filename, const TimeSeriesSignal &signal) override
Definition: tsv_export.cpp:53
corbo::TsvExporter::isSupportingIndexedValuesSignal
bool isSupportingIndexedValuesSignal() const override
Definition: tsv_export.h:101
corbo::TsvExporter::TsvExporter
TsvExporter()=default
corbo::TsvExporter::getFormatName
std::string getFormatName() const override
Definition: tsv_export.h:95
corbo::TsvExporter::Ptr
std::shared_ptr< TsvExporter > Ptr
Definition: tsv_export.h:89
corbo::TsvExporter::isSupportingTimeSeriesSignal
bool isSupportingTimeSeriesSignal() const override
Definition: tsv_export.h:99


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:07:13