// ServerQueueItem.C -*- C++ -*-
// Copyright (c) 1998 Etienne BERNARD
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
#include "StringTokenizer.H"
#include "ServerQueue.H"
#include "ServerQueueItem.H"
ServerQueueItem::ServerQueueItem(int pr, int pen, int t)
: priority(pr), penalty(pen), type(t)
{ }
ServerQueueOtherItem::ServerQueueOtherItem(String l, int pr,
int pen, int t)
: ServerQueueItem(pr, pen, t), line(l)
{ }
String
ServerQueueOtherItem::getLine()
{
return line;
}
ServerQueueChannelModeItem::ServerQueueChannelModeItem(String c, String m, String p)
: ServerQueueItem(CHANNELMODE_PRIORITY,
CHANNELMODE_PENALTY,
CHANNELMODE),
channel(c), mode(m), parameters(p)
{
StringTokenizer st(p);
paramcount = st.countTokens();
}
bool
ServerQueueChannelModeItem::merge(ServerQueueItem *sqi)
{
if (sqi->type != CHANNELMODE)
return false;
ServerQueueChannelModeItem * sqcmi = (ServerQueueChannelModeItem *)sqi;
if (sqcmi->channel != channel || (paramcount + sqcmi->paramcount > 3))
return false;
char sign = '+';
char c;
for (int i = 0; i < mode.length(); i++) {
c = mode[i];
switch (c) {
case '+':
case '-':
sign = c;
}
}
char othersign = '+';
for (int i = 0; i < sqcmi->mode.length(); i++) {
c = sqcmi->mode[i];
switch (c) {
case '+':
case '-':
othersign = c;
break;
default:
if (othersign == sign)
mode = mode + String(c);
else {
mode = mode + String(othersign) + String(c);
sign = othersign;
}
}
}
parameters = parameters + " " + sqcmi->parameters;
paramcount += sqcmi->paramcount;
penalty += sqcmi->penalty;
return true;
}
String
ServerQueueChannelModeItem::getLine()
{
return String("MODE ") + channel + " " + mode + " " + parameters;
}
ServerQueueKickItem::ServerQueueKickItem(String c, String w, String r)
: ServerQueueItem(KICK_PRIORITY,
KICK_PENALTY,
KICK),
channel(c), who(w), reason(r), count(1)
{ }
bool
ServerQueueKickItem::merge(ServerQueueItem *sqi)
{
if (sqi->type != KICK)
return false;
ServerQueueKickItem * sqki = (ServerQueueKickItem *)sqi;
if (sqki->channel != channel)
return false;
if (count + sqki->count > 4)
return false;
who = who + "," + sqki->who;
if (reason != sqki->reason)
reason = "Mixed kick ! Top efficiency";
penalty += sqki->penalty;
count += sqki->count;
return true;
}
String
ServerQueueKickItem::getLine()
{
return String("KICK ") + channel + " " + who + " :" + reason;
}
ServerQueueNoticeItem::ServerQueueNoticeItem(String d, String m)
: ServerQueueItem(NOTICE_PRIORITY,
NOTICE_PENALTY,
NOTICE),
dest(d), message(m), count(1)
{ }
bool
ServerQueueNoticeItem::merge(ServerQueueItem *sqi)
{
if (sqi->type != NOTICE)
return false;
ServerQueueNoticeItem * sqni = (ServerQueueNoticeItem *)sqi;
if (sqni->message != message)
return false;
if (count + sqni->count > 4)
return false;
dest = dest + "," + sqni->dest;
penalty += sqni->penalty;
count += sqni->count;
return true;
}
String
ServerQueueNoticeItem::getLine()
{
return String("NOTICE ") + dest + " :" + message;
}
syntax highlighted by Code2HTML, v. 0.9.1