#include <channels.h>
Inheritance diagram for chanrec:
Public Member Functions | |
void | SetCustomMode (char mode, bool mode_on) |
Sets or unsets a custom mode in the channels info. | |
void | SetCustomModeParam (char mode, char *parameter, bool mode_on) |
Sets or unsets the parameters for a custom mode in a channels info. | |
bool | IsCustomModeSet (char mode) |
Returns true if a custom mode is set on a channel. | |
std::string | GetModeParameter (char mode) |
Returns the parameter for a custom mode on a channel. | |
long | GetUserCounter () |
Obtain the channel "user counter" This returns the channel reference counter, which is initialized to 0 when the channel is created and incremented/decremented upon joins, parts quits and kicks. | |
void | AddUser (char *castuser) |
Add a user pointer to the internal reference list The data inserted into the reference list is a table as it is an arbitary pointer compared to other users by its memory address, as this is a very fast 32 or 64 bit integer comparison. | |
void | DelUser (char *castuser) |
Delete a user pointer to the internal reference list The data removed from the reference list is a table as it is an arbitary pointer compared to other users by its memory address, as this is a very fast 32 or 64 bit integer comparison. | |
std::vector< char * > * | GetUsers () |
Obrain the internal reference list The internal reference list contains a list of userrec* cast to char*. | |
chanrec () | |
Creates a channel record and initialises it with default values. | |
virtual | ~chanrec () |
Public Attributes | |
char | name [CHANMAX] |
The channels name. | |
char | custom_modes [MAXMODES] |
Custom modes for the channel. | |
std::vector< char * > | internal_userlist |
User list (casted to char*'s to stop forward declaration stuff) (chicken and egg scenario!). | |
char | topic [MAXBUF] |
Channel topic. | |
time_t | created |
Creation time. | |
time_t | topicset |
Time topic was set. | |
char | setby [NICKMAX] |
The last user to set the topic. | |
short int | limit |
Contains the channel user limit. | |
char | key [32] |
Contains the channel key. | |
char | binarymodes |
Contains a bitmask of the CM_* builtin (RFC) binary mode symbols. | |
BanList | bans |
The list of all bans set on the channel. |
This class represents a channel, and contains its name, modes, time created, topic, topic set time, etc, and an instance of the BanList type.
Definition at line 101 of file channels.h.
|
Creates a channel record and initialises it with default values.
Definition at line 108 of file channels.cpp. References binarymodes, created, custom_modes, internal_userlist, key, limit, name, setby, topic, and topicset.
00109 { 00110 strcpy(name,""); 00111 strcpy(custom_modes,""); 00112 strcpy(topic,""); 00113 strcpy(setby,""); 00114 strcpy(key,""); 00115 created = topicset = limit = 0; 00116 binarymodes = 0; 00117 internal_userlist.clear(); 00118 } |
|
Definition at line 205 of file channels.h.
00205 { /* stub */ }
|
|
Add a user pointer to the internal reference list The data inserted into the reference list is a table as it is an arbitary pointer compared to other users by its memory address, as this is a very fast 32 or 64 bit integer comparison.
Definition at line 202 of file channels.cpp. References DEBUG, and internal_userlist.
00203 { 00204 internal_userlist.push_back(castuser); 00205 log(DEBUG,"Added casted user to channel's internal list"); 00206 } |
|
Delete a user pointer to the internal reference list The data removed from the reference list is a table as it is an arbitary pointer compared to other users by its memory address, as this is a very fast 32 or 64 bit integer comparison.
Definition at line 208 of file channels.cpp. References DEBUG, internal_userlist, and name.
00209 { 00210 for (std::vector<char*>::iterator a = internal_userlist.begin(); a < internal_userlist.end(); a++) 00211 { 00212 if (*a == castuser) 00213 { 00214 log(DEBUG,"Removed casted user from channel's internal list"); 00215 internal_userlist.erase(a); 00216 return; 00217 } 00218 } 00219 log(DEBUG,"BUG BUG BUG! Attempt to remove an uncasted user from the internal list of %s!",name); 00220 } |
|
Returns the parameter for a custom mode on a channel. For example if "+L #foo" is set, and you pass this method 'L', it will return '#foo'. If the mode is not set on the channel, or the mode has no parameters associated with it, it will return an empty string. Definition at line 182 of file channels.cpp. References custom_mode_params.
00183 { 00184 if (custom_mode_params.size()) 00185 { 00186 for (vector<ModeParameter>::iterator i = custom_mode_params.begin(); i < custom_mode_params.end(); i++) 00187 { 00188 if ((i->mode == mode) && (!strcasecmp(this->name,i->channel))) 00189 { 00190 return i->parameter; 00191 } 00192 } 00193 } 00194 return ""; 00195 } |
|
Obtain the channel "user counter" This returns the channel reference counter, which is initialized to 0 when the channel is created and incremented/decremented upon joins, parts quits and kicks.
Definition at line 197 of file channels.cpp. References internal_userlist.
00198 { 00199 return (this->internal_userlist.size()); 00200 } |
|
Obrain the internal reference list The internal reference list contains a list of userrec* cast to char*. These are used for rapid comparison to determine channel membership for PRIVMSG, NOTICE, QUIT, PART etc. The resulting pointer to the vector should be considered readonly and only modified via AddUser and DelUser. Definition at line 222 of file channels.cpp. References internal_userlist. Referenced by Server::GetUsers().
00223 { 00224 return &internal_userlist; 00225 } |
|
Returns true if a custom mode is set on a channel.
Definition at line 176 of file channels.cpp. References DEBUG.
00177 { 00178 log(DEBUG,"Checking ISCustomModeSet: %c %s",mode,this->custom_modes); 00179 return (strchr(this->custom_modes,mode) != 0); 00180 } |
|
Sets or unsets a custom mode in the channels info.
Definition at line 120 of file channels.cpp. References custom_modes, DEBUG, and SetCustomModeParam().
00121 { 00122 if (mode_on) { 00123 static char m[3]; 00124 m[0] = mode; 00125 m[1] = '\0'; 00126 if (!strchr(this->custom_modes,mode)) 00127 { 00128 strlcat(custom_modes,m,MAXMODES); 00129 } 00130 log(DEBUG,"Custom mode %c set",mode); 00131 } 00132 else { 00133 00134 std::string a = this->custom_modes; 00135 int pos = a.find(mode); 00136 a.erase(pos,1); 00137 strncpy(this->custom_modes,a.c_str(),MAXMODES); 00138 00139 log(DEBUG,"Custom mode %c removed: modelist='%s'",mode,this->custom_modes); 00140 this->SetCustomModeParam(mode,"",false); 00141 } 00142 } |
|
Sets or unsets the parameters for a custom mode in a channels info.
Definition at line 145 of file channels.cpp. References ModeParameter::channel, custom_mode_params, DEBUG, ModeParameter::mode, and ModeParameter::parameter. Referenced by SetCustomMode().
00146 { 00147 00148 log(DEBUG,"SetCustomModeParam called"); 00149 ModeParameter M; 00150 M.mode = mode; 00151 strlcpy(M.channel,this->name,CHANMAX); 00152 strlcpy(M.parameter,parameter,MAXBUF); 00153 if (mode_on) 00154 { 00155 log(DEBUG,"Custom mode parameter %c %s added",mode,parameter); 00156 custom_mode_params.push_back(M); 00157 } 00158 else 00159 { 00160 if (custom_mode_params.size()) 00161 { 00162 for (vector<ModeParameter>::iterator i = custom_mode_params.begin(); i < custom_mode_params.end(); i++) 00163 { 00164 if ((i->mode == mode) && (!strcasecmp(this->name,i->channel))) 00165 { 00166 log(DEBUG,"Custom mode parameter %c %s removed",mode,parameter); 00167 custom_mode_params.erase(i); 00168 return; 00169 } 00170 } 00171 } 00172 log(DEBUG,"*** BUG *** Attempt to remove non-existent mode parameter!"); 00173 } 00174 } |
|
The list of all bans set on the channel.
Definition at line 149 of file channels.h. |
|
Contains a bitmask of the CM_* builtin (RFC) binary mode symbols.
Definition at line 145 of file channels.h. Referenced by chanrec(). |
|
Creation time.
Definition at line 123 of file channels.h. Referenced by chanrec(). |
|
Custom modes for the channel. Plugins may use this field in any way they see fit. Definition at line 110 of file channels.h. Referenced by chanrec(), and SetCustomMode(). |
|
User list (casted to char*'s to stop forward declaration stuff) (chicken and egg scenario!).
Definition at line 115 of file channels.h. Referenced by AddUser(), chanrec(), DelUser(), GetUserCounter(), and GetUsers(). |
|
Contains the channel key. If this value is an empty string, there is no channel key in place. Definition at line 141 of file channels.h. Referenced by chanrec(). |
|
Contains the channel user limit. If this value is zero, there is no limit in place. Definition at line 136 of file channels.h. Referenced by chanrec(). |
|
The channels name.
Definition at line 106 of file channels.h. Referenced by chanrec(), DelUser(), and Server::PseudoToUser(). |
|
The last user to set the topic. If this member is an empty string, no topic was ever set. Definition at line 131 of file channels.h. Referenced by chanrec(), and Server::PseudoToUser(). |
|
Channel topic. If this is an empty string, no channel topic is set. Definition at line 120 of file channels.h. Referenced by chanrec(), and Server::PseudoToUser(). |
|
Time topic was set. If no topic was ever set, this will be equal to chanrec::created Definition at line 127 of file channels.h. Referenced by chanrec(), and Server::PseudoToUser(). |