/src/Setup/MacOSX/

encryption software for Windows, Mac OS X and Linux. In case an attacker forces you to reveal the password, VeraCrypt provides plausible deniability. In contrast to file encryption, data encryption performed by VeraCrypt is real-time (on-the-fly), automatic, transparent, needs very little memory, and does not involve temporary unencrypted files."/>
VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/SerializerFactory.cpp
blob: 3174c389fa1c0df12a5ced809fc3abec334ff7e1 (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
/*
 Copyright (c) 2008 TrueCrypt Developers Association. All rights reserved.

 Governed by the TrueCrypt License 3.0 the full text of which is contained in
 the file License.txt included in TrueCrypt binary and source code distribution
 packages.
*/

#include <stdexcept>
#include "SerializerFactory.h"

namespace VeraCrypt
{
	void SerializerFactory::Deinitialize ()
	{
		if (--UseCount == 0)
		{
			delete NameToTypeMap;
			delete TypeToNameMap;
		}
	}

	string SerializerFactory::GetName (const type_info &typeInfo)
	{
		string typeName = StringConverter::GetTypeName (typeInfo);
		if (TypeToNameMap->find (typeName) == TypeToNameMap->end())
			throw std::runtime_error (SRC_POS);

		return (*TypeToNameMap)[typeName];
	}

	Serializable *SerializerFactory::GetNewSerializable (const string &typeName)
	{
		if (NameToTypeMap->find (typeName) == NameToTypeMap->end())
			throw std::runtime_error (SRC_POS);

		return (*NameToTypeMap)[typeName].GetNewPtr();
	}

	void SerializerFactory::Initialize ()
	{
		if (UseCount == 0)
		{
			NameToTypeMap = new map <string, SerializerFactory::MapEntry>;
			TypeToNameMap = new map <string, string>;
		}

		++UseCount;
	}

	map <string, SerializerFactory::MapEntry> *SerializerFactory::NameToTypeMap;
	map <string, string> *SerializerFactory::TypeToNameMap;
	int SerializerFactory::UseCount;
}