diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-02-11 15:34:43 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | cddd5942f8accaa612d8e107b45c1bf3d47a5c95 (patch) | |
tree | 12fccf925d13078caa338f3c72332e9a3ec0cd79 /desktop-widgets/command_private.h | |
parent | d5691cd7cba5ffac6ffe1b6e85802abfc262decc (diff) | |
download | subsurface-cddd5942f8accaa612d8e107b45c1bf3d47a5c95.tar.gz |
Undo: update dive list after edit command
The dive list was not updated automatically when an edit command was
executed. There was already a signal to do that, viz. divesChanged().
But that signal worked by-trip and didn't have a dive-field specifier.
The edit-commands used the divesEdited() signal that isn't by-trip
but has a dive-field specifier.
Unify these two signals to be by-trip and with dive-field specifier.
This needs common code to generate the by-trip list that is moved to
a command_private.h header.
Since there might now be multiple signals (one per trip) actually
check in the main-tab whether the current trip is affected to
avoid multiple update of fields. This has the positive(?) effect
of not doing any update if the current dive isn't changed.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/command_private.h')
-rw-r--r-- | desktop-widgets/command_private.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/desktop-widgets/command_private.h b/desktop-widgets/command_private.h new file mode 100644 index 000000000..06e4516c1 --- /dev/null +++ b/desktop-widgets/command_private.h @@ -0,0 +1,61 @@ +// SPDX-License-Identifier: GPL-2.0 +// Private definitions for the command-objects + +#ifndef COMMAND_PRIVATE_H +#define COMMAND_PRIVATE_H + +#include <vector> +#include <utility> +#include <QVector> + +struct dive; +struct dive_trip; + +namespace Command { + +// Generally, signals are sent in batches per trip. To avoid writing the same loop +// again and again, this template takes a vector of trip / dive pairs, sorts it +// by trip and then calls a function-object with trip and a QVector of dives in that trip. +// Input parameters: +// - dives: a vector of trip,dive pairs, which will be sorted and processed in batches by trip. +// - action: a function object, taking a trip-pointer and a QVector of dives, which will be called for each batch. +template<typename Function> +void processByTrip(std::vector<std::pair<dive_trip *, dive *>> &dives, Function action) +{ + // Use std::tie for lexicographical sorting of trip, then start-time + std::sort(dives.begin(), dives.end(), + [](const std::pair<dive_trip *, dive *> &e1, const std::pair<dive_trip *, dive *> &e2) + { return std::tie(e1.first, e1.second->when) < std::tie(e2.first, e2.second->when); }); + + // Then, process the dives in batches by trip + size_t i, j; // Begin and end of batch + for (i = 0; i < dives.size(); i = j) { + dive_trip *trip = dives[i].first; + for (j = i + 1; j < dives.size() && dives[j].first == trip; ++j) + ; // pass + // Copy dives into a QVector. Some sort of "range_view" would be ideal, but Qt doesn't work this way. + QVector<dive *> divesInTrip(j - i); + for (size_t k = i; k < j; ++k) + divesInTrip[k - i] = dives[k].second; + + // Finally, emit the signal + action(trip, divesInTrip); + } +} + +// The processByTrip() function above takes a vector if (trip, dive) pairs. +// This overload takes a vector of dives. +template<typename Vector, typename Function> +void processByTrip(Vector &divesIn, Function action) +{ + std::vector<std::pair<dive_trip *, dive *>> dives; + dives.reserve(divesIn.size()); + for (dive *d: divesIn) + dives.push_back({ d->divetrip, d }); + processByTrip(dives, action); + +} + +} // namespace Command + +#endif // COMMAND_PRIVATE_H |