[4733] | 1 | // [License]
|
---|
| 2 | // The Ariba-Underlay Copyright
|
---|
| 3 | //
|
---|
| 4 | // Copyright (c) 2008-2009, Institute of Telematics, UniversitÀt Karlsruhe (TH)
|
---|
| 5 | //
|
---|
| 6 | // Institute of Telematics
|
---|
| 7 | // UniversitÀt Karlsruhe (TH)
|
---|
| 8 | // Zirkel 2, 76128 Karlsruhe
|
---|
| 9 | // Germany
|
---|
| 10 | //
|
---|
| 11 | // Redistribution and use in source and binary forms, with or without
|
---|
| 12 | // modification, are permitted provided that the following conditions are
|
---|
| 13 | // met:
|
---|
| 14 | //
|
---|
| 15 | // 1. Redistributions of source code must retain the above copyright
|
---|
| 16 | // notice, this list of conditions and the following disclaimer.
|
---|
| 17 | // 2. Redistributions in binary form must reproduce the above copyright
|
---|
| 18 | // notice, this list of conditions and the following disclaimer in the
|
---|
| 19 | // documentation and/or other materials provided with the distribution.
|
---|
| 20 | //
|
---|
| 21 | // THIS SOFTWARE IS PROVIDED BY THE INSTITUTE OF TELEMATICS ``AS IS'' AND
|
---|
| 22 | // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
| 23 | // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
---|
| 24 | // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARIBA PROJECT OR
|
---|
| 25 | // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
---|
| 26 | // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
---|
| 27 | // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
---|
| 28 | // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
---|
| 29 | // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
---|
| 30 | // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
---|
| 31 | // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 32 | //
|
---|
| 33 | // The views and conclusions contained in the software and documentation
|
---|
| 34 | // are those of the authors and should not be interpreted as representing
|
---|
| 35 | // official policies, either expressed or implied, of the Institute of
|
---|
| 36 | // Telematics.
|
---|
| 37 | // [License]
|
---|
| 38 |
|
---|
| 39 |
|
---|
| 40 | #include "BootstrapManager.h"
|
---|
| 41 | #include "ariba/utility/bootstrap/modules/multicastdns/MulticastDns.h"
|
---|
| 42 |
|
---|
| 43 | namespace ariba {
|
---|
| 44 | namespace utility {
|
---|
| 45 |
|
---|
| 46 | use_logging_cpp(BootstrapManager);
|
---|
| 47 |
|
---|
| 48 | BootstrapManager::BootstrapManager(){
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | BootstrapManager::~BootstrapManager(){
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | BootstrapManager::RegistrationResult BootstrapManager::registerModule(BootstrapManager::BootstrapType type){
|
---|
| 55 |
|
---|
| 56 | boost::mutex::scoped_lock lock( modulesMutex );
|
---|
| 57 |
|
---|
| 58 | ModuleMap::iterator i = modules.find(type);
|
---|
| 59 | if( i != modules.end() ){
|
---|
| 60 | logging_error("bootstrap module " << i->second->getName() << " already registered");
|
---|
| 61 | return RegistrationFailed;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | BootstrapModule* module = NULL;
|
---|
| 65 |
|
---|
| 66 | switch(type){
|
---|
| 67 | case BootstrapTypeMulticastDns:
|
---|
[4758] | 68 | module = new MulticastDns(this);
|
---|
[4733] | 69 | break;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | if( module == NULL){
|
---|
| 73 | logging_error("bootstrap module for type " << type << " not found");
|
---|
| 74 | return RegistrationNotSupported;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | if( !module->isFunctional() ){
|
---|
| 78 | logging_error("bootstrap module " << module->getName() << " is not functional");
|
---|
| 79 | delete module;
|
---|
| 80 | return RegistrationFailed;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
| 83 | logging_debug("bootstrap module " << module->getName() << " registered");
|
---|
| 84 |
|
---|
| 85 | module->start();
|
---|
| 86 | modules.insert( std::make_pair(type, module) );
|
---|
| 87 |
|
---|
| 88 | return RegistrationSucceeded;
|
---|
| 89 | }
|
---|
| 90 |
|
---|
[4836] | 91 | BootstrapManager::RegistrationResult BootstrapManager::unregisterModule(
|
---|
| 92 | BootstrapManager::BootstrapType type){
|
---|
[4733] | 93 |
|
---|
| 94 | boost::mutex::scoped_lock lock( modulesMutex );
|
---|
| 95 |
|
---|
| 96 | ModuleMap::iterator i = modules.find(type);
|
---|
| 97 | if( i != modules.end() ) return RegistrationFailed;
|
---|
| 98 |
|
---|
| 99 | BootstrapModule* module = i->second;
|
---|
| 100 | module->stop();
|
---|
| 101 | delete module;
|
---|
| 102 | modules.erase(i);
|
---|
| 103 |
|
---|
[4758] | 104 | logging_debug("bootstrap module " << module->getName() << " unregistered");
|
---|
| 105 |
|
---|
[4733] | 106 | return RegistrationSucceeded;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
[4836] | 109 | BootstrapManager::RegistrationResult BootstrapManager::registerAllModules(){
|
---|
| 110 | RegistrationResult result = RegistrationSucceeded;
|
---|
[4733] | 111 |
|
---|
[4836] | 112 | { // multicast dns
|
---|
| 113 | RegistrationResult resone = RegistrationSucceeded;
|
---|
| 114 | resone = registerModule(BootstrapTypeMulticastDns);
|
---|
| 115 | if(resone != RegistrationSucceeded)
|
---|
| 116 | result = resone;
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | { // todo
|
---|
| 120 | /* ... */
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | return result;
|
---|
| 124 | }
|
---|
| 125 |
|
---|
| 126 | BootstrapManager::RegistrationResult BootstrapManager::unregisterAllModules(){
|
---|
| 127 | unregisterModule(BootstrapTypeMulticastDns);
|
---|
| 128 | /* todo ... */
|
---|
| 129 |
|
---|
| 130 | return RegistrationSucceeded;
|
---|
| 131 | }
|
---|
| 132 |
|
---|
| 133 | void BootstrapManager::onBootstrapServiceFound(string name, string info1, string info2, string info3){
|
---|
| 134 |
|
---|
[4733] | 135 | BOOST_FOREACH( BootstrapInformationCallback* callback, callbacks ){
|
---|
[4836] | 136 | callback->onBootstrapServiceFound(name, info1, info2, info3);
|
---|
[4733] | 137 | }
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | void BootstrapManager::registerCallback(BootstrapInformationCallback* _callback){
|
---|
| 141 | Callbacks::iterator i = find( callbacks.begin(), callbacks.end(), _callback );
|
---|
| 142 | if( i == callbacks.end() )
|
---|
| 143 | callbacks.push_back(_callback);
|
---|
| 144 | }
|
---|
| 145 |
|
---|
| 146 | void BootstrapManager::unregisterCallback(BootstrapInformationCallback* _callback){
|
---|
| 147 | Callbacks::iterator i = find( callbacks.begin(), callbacks.end(), _callback );
|
---|
| 148 | if( i != callbacks.end() )
|
---|
| 149 | callbacks.erase(i);
|
---|
| 150 | }
|
---|
| 151 |
|
---|
[4836] | 152 | void BootstrapManager::publish(string name, string info1, string info2, string info3){
|
---|
[4733] | 153 | boost::mutex::scoped_lock lock( modulesMutex );
|
---|
| 154 |
|
---|
| 155 | ModuleMap::iterator i = modules.begin();
|
---|
| 156 | ModuleMap::iterator iend = modules.end();
|
---|
| 157 |
|
---|
[4758] | 158 | for( ; i != iend; i++ ){
|
---|
| 159 | logging_info("bootstrap manager publishing service "
|
---|
| 160 | << name << " on module " << i->second->getName());
|
---|
[4836] | 161 | i->second->publishService(name, info1, info2, info3);
|
---|
[4758] | 162 | }
|
---|
[4733] | 163 | }
|
---|
| 164 |
|
---|
| 165 | void BootstrapManager::revoke(string name){
|
---|
[4836] | 166 | boost::mutex::scoped_lock lock( modulesMutex );
|
---|
| 167 |
|
---|
[4733] | 168 | ModuleMap::iterator i = modules.begin();
|
---|
| 169 | ModuleMap::iterator iend = modules.end();
|
---|
| 170 |
|
---|
[4758] | 171 | for( ; i != iend; i++ ){
|
---|
| 172 | logging_info("bootstrap manager revoking service "
|
---|
| 173 | << name << " on module " << i->second->getName());
|
---|
[4733] | 174 | i->second->revokeService(name);
|
---|
[4758] | 175 | }
|
---|
| 176 |
|
---|
[4733] | 177 | }
|
---|
| 178 |
|
---|
| 179 | }} //namespace ariba, utility
|
---|