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 #ifndef __CORE_POOL_H__
00038 #define __CORE_POOL_H__
00039
00040 #include "global.h"
00041
00042 namespace tacpp {
00043
00049 class Addrpool_entry {
00052 pthread_mutex_t mutex_;
00055 void lock();
00058 void unlock();
00061 ipaddr address_;
00064 bool tag_;
00065 public:
00068 void setAddress(ipaddr);
00071 ipaddr getAddress();
00074 void setTag(bool);
00077 bool getTag();
00080 Addrpool_entry(ipaddr);
00083 ~Addrpool_entry();
00084 };
00085
00091 class Addrpool_data {
00094 pthread_mutex_t mutex_;
00097 void lock();
00100 void unlock();
00103 list<Addrpool_entry*> ae_;
00106 int pool_;
00107 public:
00110 int getPool();
00113 void setPool(int);
00116 Addrpool_data(int);
00119 ~Addrpool_data();
00122 void add(ipaddr);
00125 void del(ipaddr);
00128 string get();
00131 void ret(ipaddr);
00134 string buildcfstr();
00137 string group();
00138 };
00139
00145 class CorePool : public Core_data {
00148 list<Addrpool_data*> ap_;
00151 string getAddr(const char*,int);
00154 pthread_mutex_t mutex_;
00157 void lock();
00160 void unlock();
00161 public:
00164 CorePool(const string,const string);
00167 ~CorePool();
00170 void add(int,const char*);
00173 void del(int);
00176 void del(int,const char*);
00179 string get(int);
00182 void ret(ipaddr);
00185 string buildcfstr(int);
00188 string applycf(char * const*mask,const string cmdname,const list<string>paramList,Command * cmd=NULL)throw (CmdErr);
00189 };
00190
00191 };
00192
00193 #endif // __CORE_POOL_H__