diff options
author | lloyd <[email protected]> | 2007-10-13 20:11:51 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-10-13 20:11:51 +0000 |
commit | e0fe7b1a473dd862e41a662d4bb9edab381370cf (patch) | |
tree | e4820c0fe53636fa9d640f0a8fa7b4987fbc3796 /src/libstate.cpp | |
parent | 0fcaf44cec8d534f070ae336785f7d4889a8b1ad (diff) |
Move most of the initializer code directly into the Library_State constructor
Diffstat (limited to 'src/libstate.cpp')
-rw-r--r-- | src/libstate.cpp | 74 |
1 files changed, 43 insertions, 31 deletions
diff --git a/src/libstate.cpp b/src/libstate.cpp index 62ecd5cdf..8d6475e64 100644 --- a/src/libstate.cpp +++ b/src/libstate.cpp @@ -12,6 +12,7 @@ #include <botan/mutex.h> #include <botan/timers.h> #include <botan/charset.h> +#include <botan/x931_rng.h> #include <algorithm> namespace Botan { @@ -136,11 +137,8 @@ void Library_State::set_default_allocator(const std::string& type) const *************************************************/ void Library_State::set_timer(Timer* new_timer) { - if(new_timer) - { - delete timer; - timer = new_timer; - } + delete timer; + timer = new_timer; } /************************************************* @@ -312,18 +310,40 @@ void Library_State::pulse(Pulse_Type pulse_type) const Config& Library_State::config() const { if(!config_obj) - throw Invalid_State("Library_State::config(): No config set"); + { + printf("Lazy creation of the global config\n"); + config_obj = new Config(); + config_obj->load_defaults(); + } return (*config_obj); } /************************************************* -* Load modules * +* Library_State Constructor * *************************************************/ -void Library_State::load(Modules& modules) +Library_State::Library_State(const InitializerOptions& args, + Modules& modules) { - set_timer(modules.timer()); - set_transcoder(modules.transcoder()); + if(args.thread_safe()) + mutex_factory = modules.mutex_factory(); + else + mutex_factory = new Default_Mutex_Factory; + + timer = modules.timer(); + transcoder = modules.transcoder(); + + if(args.config_file() != "") + config().load_inifile(args.config_file()); + + locks["settings"] = get_mutex(); + locks["allocator"] = get_mutex(); + locks["rng"] = get_mutex(); + locks["engine"] = get_mutex(); + rng = 0; + cached_default_allocator = 0; + x509_state_obj = 0; + ui = 0; std::vector<Allocator*> mod_allocs = modules.allocators(); for(u32bit j = 0; j != mod_allocs.size(); ++j) @@ -341,29 +361,21 @@ void Library_State::load(Modules& modules) std::vector<EntropySource*> sources = modules.entropy_sources(); for(u32bit j = 0; j != sources.size(); ++j) add_entropy_source(sources[j]); - } -/************************************************* -* Library_State Constructor * -*************************************************/ -Library_State::Library_State(Mutex_Factory* mutex_factory) - { - if(!mutex_factory) - throw Exception("Library_State: no mutex found"); - - this->mutex_factory = mutex_factory; - this->timer = new Timer(); - this->transcoder = 0; - this->config_obj = new Config(); + set_prng(new ANSI_X931_RNG); - locks["settings"] = get_mutex(); - locks["allocator"] = get_mutex(); - locks["rng"] = get_mutex(); - locks["engine"] = get_mutex(); - rng = 0; - cached_default_allocator = 0; - x509_state_obj = 0; - ui = 0; + if(args.seed_rng()) + { + for(u32bit j = 0; j != 4; ++j) + { + seed_prng(true, 384); + if(rng_is_seeded()) + break; + } + + if(!rng_is_seeded()) + throw PRNG_Unseeded("Unable to collect sufficient entropy"); + } } /************************************************* |