removed all the magic and made it simply instance based

This commit is contained in:
Fischlurch 2009-09-30 23:57:45 +02:00
parent bc6f8eebda
commit b7204e05ed
3 changed files with 40 additions and 55 deletions

View file

@ -36,7 +36,7 @@
#include "lib/error.hpp"
#include "lib/singleton.hpp"
//#include <tr1/memory>
#include "util.hpp"
#include <tr1/functional>
#include <map>
@ -46,6 +46,8 @@
namespace lib {
namespace factory {
using util::contains;
/**
* Dummy "wrapper",
* just returning a target-ref
@ -69,14 +71,17 @@ namespace lib {
typedef std::tr1::function<RawProduct(void)> FactoryFunc;
static FactoryFunc&
FactoryFunc&
select (ID id)
{
if (!contains (producerTable_,id))
throw lumiera::error::Invalid("unknown factory product requested.");
return producerTable_[id];
}
static void
defineProduction (ID id, FactoryFunc& fun)
void
defineProduction (ID id, FactoryFunc fun)
{
producerTable_[id] = fun;
}
@ -101,28 +106,25 @@ namespace lib {
typedef typename _Fab::FactoryFunc Creator;
typedef typename Wrapper<TY>::PType Product;
_Fab funcTable_;
public:
Product
operator() (ID id)
{
Creator& func = _Fab::select(id);
Creator& func = funcTable_.select(id);
return wrap (func());
}
/**
* to set up a production line,
* associated with a specific ID
/** to set up a production line,
* associated with a specific ID
*/
struct Produce
: Creator
template<typename FUNC>
void
defineProduction (ID id, FUNC fun)
{
template<typename FUNC>
Produce (ID id, FUNC fun)
: Creator(fun)
{
_Fab::defineProduction (id, *this);
}
};
funcTable_.defineProduction (id, fun);
}
/**
* Convenience shortcut for automatically setting up
@ -130,49 +132,27 @@ namespace lib {
* of the given target type (TAR)
*/
template<class TAR>
class ProduceSingleton
: Singleton<TAR>
, Produce
class Singleton
: lib::Singleton<TAR>
{
typedef std::tr1::function<TAR&(void)> AccessSingleton_Func;
typedef lib::Singleton<TAR> SingFac;
// typedef std::tr1::function<TAR&(void)> AccessSingleton_Func;
AccessSingleton_Func
createSingleton_accessFunction(Singleton<TAR>* theFactory)
Creator
createSingleton_accessFunction()
{
return std::tr1::bind (&Singleton<TAR>::operator(), theFactory);
return std::tr1::bind (&SingFac::operator()
, static_cast<SingFac*>(this));
}
public:
ProduceSingleton()
: Produce ( TAR::getTypeID() // required within target type!
, createSingleton_accessFunction(this))
Singleton (MultiFact& factory, ID id)
{
INFO (test, "zoing");
factory.defineProduction(id, createSingleton_accessFunction());
}
};
};
template<class X>
struct AutoInstantiation
{
static X autoRegistration;
};
template<class X>
X AutoInstantiation<X>::autoRegistration;
// /** define a static instance variable
// * to trigger the sideeffect of automatic registration.
// * This templated definition actually happens, when the
// * ProduceSingleton template gets instantiated. This may be
// * triggered explicitly, or by inheriting from ProduceSingleton.
// */
// template< typename TY, typename ID
// , template<class> class Wrapper>
// template< class TAR>
// typename MultiFact<TY,ID,Wrapper>::Produce
// MultiFact<TY,ID,Wrapper>::ProduceSingleton<TAR>::autoRegistration ( TY::getID() // required within target type!
// , createSingleton_accessFunction());
} // namespace factory

View file

@ -289,7 +289,7 @@ out: Impl-1
out: Impl-2
out: Impl-3
out: Impl-4
out: sizeof\( .+ \) = 1
out: sizeof\( .+MultiFact.+Interface.+theID.+PassReference.+ \) =
return: 0
END

View file

@ -44,6 +44,7 @@ namespace test{
using std::cout;
using std::endl;
using lumiera::error::LUMIERA_ERROR_INVALID;
namespace { // hierarchy of test dummy objects
@ -79,10 +80,12 @@ namespace test{
static theID getTypeID() { return ii; }
};
TestFactory::ProduceSingleton<Implementation<ONE> > singletonInstantiation_ONE;
TestFactory::ProduceSingleton<Implementation<TWO> > singletonInstantiation_TWO;
TestFactory::ProduceSingleton<Implementation<THR> > singletonInstantiation_THR;
TestFactory::ProduceSingleton<Implementation<FOU> > singletonInstantiation_FOU;
TestFactory theFact;
TestFactory::Singleton<Implementation<ONE> > holder1 (theFact,ONE);
TestFactory::Singleton<Implementation<TWO> > holder2 (theFact,TWO);
TestFactory::Singleton<Implementation<THR> > holder3 (theFact,THR);
TestFactory::Singleton<Implementation<FOU> > holder4 (theFact,FOU);
}
@ -102,7 +105,6 @@ namespace test{
void
run (Arg)
{
TestFactory theFact;
cout << theFact(ONE) << endl;
cout << theFact(TWO) << endl;
cout << theFact(THR) << endl;
@ -114,6 +116,9 @@ namespace test{
ASSERT (isSameObject(o1,o2));
TestFactory anotherFact;
VERIFY_ERROR (INVALID, anotherFact(ONE) );
TestFactory::Singleton<Implementation<ONE> > anotherSingletonHolder (anotherFact,ONE);
Interface & o3 = anotherFact(ONE);
ASSERT (isSameObject(o2,o3));
}