/**
* vim: set ts=4 :
* =============================================================================
* SourceMod Client Preferences Extension
* Copyright (C) 2004-2008 AlliedModders LLC. All rights reserved.
* =============================================================================
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, version 3.0, as published by the
* Free Software Foundation.
*
* 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, see .
*
* As a special exception, AlliedModders LLC gives you permission to link the
* code of this program (as well as its derivative works) to "Half-Life 2," the
* "Source Engine," the "SourcePawn JIT," and any Game MODs that run on software
* by the Valve Corporation. You must obey the GNU General Public License in
* all respects for all other code used. Additionally, AlliedModders LLC grants
* this exception to all derivative works. AlliedModders LLC defines further
* exceptions, found in LICENSE.txt (as of this writing, version JULY-31-2007),
* or .
*
* Version: $Id$
*/
#ifndef _INCLUDE_SOURCEMOD_CLIENTPREFS_COOKIE_H_
#define _INCLUDE_SOURCEMOD_CLIENTPREFS_COOKIE_H_
#include "extension.h"
#include "sh_list.h"
#include "sm_trie_tpl.h"
#define MAX_NAME_LENGTH 30
#define MAX_DESC_LENGTH 255
#define MAX_VALUE_LENGTH 100
struct Cookie;
struct CookieData
{
CookieData(const char *value)
{
strncpy(this->value, value, MAX_VALUE_LENGTH);
this->value[MAX_VALUE_LENGTH-1] = '\0';
}
char value[MAX_VALUE_LENGTH];
bool changed;
Cookie *parent;
};
struct Cookie
{
Cookie(const char *name, const char *description)
{
strncpy(this->name, name, MAX_NAME_LENGTH);
this->name[MAX_NAME_LENGTH-1] = '\0';
strncpy(this->description, description, MAX_DESC_LENGTH);
this->description[MAX_DESC_LENGTH-1] = '\0';
dbid = -1;
for (int i=0; i<=MAXCLIENTS; i++)
{
data[i] = NULL;
}
}
~Cookie()
{
for (int i=0; i<=MAXCLIENTS; i++)
{
if (data[i] != NULL)
{
delete data[i];
}
}
}
char name[MAX_NAME_LENGTH];
char description[MAX_DESC_LENGTH];
int dbid;
CookieData *data[MAXCLIENTS+1];
};
class CookieManager : public IClientListener
{
public:
CookieManager();
~CookieManager();
void OnClientAuthorized(int client, const char *authstring);
void OnClientDisconnecting(int client);
bool GetCookieValue(Cookie *pCookie, int client, char **value);
bool SetCookieValue(Cookie *pCookie, int client, char *value);
void Unload();
void ClientConnectCallback(int client, IPreparedQuery *data);
void InsertCookieCallback(Cookie *pCookie, int dbId);
Cookie *FindCookie(const char *name);
Cookie *CreateCookie(const char *name, const char *description);
bool AreClientCookiesCached(int client);
IForward *cookiesLoadedForward;
private:
SourceHook::List cookieList;
KTrie cookieTrie;
SourceHook::List clientData[MAXCLIENTS];
bool connected[MAXCLIENTS+1];
bool statsLoaded[MAXCLIENTS+1];
};
extern CookieManager g_CookieManager;
#endif // _INCLUDE_SOURCEMOD_CLIENTPREFS_COOKIE_H_