2008-08-19 00:53:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""Database.py
|
|
|
|
|
|
|
|
Create and manage the database objects.
|
|
|
|
"""
|
|
|
|
# Copyright 2008, Ray E. Barker
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
|
|
|
|
# postmaster -D /var/lib/pgsql/data
|
|
|
|
|
|
|
|
# Standard Library modules
|
2008-09-15 22:31:55 +02:00
|
|
|
import sys
|
2008-10-04 22:43:50 +02:00
|
|
|
import traceback
|
2009-05-28 00:34:10 +02:00
|
|
|
from datetime import datetime, date, time, timedelta
|
2009-06-02 00:27:56 +02:00
|
|
|
import string
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
# pyGTK modules
|
|
|
|
|
|
|
|
# FreePokerTools modules
|
|
|
|
import Configuration
|
|
|
|
import SQL
|
2009-05-21 05:26:00 +02:00
|
|
|
import Card
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
class Database:
|
|
|
|
def __init__(self, c, db_name, game):
|
2009-06-02 00:27:56 +02:00
|
|
|
db_params = c.get_db_parameters()
|
|
|
|
if (string.lower(db_params['db-server']) == 'postgresql' or
|
|
|
|
string.lower(db_params['db-server']) == 'postgres'):
|
|
|
|
import psycopg2 # posgres via DB-API
|
2009-06-01 03:25:36 +02:00
|
|
|
import psycopg2.extensions
|
|
|
|
psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
|
2008-10-04 22:43:50 +02:00
|
|
|
|
|
|
|
try:
|
2009-06-02 00:27:56 +02:00
|
|
|
if db_params['db-host'] == 'localhost' or db_params['db-host'] == '127.0.0.1':
|
|
|
|
self.connection = psycopg2.connect(database = db_params['db-databaseName'])
|
|
|
|
else:
|
|
|
|
self.connection = psycopg2.connect(host = db_params['db-host'],
|
|
|
|
user = db_params['db-user'],
|
|
|
|
password = db_params['db-password'],
|
|
|
|
database = db_params['db-databaseName'])
|
2008-10-04 22:43:50 +02:00
|
|
|
except:
|
|
|
|
print "Error opening database connection %s. See error log file." % (file)
|
|
|
|
traceback.print_exc(file=sys.stderr)
|
|
|
|
print "press enter to continue"
|
|
|
|
sys.stdin.readline()
|
|
|
|
sys.exit()
|
2008-08-19 00:53:25 +02:00
|
|
|
|
2009-06-02 00:27:56 +02:00
|
|
|
elif string.lower(db_params['db-server']) == 'mysql':
|
|
|
|
import MySQLdb # mysql bindings
|
2008-10-04 22:43:50 +02:00
|
|
|
try:
|
2009-06-02 00:27:56 +02:00
|
|
|
self.connection = MySQLdb.connect(host = db_params['db-host'],
|
|
|
|
user = db_params['db-user'],
|
|
|
|
passwd = db_params['db-password'],
|
|
|
|
db = db_params['db-databaseName'])
|
2008-11-06 04:44:29 +01:00
|
|
|
cur_iso = self.connection.cursor()
|
|
|
|
cur_iso.execute('SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED')
|
|
|
|
cur_iso.close()
|
|
|
|
|
2008-10-04 22:43:50 +02:00
|
|
|
except:
|
|
|
|
print "Error opening database connection %s. See error log file." % (file)
|
|
|
|
traceback.print_exc(file=sys.stderr)
|
|
|
|
print "press enter to continue"
|
|
|
|
sys.stdin.readline()
|
|
|
|
sys.exit()
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
else:
|
2008-10-04 22:43:50 +02:00
|
|
|
print "Database = %s not recognized." % (c.supported_databases[db_name].db_server)
|
|
|
|
sys.stderr.write("Database not recognized, exiting.\n")
|
|
|
|
print "press enter to continue"
|
|
|
|
sys.exit()
|
2008-08-19 00:53:25 +02:00
|
|
|
|
2009-06-02 00:27:56 +02:00
|
|
|
self.type = db_params['db-type']
|
2008-08-19 00:53:25 +02:00
|
|
|
self.sql = SQL.Sql(game = game, type = self.type)
|
2009-05-21 05:26:00 +02:00
|
|
|
self.connection.rollback()
|
2009-06-09 16:48:48 +02:00
|
|
|
|
2009-05-28 00:34:10 +02:00
|
|
|
# To add to config:
|
|
|
|
self.hud_style = 'T' # A=All-time
|
|
|
|
# S=Session
|
|
|
|
# T=timed (last n days)
|
|
|
|
# Future values may also include:
|
|
|
|
# H=Hands (last n hands)
|
|
|
|
self.hud_hands = 1000 # Max number of hands from each player to use for hud stats
|
|
|
|
self.hud_days = 90 # Max number of days from each player to use for hud stats
|
|
|
|
self.hud_session_gap = 30 # Gap (minutes) between hands that indicates a change of session
|
|
|
|
# (hands every 2 mins for 1 hour = one session, if followed
|
|
|
|
# by a 40 minute gap and then more hands on same table that is
|
|
|
|
# a new session)
|
|
|
|
cur = self.connection.cursor()
|
|
|
|
|
|
|
|
self.hand_1day_ago = 0
|
|
|
|
cur.execute(self.sql.query['get_hand_1day_ago'])
|
|
|
|
row = cur.fetchone()
|
|
|
|
if row and row[0]:
|
|
|
|
self.hand_1day_ago = row[0]
|
|
|
|
#print "hand 1day ago =", self.hand_1day_ago
|
|
|
|
|
|
|
|
d = timedelta(days=self.hud_days)
|
|
|
|
now = datetime.utcnow() - d
|
|
|
|
self.date_ndays_ago = "d%02d%02d%02d" % (now.year-2000, now.month, now.day)
|
|
|
|
|
|
|
|
self.hand_nhands_ago = 0 # todo
|
|
|
|
#cur.execute(self.sql.query['get_table_name'], (hand_id, ))
|
|
|
|
#row = cur.fetchone()
|
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
def close_connection(self):
|
|
|
|
self.connection.close()
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
def get_table_name(self, hand_id):
|
|
|
|
c = self.connection.cursor()
|
2008-09-15 22:31:55 +02:00
|
|
|
c.execute(self.sql.query['get_table_name'], (hand_id, ))
|
2008-08-19 00:53:25 +02:00
|
|
|
row = c.fetchone()
|
|
|
|
return row
|
|
|
|
|
|
|
|
def get_last_hand(self):
|
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_last_hand'])
|
|
|
|
row = c.fetchone()
|
|
|
|
return row[0]
|
|
|
|
|
|
|
|
def get_xml(self, hand_id):
|
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_xml'], (hand_id))
|
|
|
|
row = c.fetchone()
|
|
|
|
return row[0]
|
|
|
|
|
|
|
|
def get_recent_hands(self, last_hand):
|
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_recent_hands'], {'last_hand': last_hand})
|
|
|
|
return c.fetchall()
|
|
|
|
|
|
|
|
def get_hand_info(self, new_hand_id):
|
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_hand_info'], new_hand_id)
|
|
|
|
return c.fetchall()
|
|
|
|
|
2008-10-10 02:50:12 +02:00
|
|
|
def get_actual_seat(self, hand_id, name):
|
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_actual_seat'], (hand_id, name))
|
|
|
|
row = c.fetchone()
|
|
|
|
return row[0]
|
|
|
|
|
2008-08-19 00:53:25 +02:00
|
|
|
def get_cards(self, hand):
|
2009-02-26 05:35:15 +01:00
|
|
|
"""Get and return the cards for each player in the hand."""
|
2009-06-17 05:00:46 +02:00
|
|
|
cards = {} # dict of cards, the key is the seat number,
|
|
|
|
# the value is a tuple of the players cards
|
|
|
|
# example: {1: (0, 0, 20, 21, 22, 0 , 0)}
|
2008-08-19 00:53:25 +02:00
|
|
|
c = self.connection.cursor()
|
2009-05-02 01:28:53 +02:00
|
|
|
c.execute(self.sql.query['get_cards'], [hand])
|
2008-08-19 00:53:25 +02:00
|
|
|
for row in c.fetchall():
|
2009-06-17 05:00:46 +02:00
|
|
|
cards[row[0]] = row[1:]
|
2009-02-26 05:35:15 +01:00
|
|
|
return cards
|
|
|
|
|
2009-03-10 16:14:23 +01:00
|
|
|
def get_common_cards(self, hand):
|
|
|
|
"""Get and return the community cards for the specified hand."""
|
2008-08-19 00:53:25 +02:00
|
|
|
cards = {}
|
2009-03-10 16:14:23 +01:00
|
|
|
c = self.connection.cursor()
|
2009-05-02 01:28:53 +02:00
|
|
|
c.execute(self.sql.query['get_common_cards'], [hand])
|
2009-06-19 21:51:56 +02:00
|
|
|
# row = c.fetchone()
|
|
|
|
cards['common'] = c.fetchone()
|
2009-03-10 16:14:23 +01:00
|
|
|
return cards
|
|
|
|
|
2009-02-26 05:35:15 +01:00
|
|
|
def convert_cards(self, d):
|
|
|
|
ranks = ('', '', '2', '3', '4', '5', '6', '7', '8', '9', 'T', 'J', 'Q', 'K', 'A')
|
|
|
|
cards = ""
|
2009-03-09 10:06:36 +01:00
|
|
|
for i in xrange(1, 8):
|
2009-03-12 03:46:28 +01:00
|
|
|
# key = 'card' + str(i) + 'Value'
|
|
|
|
# if not d.has_key(key): continue
|
|
|
|
# if d[key] == None:
|
|
|
|
# break
|
|
|
|
# elif d[key] == 0:
|
|
|
|
# cards += "xx"
|
|
|
|
# else:
|
|
|
|
# cards += ranks[d['card' + str(i) + 'Value']] + d['card' +str(i) + 'Suit']
|
2009-06-01 03:25:36 +02:00
|
|
|
cv = "card%dvalue" % i
|
2009-03-11 11:38:17 +01:00
|
|
|
if cv not in d or d[cv] == None:
|
2009-02-26 05:35:15 +01:00
|
|
|
break
|
2009-03-11 11:38:17 +01:00
|
|
|
elif d[cv] == 0:
|
2009-03-10 16:14:23 +01:00
|
|
|
cards += "xx"
|
2009-02-26 05:35:15 +01:00
|
|
|
else:
|
2009-06-01 03:25:36 +02:00
|
|
|
cs = "card%dsuit" % i
|
2009-03-11 11:31:47 +01:00
|
|
|
cards = "%s%s%s" % (cards, ranks[d[cv]], d[cs])
|
2009-02-26 05:35:15 +01:00
|
|
|
return cards
|
2008-09-15 22:31:55 +02:00
|
|
|
|
2008-11-13 04:45:09 +01:00
|
|
|
def get_action_from_hand(self, hand_no):
|
|
|
|
action = [ [], [], [], [], [] ]
|
|
|
|
c = self.connection.cursor()
|
2009-06-01 03:25:36 +02:00
|
|
|
c.execute(self.sql.query['get_action_from_hand'], (hand_no, ))
|
2008-11-13 04:45:09 +01:00
|
|
|
for row in c.fetchall():
|
|
|
|
street = row[0]
|
|
|
|
act = row[1:]
|
|
|
|
action[street].append(act)
|
|
|
|
return action
|
2008-12-08 20:10:45 +01:00
|
|
|
|
|
|
|
def get_winners_from_hand(self, hand):
|
|
|
|
"""Returns a hash of winners:amount won, given a hand number."""
|
|
|
|
winners = {}
|
|
|
|
c = self.connection.cursor()
|
2009-06-01 03:25:36 +02:00
|
|
|
c.execute(self.sql.query['get_winners_from_hand'], (hand, ))
|
2008-12-08 20:10:45 +01:00
|
|
|
for row in c.fetchall():
|
|
|
|
winners[row[0]] = row[1]
|
|
|
|
return winners
|
|
|
|
|
2009-05-28 00:34:10 +02:00
|
|
|
def get_stats_from_hand(self, hand, aggregate = False):
|
|
|
|
if self.hud_style == 'S':
|
|
|
|
return( self.get_stats_from_hand_session(hand) )
|
|
|
|
else: # self.hud_style == A
|
|
|
|
if aggregate:
|
|
|
|
query = 'get_stats_from_hand_aggregated'
|
|
|
|
else:
|
|
|
|
query = 'get_stats_from_hand'
|
|
|
|
|
|
|
|
if self.hud_style == 'T':
|
|
|
|
stylekey = self.date_ndays_ago
|
|
|
|
else: # assume A (all-time)
|
|
|
|
stylekey = '0000000' # all stylekey values should be higher than this
|
2008-08-19 00:53:25 +02:00
|
|
|
|
2009-05-28 00:34:10 +02:00
|
|
|
subs = (hand, hand, stylekey)
|
|
|
|
#print "get stats: hud style =", self.hud_style, "subs =", subs
|
|
|
|
c = self.connection.cursor()
|
2008-08-19 00:53:25 +02:00
|
|
|
|
2009-05-28 00:34:10 +02:00
|
|
|
# now get the stats
|
2008-11-11 15:50:20 +01:00
|
|
|
c.execute(self.sql.query[query], subs)
|
2008-08-19 00:53:25 +02:00
|
|
|
colnames = [desc[0] for desc in c.description]
|
|
|
|
stat_dict = {}
|
|
|
|
for row in c.fetchall():
|
|
|
|
t_dict = {}
|
|
|
|
for name, val in zip(colnames, row):
|
2009-04-27 22:29:02 +02:00
|
|
|
t_dict[name.lower()] = val
|
2009-04-29 18:16:39 +02:00
|
|
|
# print t_dict
|
2008-08-19 00:53:25 +02:00
|
|
|
stat_dict[t_dict['player_id']] = t_dict
|
2009-05-28 00:34:10 +02:00
|
|
|
|
|
|
|
return stat_dict
|
|
|
|
|
|
|
|
# uses query on handsplayers instead of hudcache to get stats on just this session
|
|
|
|
def get_stats_from_hand_session(self, hand):
|
|
|
|
|
|
|
|
if self.hud_style == 'S':
|
|
|
|
query = self.sql.query['get_stats_from_hand_session']
|
|
|
|
if self.db_server == 'mysql':
|
|
|
|
query = query.replace("<signed>", 'signed ')
|
|
|
|
else:
|
|
|
|
query = query.replace("<signed>", '')
|
|
|
|
else: # self.hud_style == A
|
|
|
|
return None
|
|
|
|
|
|
|
|
subs = (self.hand_1day_ago, hand)
|
|
|
|
c = self.connection.cursor()
|
|
|
|
|
|
|
|
# now get the stats
|
|
|
|
#print "sess_stats: subs =", subs, "subs[0] =", subs[0]
|
|
|
|
c.execute(query, subs)
|
|
|
|
colnames = [desc[0] for desc in c.description]
|
|
|
|
n,stat_dict = 0,{}
|
|
|
|
row = c.fetchone()
|
|
|
|
while row:
|
|
|
|
if colnames[0].lower() == 'player_id':
|
|
|
|
playerid = row[0]
|
|
|
|
else:
|
|
|
|
print "ERROR: query %s result does not have player_id as first column" % (query,)
|
|
|
|
break
|
|
|
|
|
|
|
|
for name, val in zip(colnames, row):
|
|
|
|
if not playerid in stat_dict:
|
|
|
|
stat_dict[playerid] = {}
|
|
|
|
stat_dict[playerid][name.lower()] = val
|
|
|
|
elif not name.lower() in stat_dict[playerid]:
|
|
|
|
stat_dict[playerid][name.lower()] = val
|
|
|
|
elif name.lower() not in ('hand_id', 'player_id', 'seat', 'screen_name', 'seats'):
|
|
|
|
stat_dict[playerid][name.lower()] += val
|
|
|
|
n += 1
|
|
|
|
if n >= 4000: break # todo: don't think this is needed so set nice and high
|
|
|
|
# for now - comment out or remove?
|
|
|
|
row = c.fetchone()
|
|
|
|
#print " %d rows fetched, len(stat_dict) = %d" % (n, len(stat_dict))
|
|
|
|
|
|
|
|
#print "session stat_dict =", stat_dict
|
2008-08-19 00:53:25 +02:00
|
|
|
return stat_dict
|
|
|
|
|
|
|
|
def get_player_id(self, config, site, player_name):
|
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_player_id'], {'player': player_name, 'site': site})
|
|
|
|
row = c.fetchone()
|
2009-05-21 22:27:44 +02:00
|
|
|
if row:
|
|
|
|
return row[0]
|
|
|
|
else:
|
|
|
|
return None
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
if __name__=="__main__":
|
|
|
|
c = Configuration.Config()
|
|
|
|
|
2008-10-04 22:43:50 +02:00
|
|
|
db_connection = Database(c, 'fpdb', 'holdem') # mysql fpdb holdem
|
|
|
|
# db_connection = Database(c, 'fpdb-p', 'test') # mysql fpdb holdem
|
2008-08-19 00:53:25 +02:00
|
|
|
# db_connection = Database(c, 'PTrackSv2', 'razz') # mysql razz
|
|
|
|
# db_connection = Database(c, 'ptracks', 'razz') # postgres
|
|
|
|
print "database connection object = ", db_connection.connection
|
|
|
|
print "database type = ", db_connection.type
|
|
|
|
|
|
|
|
h = db_connection.get_last_hand()
|
|
|
|
print "last hand = ", h
|
|
|
|
|
|
|
|
hero = db_connection.get_player_id(c, 'PokerStars', 'nutOmatic')
|
2009-05-21 22:27:44 +02:00
|
|
|
if hero:
|
|
|
|
print "nutOmatic is id_player = %d" % hero
|
2008-08-19 00:53:25 +02:00
|
|
|
|
2008-09-15 22:31:55 +02:00
|
|
|
stat_dict = db_connection.get_stats_from_hand(h)
|
|
|
|
for p in stat_dict.keys():
|
|
|
|
print p, " ", stat_dict[p]
|
|
|
|
|
2009-06-01 03:25:36 +02:00
|
|
|
# print "nutOmatics stats:"
|
|
|
|
# stat_dict = db_connection.get_stats_from_hand(h, hero)
|
|
|
|
# for p in stat_dict.keys():
|
|
|
|
# print p, " ", stat_dict[p]
|
2008-09-15 22:31:55 +02:00
|
|
|
|
2009-06-01 03:25:36 +02:00
|
|
|
print "cards =", db_connection.get_cards(u'1')
|
2008-09-15 22:31:55 +02:00
|
|
|
db_connection.close_connection
|
|
|
|
|
|
|
|
print "press enter to continue"
|
|
|
|
sys.stdin.readline()
|