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
|
/*
* Copyright (C) 2001-2005 Jacek Sieka, arnetheduck on gmail point com
*
* 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
* (at your option) 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.
*/
#if !defined(AFX_USER_H__26AA222C_500B_4AD2_A5AA_A594E1A6D639__INCLUDED_)
#define AFX_USER_H__26AA222C_500B_4AD2_A5AA_A594E1A6D639__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Util.h"
#include "Pointer.h"
#include "CriticalSection.h"
#include "CID.h"
class Client;
class FavoriteUser;
/**
* A user connected to a hubs.
*/
class User : public PointerBase, public Flags
{
public:
enum {
OP_BIT,
ONLINE_BIT,
DCPLUSPLUS_BIT,
PASSIVE_BIT,
QUIT_HUB_BIT,
HIDDEN_BIT,
HUB_BIT,
BOT_BIT
};
enum {
OP = 1<<OP_BIT,
ONLINE = 1<<ONLINE_BIT,
DCPLUSPLUS = 1<<DCPLUSPLUS_BIT,
PASSIVE = 1<<PASSIVE_BIT,
QUIT_HUB = 1<<QUIT_HUB_BIT,
HIDDEN = 1<<HIDDEN_BIT,
HUB = 1<<HUB_BIT,
BOT = 1<<BOT_BIT
};
typedef Pointer<User> Ptr;
typedef vector<Ptr> List;
typedef List::iterator Iter;
typedef HASH_MAP_X(string,Ptr,noCaseStringHash,noCaseStringEq,noCaseStringLess) NickMap;
typedef NickMap::iterator NickIter;
typedef HASH_MAP_X(CID, Ptr, CID::Hash, equal_to<CID>, less<CID>) CIDMap;
typedef CIDMap::iterator CIDIter;
struct HashFunction {
static const size_t bucket_size = 4;
static const size_t min_buckets = 8;
size_t operator()(const Ptr& x) const { return ((size_t)(&(*x)))/sizeof(User); };
bool operator()(const Ptr& a, const Ptr& b) const { return (&(*a)) < (&(*b)); };
};
User(const CID& aCID) : cid(aCID), bytesShared(0), slots(0), udpPort(0), client(NULL), favoriteUser(NULL) { }
User(const string& aNick) throw() : nick(aNick), bytesShared(0), slots(0), udpPort(0), client(NULL), favoriteUser(NULL) { }
virtual ~User() throw();
void setClient(Client* aClient);
void connect();
const string& getClientNick() const;
CID getClientCID() const;
const string& getClientName() const;
string getClientAddressPort() const;
void privateMessage(const string& aMsg);
void clientMessage(const string& aMsg);
bool isClientOp() const;
void send(const string& msg);
void sendUserCmd(const string& aUserCmd);
string getFullNick() const {
string tmp(getNick());
tmp += " (";
tmp += getClientName();
tmp += ")";
return tmp;
}
void setBytesShared(const string& aSharing) { setBytesShared(Util::toInt64(aSharing)); };
bool isOnline() const { return isSet(ONLINE); };
bool isClient(Client* aClient) const { return client == aClient; };
void getParams(StringMap& ucParams);
// favorite user stuff
void setFavoriteUser(FavoriteUser* aUser);
bool isFavoriteUser() const;
bool getFavoriteGrantSlot() const;
void setFavoriteGrantSlot(bool grant);
void setFavoriteLastSeen(u_int32_t anOfflineTime = 0);
u_int32_t getFavoriteLastSeen() const;
const string& getUserDescription() const;
void setUserDescription(const string& aDescription);
static void updated(User::Ptr& aUser);
StringMap& clientEscapeParams(StringMap& sm) const;
GETSET(string, connection, Connection);
GETSET(string, nick, Nick);
GETSET(string, email, Email);
GETSET(string, description, Description);
GETSET(string, tag, Tag);
GETSET(string, lastHubAddress, LastHubAddress);
GETSET(string, lastHubName, LastHubName);
GETSET(string, ip, Ip);
GETSET(CID, cid, CID);
GETSET(int64_t, bytesShared, BytesShared);
GETSET(int, slots, Slots);
GETSET(short, udpPort, UDPPort);
private:
mutable RWLock<> cs;
User(const User&);
User& operator=(const User&);
Client* client;
FavoriteUser* favoriteUser;
};
#endif // !defined(AFX_USER_H__26AA222C_500B_4AD2_A5AA_A594E1A6D639__INCLUDED_)
/**
* @file
* $Id: User.h,v 1.2 2005/08/21 14:03:43 olof Exp $
*/
|