An Overlay-based
Virtual Network Substrate
SpoVNet

source: source/ariba/utility/bootstrap/BootstrapManager.cpp @ 4836

Last change on this file since 4836 was 4836, checked in by Christoph Mayer, 14 years ago

einige avahi fixes und ablauf

File size: 5.4 KB
Line 
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
43namespace ariba {
44namespace utility {
45
46use_logging_cpp(BootstrapManager);
47
48BootstrapManager::BootstrapManager(){
49}
50
51BootstrapManager::~BootstrapManager(){
52}
53
54BootstrapManager::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:
68                        module = new MulticastDns(this);
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
91BootstrapManager::RegistrationResult BootstrapManager::unregisterModule(
92                BootstrapManager::BootstrapType type){
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
104        logging_debug("bootstrap module " << module->getName() << " unregistered");
105
106        return RegistrationSucceeded;
107}
108
109BootstrapManager::RegistrationResult BootstrapManager::registerAllModules(){
110        RegistrationResult result = RegistrationSucceeded;
111
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
126BootstrapManager::RegistrationResult BootstrapManager::unregisterAllModules(){
127        unregisterModule(BootstrapTypeMulticastDns);
128        /*  todo  ...  */
129
130        return RegistrationSucceeded;
131}
132
133void BootstrapManager::onBootstrapServiceFound(string name, string info1, string info2, string info3){
134
135        BOOST_FOREACH( BootstrapInformationCallback* callback, callbacks ){
136                callback->onBootstrapServiceFound(name, info1, info2, info3);
137        }
138}
139
140void 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
146void 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
152void BootstrapManager::publish(string name, string info1, string info2, string info3){
153        boost::mutex::scoped_lock lock( modulesMutex );
154
155        ModuleMap::iterator i = modules.begin();
156        ModuleMap::iterator iend = modules.end();
157
158        for( ; i != iend; i++ ){
159                logging_info("bootstrap manager publishing service "
160                                << name << " on module " << i->second->getName());
161                i->second->publishService(name, info1, info2, info3);
162        }
163}
164
165void BootstrapManager::revoke(string name){
166        boost::mutex::scoped_lock lock( modulesMutex );
167
168        ModuleMap::iterator i = modules.begin();
169        ModuleMap::iterator iend = modules.end();
170
171        for( ; i != iend; i++ ){
172                logging_info("bootstrap manager revoking service "
173                                << name << " on module " << i->second->getName());
174                i->second->revokeService(name);
175        }
176
177}
178
179}} //namespace ariba, utility
Note: See TracBrowser for help on using the repository browser.