summaryrefslogtreecommitdiff
path: root/docs/man/man3/chanrec.3
blob: 83c154d238bc71eaae47cf131795d9bbbf6d2955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
.TH "chanrec" 3 "19 Dec 2005" "Version 1.0Betareleases" "InspIRCd" \" -*- nroff -*-
.ad l
.nh
.SH NAME
chanrec \- Holds all relevent information for a channel.  

.PP
.SH SYNOPSIS
.br
.PP
\fC#include <channels.h>\fP
.PP
Inherits \fBExtensible\fP.
.PP
.SS "Public Member Functions"

.in +1c
.ti -1c
.RI "void \fBSetCustomMode\fP (char mode, bool mode_on)"
.br
.RI "\fISets or unsets a custom mode in the channels info. \fP"
.ti -1c
.RI "void \fBSetCustomModeParam\fP (char mode, char *parameter, bool mode_on)"
.br
.RI "\fISets or unsets the parameters for a custom mode in a channels info. \fP"
.ti -1c
.RI "bool \fBIsCustomModeSet\fP (char mode)"
.br
.RI "\fIReturns true if a custom mode is set on a channel. \fP"
.ti -1c
.RI "\fBstd::string\fP \fBGetModeParameter\fP (char mode)"
.br
.RI "\fIReturns the parameter for a custom mode on a channel. \fP"
.ti -1c
.RI "long \fBGetUserCounter\fP ()"
.br
.RI "\fIObtain 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. \fP"
.ti -1c
.RI "void \fBAddUser\fP (char *castuser)"
.br
.RI "\fIAdd a user pointer to the internal reference list. \fP"
.ti -1c
.RI "void \fBDelUser\fP (char *castuser)"
.br
.RI "\fIDelete a user pointer to the internal reference list. \fP"
.ti -1c
.RI "std::vector< char * > * \fBGetUsers\fP ()"
.br
.RI "\fIObrain the internal reference list The internal reference list contains a list of userrec* cast to char*. \fP"
.ti -1c
.RI "\fBchanrec\fP ()"
.br
.RI "\fICreates a channel record and initialises it with default values. \fP"
.ti -1c
.RI "virtual \fB~chanrec\fP ()"
.br
.in -1c
.SS "Public Attributes"

