From 44ee58911b3ffbe9e48e5278bdc73edaf618facd Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 9 May 2021 20:08:31 +0100 Subject: Don't write null value for pointers Null is a sensible default which can't be defaulted to anything else sane --- lib/persistence.cpp | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) (limited to 'lib/persistence.cpp') diff --git a/lib/persistence.cpp b/lib/persistence.cpp index b85bff2..405c7ec 100644 --- a/lib/persistence.cpp +++ b/lib/persistence.cpp @@ -38,7 +38,7 @@ namespace Persistence { PersistenceSelect::PersistenceSelect(const std::string & n) : name {n} { } PersistenceStore::NameAction - PersistenceSelect::setName(const std::string_view key) + PersistenceSelect::setName(const std::string_view key, const Selection &) { return (key == name) ? NameAction::Push : NameAction::Ignore; } @@ -51,16 +51,19 @@ namespace Persistence { PersistenceWrite::PersistenceWrite(const Writer & o, bool sh) : out {o}, shared {sh} { } PersistenceStore::NameAction - PersistenceWrite::setName(const std::string_view key) - { - if (!first) { - out.nextValue(); - } - else { - first = false; + PersistenceWrite::setName(const std::string_view key, const Selection & s) + { + if (s.needsWrite()) { + if (!first) { + out.nextValue(); + } + else { + first = false; + } + out.pushKey(key); + return NameAction::HandleAndContinue; } - out.pushKey(key); - return NameAction::HandleAndContinue; + return NameAction::Ignore; } void @@ -135,6 +138,12 @@ namespace Persistence { { } + bool + Selection::needsWrite() const + { + return true; + } + void Selection::write(const Writer &) const { -- cgit v1.2.3