2010-09-12 04:44:37 +02:00
|
|
|
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
|
|
|
|
|
|
|
/*
|
2012-01-05 03:14:12 +01:00
|
|
|
* Copyright 2010 - 2012 by Eric House (xwords@eehouse.org). All rights
|
|
|
|
* reserved.
|
2010-09-12 04:44:37 +02:00
|
|
|
*
|
|
|
|
* 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>
|
2013-08-15 16:24:30 +02:00
|
|
|
#include <set>
|
2010-09-21 15:27:31 +02:00
|
|
|
|
2013-09-24 17:36:21 +02:00
|
|
|
#include <libpq-fe.h>
|
|
|
|
|
2013-09-15 06:39:18 +02:00
|
|
|
#include "strwpf.h"
|
2010-09-12 04:44:37 +02:00
|
|
|
#include "xwrelay.h"
|
2010-09-23 14:33:27 +02:00
|
|
|
#include "xwrelay_priv.h"
|
2012-11-03 18:58:01 +01:00
|
|
|
#include "devid.h"
|
2013-09-15 06:06:14 +02:00
|
|
|
#include "strwpf.h"
|
2014-04-26 03:45:51 +02:00
|
|
|
#include "querybld.h"
|
2010-09-12 04:44:37 +02:00
|
|
|
|
2010-09-21 15:27:31 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2010-09-12 04:44:37 +02:00
|
|
|
class DBMgr {
|
|
|
|
public:
|
2012-11-03 18:58:01 +01:00
|
|
|
/* DevIDs on various platforms are stored in devices table. This is the
|
|
|
|
key, and used in msgs and games tables as a shorter way to refer to
|
|
|
|
them. */
|
|
|
|
static const DevIDRelay DEVID_NONE = 0;
|
|
|
|
|
2013-07-25 15:37:53 +02:00
|
|
|
class MsgInfo {
|
|
|
|
public:
|
2013-08-29 15:37:22 +02:00
|
|
|
MsgInfo( int id, AddrInfo::ClientToken tok, bool hc ) {
|
|
|
|
m_msgID = id; m_token = tok; m_hasConnname = hc;
|
2013-07-25 15:37:53 +02:00
|
|
|
}
|
2013-08-29 15:37:22 +02:00
|
|
|
bool hasConnname() const { return m_hasConnname; }
|
|
|
|
AddrInfo::ClientToken token() const { return m_token; }
|
|
|
|
int msgID() const { return m_msgID; }
|
|
|
|
|
2013-08-29 05:33:42 +02:00
|
|
|
vector<uint8_t> msg;
|
2013-08-29 15:37:22 +02:00
|
|
|
private:
|
|
|
|
bool m_hasConnname;
|
|
|
|
AddrInfo::ClientToken m_token;
|
|
|
|
int m_msgID;
|
2013-07-25 15:37:53 +02:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2013-02-04 15:08:39 +01:00
|
|
|
bool FindPlayer( DevIDRelay relayID, AddrInfo::ClientToken,
|
|
|
|
string& connName, HostID* hid, unsigned short* seed );
|
2013-09-15 06:06:14 +02:00
|
|
|
bool FindRelayIDFor( const char* connName, HostID hid, unsigned short seed,
|
|
|
|
const DevID* host, DevIDRelay* devID );
|
2013-02-04 15:08:39 +01: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
|
|
|
|
2013-06-26 09:38:34 +02:00
|
|
|
bool FindGameFor( const char* connName, char* cookieBuf, int bufLen,
|
|
|
|
unsigned short seed, HostID hid,
|
|
|
|
int nPlayersH, int nPlayersS,
|
|
|
|
int* langP, bool* isDead, CookieID* cidp );
|
|
|
|
|
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
|
|
|
|
2013-02-04 15:08:39 +01:00
|
|
|
DevIDRelay RegisterDevice( const DevID* host );
|
2013-08-20 17:09:45 +02:00
|
|
|
DevIDRelay RegisterDevice( const DevID* host, int clientVersion,
|
2013-09-08 01:17:07 +02:00
|
|
|
const char* const desc, const char* const model,
|
|
|
|
const char* const osVers );
|
2013-09-15 06:06:14 +02:00
|
|
|
void ReregisterDevice( DevIDRelay relayID, const DevID* host,
|
|
|
|
const char* const desc, int clientVersion,
|
|
|
|
const char* const model, const char* const osVers );
|
|
|
|
bool UpdateDevice( DevIDRelay relayID, const char* const desc,
|
|
|
|
int clientVersion, const char* const model,
|
2013-09-08 01:17:07 +02:00
|
|
|
const char* const osVers, bool check );
|
2012-11-03 18:58:01 +01:00
|
|
|
|
2013-09-15 06:06:14 +02:00
|
|
|
HostID AddToGame( const char* const connName, HostID curID, int clientVersion,
|
2013-01-13 01:09:24 +01:00
|
|
|
int nToAdd, unsigned short seed, const AddrInfo* addr,
|
2012-11-03 18:58:01 +01:00
|
|
|
DevIDRelay devID, bool unAckd );
|
2011-06-21 03:13:15 +02:00
|
|
|
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 );
|
2011-08-18 03:07:21 +02:00
|
|
|
void RecordSent( const int* msgID, int nMsgIDs );
|
2012-01-05 03:14:12 +01:00
|
|
|
void RecordAddress( const char* const connName, HostID hid,
|
2013-01-13 01:09:24 +01:00
|
|
|
const AddrInfo* addr );
|
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 );
|
|
|
|
|
2013-02-04 15:08:39 +01:00
|
|
|
/* Get stored address info, if available and valid */
|
|
|
|
bool TokenFor( const char* const connName, int hid, DevIDRelay* devid,
|
|
|
|
AddrInfo::ClientToken* token );
|
|
|
|
|
2010-09-23 15:31:29 +02:00
|
|
|
/* message storage -- different DB */
|
|
|
|
int CountStoredMessages( const char* const connName );
|
2013-02-04 15:08:39 +01:00
|
|
|
int CountStoredMessages( DevIDRelay relayID );
|
2013-08-17 23:55:19 +02:00
|
|
|
void StoreMessage( DevIDRelay relayID, const uint8_t* const buf, int len );
|
2010-09-23 15:31:29 +02:00
|
|
|
void StoreMessage( const char* const connName, int hid,
|
2013-08-30 06:05:21 +02:00
|
|
|
const uint8_t* const buf, int len );
|
2013-07-25 15:37:53 +02:00
|
|
|
void GetStoredMessages( DevIDRelay relayID, vector<MsgInfo>& msgs );
|
|
|
|
void GetStoredMessages( const char* const connName, HostID hid,
|
|
|
|
vector<DBMgr::MsgInfo>& msgs );
|
2013-02-04 15:08:39 +01:00
|
|
|
|
2011-04-01 03:15:03 +02:00
|
|
|
void RemoveStoredMessages( const int* msgID, int nMsgIDs );
|
2013-08-01 16:49:12 +02:00
|
|
|
void RemoveStoredMessage( const int msgID );
|
2013-02-04 15:08:39 +01:00
|
|
|
void RemoveStoredMessages( vector<int>& ids );
|
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();
|
2012-11-15 15:15:44 +01:00
|
|
|
bool execSql( const string& query );
|
2011-08-18 03:07:21 +02:00
|
|
|
bool execSql( const char* const query ); /* no-results query */
|
2014-04-26 03:45:51 +02:00
|
|
|
bool execParams( QueryBuilder& qb );
|
2013-06-17 15:48:22 +02:00
|
|
|
void readArray( const char* const connName, const char* column, int arr[] );
|
2012-11-03 18:58:01 +01:00
|
|
|
DevIDRelay getDevID( const char* connName, int hid );
|
|
|
|
DevIDRelay getDevID( const DevID* devID );
|
2013-02-04 15:08:39 +01:00
|
|
|
int getCountWhere( const char* table, string& test );
|
|
|
|
void RemoveStoredMessages( string& msgIDs );
|
2013-07-25 15:37:53 +02:00
|
|
|
void decodeMessage( PGresult* result, bool useB64, int rowIndx, int b64indx,
|
2013-08-30 06:05:21 +02:00
|
|
|
int byteaIndex, uint8_t* buf, size_t* buflen );
|
2013-08-29 15:37:22 +02:00
|
|
|
void storedMessagesImpl( string query, vector<DBMgr::MsgInfo>& msgs,
|
|
|
|
bool nullConnnameOK );
|
2013-07-25 15:37:53 +02:00
|
|
|
int CountStoredMessages( const char* const connName, int hid );
|
2013-08-20 17:09:45 +02:00
|
|
|
bool UpdateDevice( DevIDRelay relayID );
|
2014-04-26 03:45:51 +02:00
|
|
|
void formatUpdate( QueryBuilder& qb, bool append, const char* const desc,
|
2013-09-15 21:54:47 +02:00
|
|
|
int clientVersion, const char* const model,
|
|
|
|
const char* const osVers, DevIDRelay relayID );
|
2010-09-23 14:33:27 +02:00
|
|
|
|
2010-10-05 05:04:14 +02:00
|
|
|
PGconn* getThreadConn( void );
|
2013-07-03 16:36:15 +02:00
|
|
|
void clearThreadConn();
|
2012-01-26 14:48:10 +01:00
|
|
|
|
2013-09-15 06:39:18 +02:00
|
|
|
bool hasNoMessages( const char* const connName, HostID hid );
|
|
|
|
void setHasNoMessages( const char* const connName, HostID hid );
|
|
|
|
void clearHasNoMessages( const char* const connName, HostID hid );
|
|
|
|
void formatKey( StrWPF& key, const char* const connName, HostID hid );
|
|
|
|
|
2013-08-15 16:24:30 +02:00
|
|
|
bool hasNoMessages( DevIDRelay devid );
|
|
|
|
void setHasNoMessages( DevIDRelay devid );
|
|
|
|
void clearHasNoMessages( DevIDRelay devid );
|
|
|
|
|
2012-01-26 14:48:10 +01:00
|
|
|
void conn_key_alloc();
|
|
|
|
pthread_key_t m_conn_key;
|
2013-02-04 15:08:39 +01:00
|
|
|
bool m_useB64;
|
2012-01-26 14:48:10 +01:00
|
|
|
|
2013-08-15 16:24:30 +02:00
|
|
|
pthread_mutex_t m_haveNoMessagesMutex;
|
2013-09-15 06:39:18 +02:00
|
|
|
set<DevIDRelay> m_haveNoMessagesDevID;
|
|
|
|
set<StrWPF> m_haveNoMessagesConnname;
|
2010-09-12 04:44:37 +02:00
|
|
|
}; /* DBMgr */
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|