.in +1c
.ti -1c
.RI "char \fBname\fP [CHANMAX]"
.br
.RI "\fIThe channels name. \fP"
.ti -1c
.RI "char \fBcustom_modes\fP [MAXMODES]"
.br
.RI "\fICustom modes for the channel. \fP"
.ti -1c
.RI "std::vector< char * > \fBinternal_userlist\fP"
.br
.RI "\fIUser list (casted to char*'s to stop forward declaration stuff) (chicken and egg scenario!). \fP"
.ti -1c
.RI "char \fBtopic\fP [MAXBUF]"
.br
.RI "\fIChannel topic. \fP"
.ti -1c
.RI "time_t \fBcreated\fP"
.br
.RI "\fICreation time. \fP"
.ti -1c
.RI "time_t \fBtopicset\fP"
.br
.RI "\fITime topic was set. \fP"
.ti -1c
.RI "char \fBsetby\fP [NICKMAX]"
.br
.RI "\fIThe last user to set the topic. \fP"
.ti -1c
.RI "short int \fBlimit\fP"
.br
.RI "\fIContains the channel user limit. \fP"
.ti -1c
.RI "char \fBkey\fP [32]"
.br
.RI "\fIContains the channel key. \fP"
.ti -1c
.RI "char \fBbinarymodes\fP"
.br
.RI "\fIContains a bitmask of the CM_* builtin (RFC) binary mode symbols. \fP"
.ti -1c
.RI "\fBBanList\fP \fBbans\fP"
.br
.RI "\fIThe list of all bans set on the channel. \fP"
.in -1c
.SH "Detailed Description"
.PP 
Holds all relevent information for a 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.
.PP
Definition at line 103 of file channels.h.
.SH "Constructor & Destructor Documentation"
.PP 
.SS "chanrec::chanrec ()"
.PP
Creates a channel record and initialises it with default values. 
.PP
Definition at line 73 of file channels.cpp.
.PP
References binarymodes, created, custom_modes, internal_userlist, key, limit, name, setby, topic, and topicset.
.PP
.nf
74 {
75         strcpy(name,'');
76         strcpy(custom_modes,'');
77         strcpy(topic,'');
78         strcpy(setby,'');
79         strcpy(key,'');
80         created = topicset = limit = 0;
81         binarymodes = 0;
82         internal_userlist.clear();
83 }
.fi
.PP
.SS "virtual chanrec::~chanrec ()\fC [inline, virtual]\fP"
.PP
Definition at line 226 of file channels.h.
.PP
.nf
226 { /* stub */ }
.fi
.PP
.SH "Member Function Documentation"
.PP 
.SS "void chanrec::AddUser (char * castuser)"
.PP
Add a user pointer to the internal reference list. 
.PP
\fBParameters:\fP
.RS 4
\fIcastuser\fP This should be a pointer to a userrec, casted to char*
.RE
.PP
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.
.PP
Definition at line 166 of file channels.cpp.
.PP
References DEBUG, internal_userlist, and log().
.PP
Referenced by ForceChan().
.PP
.nf
167 {
168         internal_userlist.push_back(castuser);
169         log(DEBUG,'Added casted user to channel's internal list');
170 }
.fi
.PP
.SS "void chanrec::DelUser (char * castuser)"
.PP
Delete a user pointer to the internal reference list. 
.PP
\fBParameters:\fP
.RS 4
\fIcastuser\fP This should be a pointer to a userrec, casted to char*
.RE
.PP
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.
.PP
Definition at line 172 of file channels.cpp.
.PP
References DEBUG, internal_userlist, log(), and name.
.PP
Referenced by del_channel(), and kick_channel().
.PP
.nf
173 {
174         for (std::vector<char*>::iterator a = internal_userlist.begin(); a < internal_userlist.end(); a++)
175         {
176                 if (*a == castuser)
177                 {
178                         log(DEBUG,'Removed casted user from channel's internal list');
179                         internal_userlist.erase(a);
180                         return;
181                 }
182         }
183         log(DEBUG,'BUG BUG BUG! Attempt to remove an uncasted user from the internal list of %s!',name);
184 }
.fi
.PP
.SS "\fBstd::string\fP chanrec::GetModeParameter (char mode)"
.PP
Returns the parameter for a custom mode on a channel. 
.PP
\fBParameters:\fP
.RS 4
\fImode\fP The mode character you wish to query
.RE
.PP
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.
.PP
\fBReturns:\fP
.RS 4
The parameter for this mode is returned, or an empty string
.RE
.PP

.PP
Definition at line 146 of file channels.cpp.
.PP
References custom_mode_params.
.PP
.nf
147 {
148         if (custom_mode_params.size())
149         {
150                 for (vector<ModeParameter>::iterator i = custom_mode_params.begin(); i < custom_mode_params.end(); i++)
151                 {
152                         if ((i->mode == mode) && (!strcasecmp(this->name,i->channel)))
153                         {
154                                 return i->parameter;
155                         }
156                 }
157         }
158         return '';
159 }
.fi
.PP
.SS "long chanrec::GetUserCounter ()"
.PP
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. 
.PP
\fBReturns:\fP
.RS 4
The number of users on this channel
.RE
.PP

.PP
Definition at line 161 of file channels.cpp.
.PP
.nf
162 {
163         return (this->internal_userlist.size());
164 }
.fi
.PP
.SS "std::vector< char * > * chanrec::GetUsers ()"
.PP
Obrain the internal reference list The internal reference list contains a list of userrec* cast to char*. 
.PP
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.
.PP
\fBReturns:\fP
.RS 4
This function returns a vector of userrec pointers, each of which has been casted to char* to prevent circular references
.RE
.PP

.PP
Definition at line 186 of file channels.cpp.
.PP
References internal_userlist.
.PP
Referenced by Server::GetUsers().
.PP
.nf
187 {
188         return &internal_userlist;
189 }
.fi
.PP
.SS "bool chanrec::IsCustomModeSet (char mode)"
.PP
Returns true if a custom mode is set on a channel. 
.PP
\fBParameters:\fP
.RS 4
\fImode\fP The mode character you wish to query 
.RE
.PP
\fBReturns:\fP
.RS 4
True if the custom mode is set, false if otherwise
.RE
.PP

.PP
Definition at line 141 of file channels.cpp.
.PP
.nf
142 {
143         return (strchr(this->custom_modes,mode));
144 }
.fi
.PP
.SS "void chanrec::SetCustomMode (char mode, bool mode_on)"
.PP
Sets or unsets a custom mode in the channels info. 
.PP
\fBParameters:\fP
.RS 4
\fImode\fP The mode character to set or unset 
.br
\fImode_on\fP True if you want to set the mode or false if you want to remove it
.RE
.PP

.PP
Definition at line 85 of file channels.cpp.
.PP
References custom_modes, DEBUG, log(), and SetCustomModeParam().
.PP
.nf
86 {
87         if (mode_on) {
88                 static char m[3];
89                 m[0] = mode;
90                 m[1] = '\0';
91                 if (!strchr(this->custom_modes,mode))
92                 {
93                         strlcat(custom_modes,m,MAXMODES);
94                 }
95                 log(DEBUG,'Custom mode %c set',mode);
96         }
97         else {
98 
99                 std::string a = this->custom_modes;
100                 int pos = a.find(mode);
101                 a.erase(pos,1);
102                 strncpy(this->custom_modes,a.c_str(),MAXMODES);
103 
104                 log(DEBUG,'Custom mode %c removed: modelist='%s'',mode,this->custom_modes);
105                 this->SetCustomModeParam(mode,'',false);
106         }
107 }
.fi
.PP
.SS "void chanrec::SetCustomModeParam (char mode, char * parameter, bool mode_on)"
.PP
Sets or unsets the parameters for a custom mode in a channels info. 
.PP
\fBParameters:\fP
.RS 4
\fImode\fP The mode character to set or unset 
.br
\fIparameter\fP The parameter string to associate with this mode character 
.br
\fImode_on\fP True if you want to set the mode or false if you want to remove it
.RE
.PP

.PP
Definition at line 110 of file channels.cpp.
.PP
References ModeParameter::channel, custom_mode_params, DEBUG, log(), ModeParameter::mode, and ModeParameter::parameter.
.PP
Referenced by SetCustomMode().
.PP
.nf
111 {
112 
113         log(DEBUG,'SetCustomModeParam called');
114         ModeParameter M;
115         M.mode = mode;
116         strlcpy(M.channel,this->name,CHANMAX);
117         strlcpy(M.parameter,parameter,MAXBUF);
118         if (mode_on)
119         {
120                 log(DEBUG,'Custom mode parameter %c %s added',mode,parameter);
121                 custom_mode_params.push_back(M);
122         }
123         else
124         {
125                 if (custom_mode_params.size())
126                 {
127                         for (vector<ModeParameter>::iterator i = custom_mode_params.begin(); i < custom_mode_params.end(); i++)
128                         {
129                                 if ((i->mode == mode) && (!strcasecmp(this->name,i->channel)))
130                                 {
131                                         log(DEBUG,'Custom mode parameter %c %s removed',mode,parameter);
132                                         custom_mode_params.erase(i);
133                                         return;
134                                 }
135                         }
136                 }
137                 log(DEBUG,'*** BUG *** Attempt to remove non-existent mode parameter!');
138         }
139 }
.fi
.PP
.SH "Member Data Documentation"
.PP 
.SS "\fBBanList\fP \fBchanrec::bans\fP"
.PP
The list of all bans set on the channel. 
.PP
Definition at line 151 of file channels.h.
.PP
Referenced by add_channel().
.SS "char \fBchanrec::binarymodes\fP"
.PP
Contains a bitmask of the CM_* builtin (RFC) binary mode symbols. 
.PP
Definition at line 147 of file channels.h.
.PP
Referenced by add_channel(), and chanrec().
.SS "time_t \fBchanrec::created\fP"
.PP
Creation time. 
.PP
Definition at line 125 of file channels.h.
.PP
Referenced by chanrec().
.SS "char \fBchanrec::custom_modes\fP[MAXMODES]"
.PP
Custom modes for the channel. 
.PP
Plugins may use this field in any way they see fit.
.PP
Definition at line 112 of file channels.h.
.PP
Referenced by chanrec(), and SetCustomMode().
.SS "std::vector<char*> \fBchanrec::internal_userlist\fP"
.PP
User list (casted to char*'s to stop forward declaration stuff) (chicken and egg scenario!). 
.PP
Definition at line 117 of file channels.h.
.PP
Referenced by AddUser(), chanrec(), DelUser(), and GetUsers().
.SS "char \fBchanrec::key\fP[32]"
.PP
Contains the channel key. 
.PP
If this value is an empty string, there is no channel key in place.
.PP
Definition at line 143 of file channels.h.
.PP
Referenced by add_channel(), and chanrec().
.SS "short int \fBchanrec::limit\fP"
.PP
Contains the channel user limit. 
.PP
If this value is zero, there is no limit in place.
.PP
Definition at line 138 of file channels.h.
.PP
Referenced by add_channel(), and chanrec().
.SS "char \fBchanrec::name\fP[CHANMAX]"
.PP
The channels name. 
.PP
Definition at line 108 of file channels.h.
.PP
Referenced by add_channel(), chanrec(), del_channel(), DelUser(), ForceChan(), kick_channel(), and Server::PseudoToUser().
.SS "char \fBchanrec::setby\fP[NICKMAX]"
.PP
The last user to set the topic. 
.PP
If this member is an empty string, no topic was ever set.
.PP
Definition at line 133 of file channels.h.
.PP
Referenced by chanrec(), ForceChan(), and Server::PseudoToUser().
.SS "char \fBchanrec::topic\fP[MAXBUF]"
.PP
Channel topic. 
.PP
If this is an empty string, no channel topic is set.
.PP
Definition at line 122 of file channels.h.
.PP
Referenced by chanrec(), ForceChan(), and Server::PseudoToUser().
.SS "time_t \fBchanrec::topicset\fP"
.PP
Time topic was set. 
.PP
If no topic was ever set, this will be equal to \fBchanrec::created\fP
.PP
Definition at line 129 of file channels.h.
.PP
Referenced by chanrec(), ForceChan(), and Server::PseudoToUser().

.SH "Author"
.PP 
Generated automatically by Doxygen for InspIRCd from the source code.