blob: 3fd202d5faf736fa0c55d24460497d4ce6bc4933 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/*
* Global State Management
* (C) 2010 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/global_state.h>
#include <botan/libstate.h>
namespace Botan {
/*
* @todo There should probably be a lock to avoid racy manipulation
* of the state among different threads
*/
namespace Global_State_Management {
/*
* Botan's global state
*/
namespace {
Library_State* global_lib_state = nullptr;
}
/*
* Access the global state object
*/
Library_State& global_state()
{
/* Lazy initialization. Botan still needs to be deinitialized later
on or memory might leak.
*/
if(!global_lib_state)
{
global_lib_state = new Library_State;
global_lib_state->initialize();
}
return (*global_lib_state);
}
/*
* Set a new global state object
*/
void set_global_state(Library_State* new_state)
{
delete swap_global_state(new_state);
}
/*
* Set a new global state object unless one already existed
*/
bool set_global_state_unless_set(Library_State* new_state)
{
if(global_lib_state)
{
delete new_state;
return false;
}
else
{
delete swap_global_state(new_state);
return true;
}
}
/*
* Swap two global state objects
*/
Library_State* swap_global_state(Library_State* new_state)
{
Library_State* old_state = global_lib_state;
global_lib_state = new_state;
return old_state;
}
/*
* Query if library is initialized
*/
bool global_state_exists()
{
return (global_lib_state != nullptr);
}
}
}
|