aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/rulenode.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-02-12 14:53:42 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-02-16 11:34:20 +0000
commitbca41151f08e2b198bd6ac1da1603d6933c9166a (patch)
tree3d835697679d793ee5bc4434bf760929d50641fa /src/lib/corelib/buildgraph/rulenode.h
parent21c5ea0f79ad0e89eaa29ab5b91387b8454c4e3e (diff)
Get rid of redundancies between load() and store() methods
It's silly that we have to mention each serializable data member in both the load and the store methods. Instead, whenever possible, forward these methods to a template that calls the right function in the persistence backend based on its parameter. Change-Id: I00e2dee8cdf55405f447cee27190bc97df8673e3 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/rulenode.h')
-rw-r--r--src/lib/corelib/buildgraph/rulenode.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/rulenode.h b/src/lib/corelib/buildgraph/rulenode.h
index 50c625799..b502b7ac8 100644
--- a/src/lib/corelib/buildgraph/rulenode.h
+++ b/src/lib/corelib/buildgraph/rulenode.h
@@ -45,6 +45,7 @@
#include "forward_decls.h"
#include <language/forward_decls.h>
#include <tools/dynamictypecheck.h>
+#include <tools/persistence.h>
#include <unordered_map>
@@ -80,9 +81,14 @@ public:
void removeOldInputArtifact(Artifact *artifact) { m_oldInputArtifacts.remove(artifact); }
void load(PersistentPool &pool);
- void store(PersistentPool &pool) const;
+ void store(PersistentPool &pool);
private:
+ template<PersistentPool::OpType opType> void serializationOp(PersistentPool &pool)
+ {
+ pool.serializationOp<opType>(m_rule, m_oldInputArtifacts);
+ }
+
ArtifactSet currentInputArtifacts() const;
RuleConstPtr m_rule;