mirror of https://github.com/ArduPilot/ardupilot
AP_Logger: tidy running of LoggerMessageWriter sub-writers
... use the fact these all have a common base class to reduce effectively duplicate code. Also un-virtualise and const a function which wasn't overridden and can be const
This commit is contained in:
parent
12197b2d60
commit
b5b42f9446
|
@ -177,40 +177,30 @@ void LoggerMessageWriter_DFLogStart::process()
|
||||||
stage = Stage::RUNNING_SUBWRITERS;
|
stage = Stage::RUNNING_SUBWRITERS;
|
||||||
FALLTHROUGH;
|
FALLTHROUGH;
|
||||||
|
|
||||||
case Stage::RUNNING_SUBWRITERS:
|
case Stage::RUNNING_SUBWRITERS: {
|
||||||
if (!_writesysinfo.finished()) {
|
LoggerMessageWriter *subwriters[] {
|
||||||
_writesysinfo.process();
|
&_writesysinfo,
|
||||||
if (!_writesysinfo.finished()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#if AP_MISSION_ENABLED
|
#if AP_MISSION_ENABLED
|
||||||
if (!_writeentiremission.finished()) {
|
&_writeentiremission,
|
||||||
_writeentiremission.process();
|
|
||||||
if (!_writeentiremission.finished()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
#if HAL_LOGGER_RALLY_ENABLED
|
#if HAL_LOGGER_RALLY_ENABLED
|
||||||
if (!_writeallrallypoints.finished()) {
|
&_writeallrallypoints,
|
||||||
_writeallrallypoints.process();
|
|
||||||
if (!_writeallrallypoints.finished()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
#if HAL_LOGGER_FENCE_ENABLED
|
#if HAL_LOGGER_FENCE_ENABLED
|
||||||
if (!_writeallpolyfence.finished()) {
|
&_writeallpolyfence,
|
||||||
_writeallpolyfence.process();
|
#endif
|
||||||
if (!_writeallpolyfence.finished()) {
|
};
|
||||||
|
for (auto *sw : subwriters) {
|
||||||
|
if (!sw->finished()) {
|
||||||
|
sw->process();
|
||||||
|
if (!sw->finished()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
}
|
||||||
stage = Stage::VEHICLE_MESSAGES;
|
stage = Stage::VEHICLE_MESSAGES;
|
||||||
FALLTHROUGH;
|
FALLTHROUGH;
|
||||||
|
}
|
||||||
case Stage::VEHICLE_MESSAGES:
|
case Stage::VEHICLE_MESSAGES:
|
||||||
// we guarantee 200 bytes of space for the vehicle startup
|
// we guarantee 200 bytes of space for the vehicle startup
|
||||||
// messages. This allows them to be simple functions rather
|
// messages. This allows them to be simple functions rather
|
||||||
|
|
|
@ -8,7 +8,7 @@ public:
|
||||||
|
|
||||||
virtual void reset() = 0;
|
virtual void reset() = 0;
|
||||||
virtual void process() = 0;
|
virtual void process() = 0;
|
||||||
virtual bool finished() { return _finished; }
|
bool finished() const { return _finished; }
|
||||||
|
|
||||||
virtual void set_logger_backend(class AP_Logger_Backend *backend) {
|
virtual void set_logger_backend(class AP_Logger_Backend *backend) {
|
||||||
_logger_backend = backend;
|
_logger_backend = backend;
|
||||||
|
|
Loading…
Reference in New Issue