summaryrefslogtreecommitdiff
path: root/orkbasecxx/ObjectFactory.cpp
blob: 724bbfdac0692a1157f77505b6d29c1b71b1fc37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */
#pragma warning( disable: 4786 )

#define _WINSOCKAPI_		// prevents the inclusion of winsock.h

#include "Utils.h"
#include "ObjectFactory.h"

ObjectFactory* ObjectFactory::m_singleton = NULL;

ObjectFactory::ObjectFactory()
{
}

void ObjectFactory::Initialize()
{
	m_singleton = new ObjectFactory();
}

ObjectFactory* ObjectFactory::GetSingleton()
{
	return m_singleton;
}


ObjectRef ObjectFactory::NewInstance(CStdString& className)
{
	MutexSentinel mutexSentinel(m_mutex);
	std::map<CStdString, ObjectRef>::iterator pair;
	pair = m_classes.find(className);

	if (pair == m_classes.end())
	{
		return ObjectRef();		// Empty
	}
	else
	{
		ObjectRef ref = pair->second;
		return ref->NewInstance();
	}
}

void ObjectFactory::RegisterObject(ObjectRef& objRef)
{
	MutexSentinel mutexSentinel(m_mutex);
	std::map<CStdString, ObjectRef>::iterator pair = m_classes.find(objRef->GetClassName());
	if(pair != m_classes.end())
	{
		m_classes.erase(pair);
	}
	m_classes.insert(std::make_pair(objRef->GetClassName(), objRef));
}