2010-09-12 04:44:37 +02:00
|
|
|
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2010 by Eric House (xwords@eehouse.org). 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
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DBMGR_H_
|
|
|
|
#define _DBMGR_H_
|
|
|
|
|
2010-09-21 15:27:31 +02:00
|
|
|
#include <string>
|
|
|
|
|
2010-09-12 04:44:37 +02:00
|
|
|
#include "xwrelay.h"
|
2010-09-23 14:33:27 +02:00
|
|
|
#include "xwrelay_priv.h"
|
2010-09-12 04:44:37 +02:00
|
|
|
#include <libpq-fe.h>
|
|
|
|
|
2010-09-21 15:27:31 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2010-09-12 04:44:37 +02:00
|
|
|
class DBMgr {
|
|
|
|
public:
|
2010-09-12 13:49:03 +02:00
|
|
|
static DBMgr* Get();
|
|
|
|
|
2010-09-12 04:44:37 +02:00
|
|
|
~DBMgr();
|
|
|
|
|
2010-09-15 10:14:28 +02:00
|
|
|
void ClearCIDs( void );
|
|
|
|
|
2010-09-12 04:44:37 +02:00
|
|
|
void AddNew( const char* cookie, const char* connName, CookieID cid,
|
2010-09-15 06:20:11 +02:00
|
|
|
int langCode, int nPlayersT, bool isPublic );
|
2010-09-12 04:44:37 +02:00
|
|
|
|
2010-09-15 23:05:51 +02:00
|
|
|
CookieID FindGame( const char* connName, char* cookieBuf, int bufLen,
|
2010-11-11 15:40:50 +01:00
|
|
|
int* langP, int* nPlayersTP, int* nPlayersHP,
|
|
|
|
bool* isDead );
|
2011-06-21 03:13:15 +02:00
|
|
|
|
|
|
|
bool SeenSeed( const char* cookie, unsigned short seed,
|
|
|
|
int langCode, int nPlayersT, bool wantsPublic,
|
|
|
|
char* connNameBuf, int bufLen, int* nPlayersHP,
|
|
|
|
CookieID* cid );
|
|
|
|
|
2010-09-12 13:49:03 +02:00
|
|
|
CookieID FindOpen( const char* cookie, int lang, int nPlayersT,
|
2010-09-15 23:05:51 +02:00
|
|
|
int nPlayersH, bool wantsPublic,
|
2010-09-17 03:59:56 +02:00
|
|
|
char* connNameBuf, int bufLen, int* nPlayersHP );
|
2011-06-21 03:13:15 +02:00
|
|
|
bool AllDevsAckd( const char* const connName );
|
2010-09-12 13:49:03 +02:00
|
|
|
|
2010-10-05 03:39:26 +02:00
|
|
|
HostID AddDevice( const char* const connName, HostID curID,
|
2011-06-21 03:13:15 +02:00
|
|
|
int nToAdd, unsigned short seed, bool unAckd );
|
|
|
|
void NoteAckd( const char* const connName, HostID id );
|
2011-07-06 06:39:38 +02:00
|
|
|
HostID HIDForSeed( const char* const connName, unsigned short seed );
|
2011-06-21 03:13:15 +02:00
|
|
|
bool RmDeviceByHid( const char* const connName, HostID id );
|
|
|
|
void RmDeviceBySeed( const char* const connName, unsigned short seed );
|
2010-11-11 15:40:50 +01:00
|
|
|
bool HaveDevice( const char* const connName, HostID id, int seed );
|
2011-06-23 16:12:50 +02:00
|
|
|
bool AddCID( const char* const connName, CookieID cid );
|
2010-09-16 13:47:17 +02:00
|
|
|
void ClearCID( const char* connName );
|
2010-12-02 06:08:22 +01:00
|
|
|
void RecordSent( const char* const connName, HostID hid, int nBytes );
|
2010-10-23 07:34:43 +02:00
|
|
|
void GetPlayerCounts( const char* const connName, int* nTotal,
|
|
|
|
int* nHere );
|
2010-09-12 13:49:03 +02:00
|
|
|
|
2010-11-11 15:40:50 +01:00
|
|
|
void KillGame( const char* const connName, int hid );
|
|
|
|
|
2010-10-15 07:16:21 +02:00
|
|
|
/* Return list of roomName/playersStillWanted/age for open public games
|
2010-09-21 15:27:31 +02:00
|
|
|
matching this language and total game size. Will probably want to cache
|
|
|
|
lists locally and only update them every few seconds to avoid to many
|
|
|
|
queries.*/
|
|
|
|
void PublicRooms( int lang, int nPlayers, int* nNames, string& names );
|
|
|
|
|
2010-09-24 14:50:02 +02:00
|
|
|
/* Return number of messages pending for connName:hostid pair passed in */
|
2010-11-11 15:40:50 +01:00
|
|
|
int PendingMsgCount( const char* const connName, int hid );
|
2010-09-24 14:50:02 +02:00
|
|
|
|
2010-09-23 15:31:29 +02:00
|
|
|
/* message storage -- different DB */
|
|
|
|
int CountStoredMessages( const char* const connName );
|
2010-10-04 03:18:15 +02:00
|
|
|
int CountStoredMessages( const char* const connName, int hid );
|
2010-09-23 15:31:29 +02:00
|
|
|
void StoreMessage( const char* const connName, int hid,
|
|
|
|
const unsigned char* const buf, int len );
|
|
|
|
bool GetStoredMessage( const char* const connName, int hid,
|
|
|
|
unsigned char* buf, size_t* buflen, int* msgID );
|
2011-01-22 21:52:26 +01:00
|
|
|
bool GetNthStoredMessage( const char* const connName, int hid, int nn,
|
|
|
|
unsigned char* buf, size_t* buflen, int* msgID );
|
2011-04-01 03:15:03 +02:00
|
|
|
void RemoveStoredMessages( const int* msgID, int nMsgIDs );
|
2010-09-23 15:31:29 +02:00
|
|
|
|
2010-09-12 04:44:37 +02:00
|
|
|
private:
|
2010-09-12 13:49:03 +02:00
|
|
|
DBMgr();
|
2010-11-11 15:40:50 +01:00
|
|
|
bool execSql( const char* query ); /* no-results query */
|
2010-10-05 05:04:14 +02:00
|
|
|
void readArray( const char* const connName, int arr[] );
|
2010-09-23 14:33:27 +02:00
|
|
|
|
2010-10-05 05:04:14 +02:00
|
|
|
PGconn* getThreadConn( void );
|
2010-09-12 04:44:37 +02:00
|
|
|
}; /* DBMgr */
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|