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
|
2008-08-19 00:53:25 +02:00
|
|
|
|
|
|
|
# pyGTK modules
|
|
|
|
|
|
|
|
# FreePokerTools modules
|
|
|
|
import Configuration
|
|
|
|
import SQL
|
|
|
|
|
|
|
|
class Database:
|
|
|
|
def __init__(self, c, db_name, game):
|
|
|
|
if c.supported_databases[db_name].db_server == 'postgresql':
|
2008-10-04 22:43:50 +02:00
|
|
|
# psycopg2 database module for posgres via DB-API
|
|
|
|
import psycopg2
|
|
|
|
|
|
|
|
try:
|
|
|
|
self.connection = psycopg2.connect(host = c.supported_databases[db_name].db_ip,
|
2008-08-19 00:53:25 +02:00
|
|
|
user = c.supported_databases[db_name].db_user,
|
|
|
|
password = c.supported_databases[db_name].db_pass,
|
|
|
|
database = c.supported_databases[db_name].db_name)
|
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
|
|
|
|
|
|
|
elif c.supported_databases[db_name].db_server == 'mysql':
|
2008-10-04 22:43:50 +02:00
|
|
|
# mysql bindings
|
|
|
|
import MySQLdb
|
|
|
|
try:
|
|
|
|
self.connection = MySQLdb.connect(host = c.supported_databases[db_name].db_ip,
|
2008-08-19 00:53:25 +02:00
|
|
|
user = c.supported_databases[db_name].db_user,
|
|
|
|
passwd = c.supported_databases[db_name].db_pass,
|
|
|
|
db = c.supported_databases[db_name].db_name)
|
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
|
|
|
|
|
|
|
self.type = c.supported_databases[db_name].db_type
|
|
|
|
self.sql = SQL.Sql(game = game, type = self.type)
|
|
|
|
|
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."""
|
|
|
|
cards = {} # dict of cards, the key is the seat number example: {1: 'AcQd9hTs5d'}
|
2008-08-19 00:53:25 +02:00
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_cards'], hand)
|
|
|
|
colnames = [desc[0] for desc in c.description]
|
|
|
|
for row in c.fetchall():
|
|
|
|
s_dict = {}
|
|
|
|
for name, val in zip(colnames, row):
|
|
|
|
s_dict[name] = val
|
2009-02-26 05:35:15 +01:00
|
|
|
cards[s_dict['seat_number']] = (self.convert_cards(s_dict))
|
|
|
|
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."""
|
|
|
|
cards = {}
|
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_common_cards'], hand)
|
|
|
|
colnames = [desc[0] for desc in c.description]
|
|
|
|
for row in c.fetchall():
|
|
|
|
s_dict = {}
|
|
|
|
for name, val in zip(colnames, row):
|
|
|
|
s_dict[name] = val
|
|
|
|
cards['common'] = (self.convert_cards(s_dict))
|
|
|
|
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-03-09 10:06:36 +01: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-03-09 10:06:36 +01: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()
|
|
|
|
c.execute(self.sql.query['get_action_from_hand'], (hand_no))
|
|
|
|
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()
|
|
|
|
c.execute(self.sql.query['get_winners_from_hand'], (hand))
|
|
|
|
for row in c.fetchall():
|
|
|
|
winners[row[0]] = row[1]
|
|
|
|
return winners
|
|
|
|
|
2008-11-11 15:50:20 +01:00
|
|
|
def get_stats_from_hand(self, hand, aggregate = False):
|
2008-08-19 00:53:25 +02:00
|
|
|
c = self.connection.cursor()
|
|
|
|
|
2008-11-11 15:50:20 +01:00
|
|
|
if aggregate:
|
|
|
|
query = 'get_stats_from_hand_aggregated'
|
|
|
|
subs = (hand, hand, hand)
|
2009-02-24 03:33:23 +01:00
|
|
|
else:
|
|
|
|
query = 'get_stats_from_hand'
|
|
|
|
subs = (hand, hand)
|
2008-08-19 00:53:25 +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):
|
|
|
|
t_dict[name] = val
|
|
|
|
stat_dict[t_dict['player_id']] = t_dict
|
|
|
|
return stat_dict
|
|
|
|
|
|
|
|
def get_player_id(self, config, site, player_name):
|
|
|
|
print "site = %s, player name = %s" % (site, player_name)
|
|
|
|
c = self.connection.cursor()
|
|
|
|
c.execute(self.sql.query['get_player_id'], {'player': player_name, 'site': site})
|
|
|
|
row = c.fetchone()
|
|
|
|
return row[0]
|
|
|
|
|
|
|
|
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')
|
|
|
|
print "nutOmatic is id_player = %d" % hero
|
|
|
|
|
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]
|
|
|
|
|
|
|
|
print "nutOmatics stats:"
|
2008-08-19 00:53:25 +02:00
|
|
|
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-02-26 05:35:15 +01:00
|
|
|
print "cards =", db_connection.get_cards(73525)
|
2008-09-15 22:31:55 +02:00
|
|
|
db_connection.close_connection
|
|
|
|
|
|
|
|
print "press enter to continue"
|
|
|
|
sys.stdin.readline()
|