00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00066 #ifndef __EAP_METHOD_REGISTRAR_HXX__
00067 #define __EAP_METHOD_REGISTRAR_HXX__
00068
00069 #include <string>
00070 #include <list>
00071 #include <ace/Singleton.h>
00072 #include <ace/Reactor.h>
00073 #include <boost/function/function1.hpp>
00074 #include "eap.hxx"
00075 #include "eap_fsm.hxx"
00076
00079 typedef boost::function1<EapMethodStateMachine*, EapSwitchStateMachine&>
00080 EapMethodStateMachineFunctor;
00081
00085 template <class T> class EapMethodStateMachineCreator
00086 {
00087 public:
00088 EapMethodStateMachine* operator()(EapSwitchStateMachine &s)
00089 {
00090 return new T(s);
00091 };
00092 };
00093
00095 class EAP_EXPORTS EapMethodTableEntry
00096 {
00097 friend class EapMethodTable_S;
00098 friend class EapSwitchStateMachine;
00099 public:
00100 EapMethodTableEntry(std::string name, EapType type, EapRole role,
00101 EapMethodStateMachineFunctor creator)
00102 {
00103 this->name = name;
00104 this->type = type;
00105 this->role = role;
00106 this->creator = creator;
00107 }
00108 private:
00109 std::string name;
00110 EapType type;
00111 EapRole role;
00112 EapMethodStateMachineFunctor creator;
00113 };
00114
00116 class EAP_EXPORTS EapMethodTable_S : public std::list<EapMethodTableEntry*>
00117 {
00118 friend class ACE_Singleton<EapMethodTable_S, ACE_Recursive_Thread_Mutex>;
00119 public:
00120
00122 EapMethodTableEntry *Find(EapType type, EapRole role)
00123 {
00124 iterator i;
00125 for (i=begin(); i!=end(); i++)
00126 {
00127 EapMethodTableEntry* e = (*i);
00128 if (e->type == type && e->role == role) { return e; }
00129 }
00130 return NULL;
00131 }
00132
00134 inline void add(EapMethodTableEntry *e) { push_back(e); }
00135
00136 private:
00137 EapMethodTable_S() { registerDefaultMethods(); };
00138 ~EapMethodTable_S() {};
00139 void registerDefaultMethods();
00140 };
00141
00142 typedef ACE_Singleton<EapMethodTable_S, ACE_Recursive_Thread_Mutex>
00143 EapMethodTable;
00144
00150 class EAP_EXPORTS EapMethodRegistrar
00151 {
00152 public:
00153 void registerMethod(std::string name, EapType type, EapRole role,
00154 EapMethodStateMachineFunctor creator);
00155 };
00156 #endif // __EAP_METHOD_REGISTRAR_HXX__