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

Last change on this file since 4733 was 4733, checked in by Christoph Mayer, 15 years ago

-integrated avahi and a bootstrap manager and stuff (still not working, but compiling)

File size: 4.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 string servicetype = "_spovnet._tcp";
66
67 switch(type){
68 case BootstrapTypeMulticastDns:
69 module = new MulticastDns(servicetype, this);
70 break;
71 }
72
73 if( module == NULL){
74 logging_error("bootstrap module for type " << type << " not found");
75 return RegistrationNotSupported;
76 }
77
78 if( !module->isFunctional() ){
79 logging_error("bootstrap module " << module->getName() << " is not functional");
80 delete module;
81 return RegistrationFailed;
82 }
83
84 logging_debug("bootstrap module " << module->getName() << " registered");
85
86 module->start();
87 modules.insert( std::make_pair(type, module) );
88
89 return RegistrationSucceeded;
90}
91
92BootstrapManager::RegistrationResult BootstrapManager::unregisterModule(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 return RegistrationSucceeded;
105}
106
107void BootstrapManager::onBootstrapServiceFound(string name, string info){
108
109 BOOST_FOREACH( BootstrapInformationCallback* callback, callbacks ){
110 callback->onBootstrapServiceFound(name, info);
111 }
112}
113
114void BootstrapManager::registerCallback(BootstrapInformationCallback* _callback){
115 Callbacks::iterator i = find( callbacks.begin(), callbacks.end(), _callback );
116 if( i == callbacks.end() )
117 callbacks.push_back(_callback);
118}
119
120void BootstrapManager::unregisterCallback(BootstrapInformationCallback* _callback){
121 Callbacks::iterator i = find( callbacks.begin(), callbacks.end(), _callback );
122 if( i != callbacks.end() )
123 callbacks.erase(i);
124}
125
126void BootstrapManager::publish(string name, string info){
127 boost::mutex::scoped_lock lock( modulesMutex );
128
129 ModuleMap::iterator i = modules.begin();
130 ModuleMap::iterator iend = modules.end();
131
132 for( ; i != iend; i++ )
133 i->second->publishService(name, info);
134}
135
136void BootstrapManager::revoke(string name){
137 ModuleMap::iterator i = modules.begin();
138 ModuleMap::iterator iend = modules.end();
139
140 for( ; i != iend; i++ )
141 i->second->revokeService(name);
142}
143
144}} //namespace ariba, utility
Note: See TracBrowser for help on using the repository browser.