summaryrefslogtreecommitdiffstats
path: root/common/facadefactory.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-10-16 14:55:20 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-10-21 09:02:21 +0200
commit237b9ae4113e7a9f489632296941becb71afdb45 (patch)
tree01cde58f495944f01cad9d282391d4efd2897141 /common/facadefactory.h
parent95d11bf0be98a4e3c08502fe23417b800233ce14 (diff)
downloadsink-237b9ae4113e7a9f489632296941becb71afdb45.tar.gz
sink-237b9ae4113e7a9f489632296941becb71afdb45.zip
Refactor how the storage is used.
This is the initial refactoring to improve how we deal with the storage. It does a couple of things: * Rename Sink::Storage to Sink::Storage::DataStore to free up the Sink::Storage namespace * Introduce a Sink::ResourceContext to have a single object that can be passed around containing everything that is necessary to operate on a resource. This is a lot better than the multiple separate parameters that we used to pass around all over the place, while still allowing for dependency injection for tests. * Tie storage access together using the new EntityStore that directly works with ApplicationDomainTypes. This gives us a central place where main storage, indexes and buffer adaptors are tied together, which will also give us a place to implement external indexes, such as a fulltextindex using xapian. * Use ApplicationDomainTypes as the default way to pass around entities. Instead of using various ways to pass around entities (buffers, buffer adaptors, ApplicationDomainTypes), only use a single way. The old approach was confusing, and was only done as: * optimization; really shouldn't be necessary and otherwise I'm sure we can find better ways to optimize ApplicationDomainType itself. * a way to account for entities that have multiple buffers, a concept that I no longer deem relevant. While this commit does the bulk of the work to get there, the following commits will refactor more stuff to get things back to normal.
Diffstat (limited to 'common/facadefactory.h')
-rw-r--r--common/facadefactory.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/common/facadefactory.h b/common/facadefactory.h
index 7313970..8d41705 100644
--- a/common/facadefactory.h
+++ b/common/facadefactory.h
@@ -29,6 +29,7 @@
29 29
30#include "facadeinterface.h" 30#include "facadeinterface.h"
31#include "applicationdomaintype.h" 31#include "applicationdomaintype.h"
32#include "resourcecontext.h"
32#include "log.h" 33#include "log.h"
33 34
34namespace Sink { 35namespace Sink {
@@ -41,7 +42,7 @@ namespace Sink {
41class SINK_EXPORT FacadeFactory 42class SINK_EXPORT FacadeFactory
42{ 43{
43public: 44public:
44 typedef std::function<std::shared_ptr<void>(const QByteArray &)> FactoryFunction; 45 typedef std::function<std::shared_ptr<void>(const ResourceContext &)> FactoryFunction;
45 46
46 void registerStaticFacades(); 47 void registerStaticFacades();
47 48
@@ -52,13 +53,13 @@ public:
52 template <class DomainType, class Facade> 53 template <class DomainType, class Facade>
53 void registerFacade(const QByteArray &resource) 54 void registerFacade(const QByteArray &resource)
54 { 55 {
55 registerFacade(resource, [](const QByteArray &instanceIdentifier) { return std::make_shared<Facade>(instanceIdentifier); }, ApplicationDomain::getTypeName<DomainType>()); 56 registerFacade(resource, [](const ResourceContext &context) { return std::make_shared<Facade>(context); }, ApplicationDomain::getTypeName<DomainType>());
56 } 57 }
57 58
58 template <class DomainType, class Facade> 59 template <class DomainType, class Facade>
59 void registerFacade() 60 void registerFacade()
60 { 61 {
61 registerFacade(QByteArray(), [](const QByteArray &) { return std::make_shared<Facade>(); }, ApplicationDomain::getTypeName<DomainType>()); 62 registerFacade(QByteArray(), [](const ResourceContext &) { return std::make_shared<Facade>(); }, ApplicationDomain::getTypeName<DomainType>());
62 } 63 }
63 64
64 /* 65 /*