import, code, exception cleanups
This commit is contained in:
parent
e4772dcb74
commit
2790a623af
|
@ -49,14 +49,14 @@ log = logging.getLogger('importer')
|
||||||
# database interface modules
|
# database interface modules
|
||||||
try:
|
try:
|
||||||
import MySQLdb
|
import MySQLdb
|
||||||
except:
|
except ImportError:
|
||||||
log.debug("Import database module: MySQLdb not found")
|
log.debug("Import database module: MySQLdb not found")
|
||||||
else:
|
else:
|
||||||
mysqlLibFound = True
|
mysqlLibFound = True
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import psycopg2
|
import psycopg2
|
||||||
except:
|
except ImportError:
|
||||||
log.debug("Import database module: psycopg2 not found")
|
log.debug("Import database module: psycopg2 not found")
|
||||||
else:
|
else:
|
||||||
import psycopg2.extensions
|
import psycopg2.extensions
|
||||||
|
|
|
@ -18,46 +18,63 @@
|
||||||
#parses an in-memory fpdb hand history and calls db routine to store it
|
#parses an in-memory fpdb hand history and calls db routine to store it
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
import fpdb_simple
|
|
||||||
import Database
|
|
||||||
from time import time, strftime
|
from time import time, strftime
|
||||||
from Exceptions import *
|
from Exceptions import *
|
||||||
|
|
||||||
|
import fpdb_simple
|
||||||
|
import Database
|
||||||
|
|
||||||
#parses a holdem hand
|
|
||||||
def mainParser(settings, siteID, category, hand, config, db = None, writeq = None):
|
def mainParser(settings, siteID, category, hand, config, db = None, writeq = None):
|
||||||
|
""" mainParser for Holdem Hands """
|
||||||
t0 = time()
|
t0 = time()
|
||||||
#print "mainparser"
|
|
||||||
backend = settings['db-backend']
|
backend = settings['db-backend']
|
||||||
# Ideally db connection is passed in, if not use sql list if passed in, otherwise start from scratch
|
# Ideally db connection is passed in, if not use sql list if passed in,
|
||||||
|
# otherwise start from scratch
|
||||||
if db == None:
|
if db == None:
|
||||||
db = Database.Database(c = config, sql = None)
|
db = Database.Database(c = config, sql = None)
|
||||||
category = fpdb_simple.recogniseCategory(hand[0])
|
category = fpdb_simple.recogniseCategory(hand[0])
|
||||||
|
|
||||||
base = "hold" if category == "holdem" or category == "omahahi" or category == "omahahilo" else "stud"
|
base = "hold" if (category == "holdem" or category == "omahahi" or
|
||||||
|
category == "omahahilo") else "stud"
|
||||||
|
|
||||||
#part 0: create the empty arrays
|
#part 0: create the empty arrays
|
||||||
lineTypes = [] #char, valid values: header, name, cards, action, win, rake, ignore
|
# lineTypes valid values: header, name, cards, action, win, rake, ignore
|
||||||
lineStreets = [] #char, valid values: (predeal, preflop, flop, turn, river)
|
# lineStreets valid values: predeal, preflop, flop, turn, river
|
||||||
|
lineTypes = []
|
||||||
cardValues, cardSuits, boardValues, boardSuits, antes, actionTypes, allIns, actionAmounts, actionNos, actionTypeByNo, seatLines, winnings, rakes=[],[],[],[],[],[],[],[],[],[],[],[],[]
|
lineStreets = []
|
||||||
|
cardValues = []
|
||||||
|
cardSuits = []
|
||||||
|
boardValues = []
|
||||||
|
boardSuits = []
|
||||||
|
antes = []
|
||||||
|
allIns = []
|
||||||
|
actionAmounts = []
|
||||||
|
actionNos = []
|
||||||
|
actionTypes = []
|
||||||
|
actionTypeByNo = []
|
||||||
|
seatLines = []
|
||||||
|
winnings = []
|
||||||
|
rakes = []
|
||||||
|
|
||||||
#part 1: read hand no and check for duplicate
|
#part 1: read hand no and check for duplicate
|
||||||
siteHandNo = fpdb_simple.parseSiteHandNo(hand[0])
|
siteHandNo = fpdb_simple.parseSiteHandNo(hand[0])
|
||||||
#print "siteHandNo =", siteHandNo
|
handStartTime = fpdb_simple.parseHandStartTime(hand[0])
|
||||||
handStartTime = fpdb_simple.parseHandStartTime(hand[0])
|
|
||||||
|
|
||||||
isTourney = fpdb_simple.isTourney(hand[0])
|
isTourney = fpdb_simple.isTourney(hand[0])
|
||||||
smallBlindLine = 0
|
|
||||||
|
smallBlindLine = None
|
||||||
for i, line in enumerate(hand):
|
for i, line in enumerate(hand):
|
||||||
if 'posts small blind' in line or 'posts the small blind' in line:
|
if 'posts small blind' in line or 'posts the small blind' in line:
|
||||||
if line[-2:] == "$0": continue
|
if line[-2:] == "$0": continue
|
||||||
smallBlindLine = i
|
smallBlindLine = i
|
||||||
break
|
break
|
||||||
|
else:
|
||||||
|
smallBlindLine = 0
|
||||||
|
# If we did not find a small blind line, what happens?
|
||||||
|
# if we leave it at None, it errors two lines down.
|
||||||
|
|
||||||
gametypeID = fpdb_simple.recogniseGametypeID(backend, db, db.get_cursor(), hand[0], hand[smallBlindLine], siteID, category, isTourney)
|
gametypeID = fpdb_simple.recogniseGametypeID(backend, db, db.get_cursor(),
|
||||||
|
hand[0], hand[smallBlindLine],
|
||||||
|
siteID, category, isTourney)
|
||||||
if isTourney:
|
if isTourney:
|
||||||
siteTourneyNo = fpdb_simple.parseTourneyNo(hand[0])
|
siteTourneyNo = fpdb_simple.parseTourneyNo(hand[0])
|
||||||
buyin = fpdb_simple.parseBuyin(hand[0])
|
buyin = fpdb_simple.parseBuyin(hand[0])
|
||||||
|
@ -68,8 +85,14 @@ def mainParser(settings, siteID, category, hand, config, db = None, writeq = Non
|
||||||
tourneyStartTime= handStartTime #todo: read tourney start time
|
tourneyStartTime= handStartTime #todo: read tourney start time
|
||||||
rebuyOrAddon = fpdb_simple.isRebuyOrAddon(hand[0])
|
rebuyOrAddon = fpdb_simple.isRebuyOrAddon(hand[0])
|
||||||
|
|
||||||
## The tourney site id has to be searched because it may already be in db with a TourneyTypeId which is different from the one automatically calculated (Summary import first)
|
# The tourney site id has to be searched because it may already be in
|
||||||
tourneyTypeId = fpdb_simple.recogniseTourneyTypeId(db, siteID, siteTourneyNo, buyin, fee, knockout, rebuyOrAddon)
|
# db with a TourneyTypeId which is different from the one automatically
|
||||||
|
# calculated (Summary import first)
|
||||||
|
tourneyTypeId = fpdb_simple.recogniseTourneyTypeId(db, siteID,
|
||||||
|
siteTourneyNo,
|
||||||
|
buyin, fee,
|
||||||
|
knockout,
|
||||||
|
rebuyOrAddon)
|
||||||
else:
|
else:
|
||||||
siteTourneyNo = -1
|
siteTourneyNo = -1
|
||||||
buyin = -1
|
buyin = -1
|
||||||
|
@ -100,7 +123,9 @@ def mainParser(settings, siteID, category, hand, config, db = None, writeq = Non
|
||||||
startCashes = tmp['startCashes']
|
startCashes = tmp['startCashes']
|
||||||
seatNos = tmp['seatNos']
|
seatNos = tmp['seatNos']
|
||||||
|
|
||||||
fpdb_simple.createArrays(category, len(names), cardValues, cardSuits, antes, winnings, rakes, actionTypes, allIns, actionAmounts, actionNos, actionTypeByNo)
|
fpdb_simple.createArrays(category, len(names), cardValues, cardSuits, antes,
|
||||||
|
winnings, rakes, actionTypes, allIns,
|
||||||
|
actionAmounts, actionNos, actionTypeByNo)
|
||||||
|
|
||||||
#3b read positions
|
#3b read positions
|
||||||
if base == "hold":
|
if base == "hold":
|
||||||
|
@ -109,27 +134,32 @@ def mainParser(settings, siteID, category, hand, config, db = None, writeq = Non
|
||||||
#part 4: take appropriate action for each line based on linetype
|
#part 4: take appropriate action for each line based on linetype
|
||||||
for i, line in enumerate(hand):
|
for i, line in enumerate(hand):
|
||||||
if lineTypes[i] == "cards":
|
if lineTypes[i] == "cards":
|
||||||
fpdb_simple.parseCardLine(category, lineStreets[i], line, names, cardValues, cardSuits, boardValues, boardSuits)
|
fpdb_simple.parseCardLine(category, lineStreets[i], line, names,
|
||||||
|
cardValues, cardSuits, boardValues,
|
||||||
|
boardSuits)
|
||||||
#if category=="studhilo":
|
#if category=="studhilo":
|
||||||
# print "hand[i]:", hand[i]
|
# print "hand[i]:", hand[i]
|
||||||
# print "cardValues:", cardValues
|
# print "cardValues:", cardValues
|
||||||
# print "cardSuits:", cardSuits
|
# print "cardSuits:", cardSuits
|
||||||
elif lineTypes[i] == "action":
|
elif lineTypes[i] == "action":
|
||||||
fpdb_simple.parseActionLine(base, isTourney, line, lineStreets[i], playerIDs, names, actionTypes, allIns, actionAmounts, actionNos, actionTypeByNo)
|
fpdb_simple.parseActionLine(base, isTourney, line, lineStreets[i],
|
||||||
|
playerIDs, names, actionTypes, allIns,
|
||||||
|
actionAmounts, actionNos, actionTypeByNo)
|
||||||
elif lineTypes[i] == "win":
|
elif lineTypes[i] == "win":
|
||||||
fpdb_simple.parseWinLine(line, names, winnings, isTourney)
|
fpdb_simple.parseWinLine(line, names, winnings, isTourney)
|
||||||
elif lineTypes[i] == "rake":
|
elif lineTypes[i] == "rake":
|
||||||
totalRake = 0 if isTourney else fpdb_simple.parseRake(line)
|
totalRake = 0 if isTourney else fpdb_simple.parseRake(line)
|
||||||
fpdb_simple.splitRake(winnings, rakes, totalRake)
|
fpdb_simple.splitRake(winnings, rakes, totalRake)
|
||||||
elif lineTypes[i]=="header" or lineTypes[i]=="rake" or lineTypes[i]=="name" or lineTypes[i]=="ignore":
|
elif (lineTypes[i] == "header" or lineTypes[i] == "rake" or
|
||||||
|
lineTypes[i] == "name" or lineTypes[i] == "ignore"):
|
||||||
pass
|
pass
|
||||||
elif lineTypes[i]=="ante":
|
elif lineTypes[i] == "ante":
|
||||||
fpdb_simple.parseAnteLine(line, isTourney, names, antes)
|
fpdb_simple.parseAnteLine(line, isTourney, names, antes)
|
||||||
elif lineTypes[i]=="table":
|
elif lineTypes[i] == "table":
|
||||||
tableResult=fpdb_simple.parseTableLine(base, line)
|
tableResult=fpdb_simple.parseTableLine(base, line)
|
||||||
else:
|
else:
|
||||||
raise FpdbError("unrecognised lineType:"+lineTypes[i])
|
raise FpdbError("unrecognised lineType:" + lineTypes[i])
|
||||||
|
|
||||||
maxSeats = tableResult['maxSeats']
|
maxSeats = tableResult['maxSeats']
|
||||||
tableName = tableResult['tableName']
|
tableName = tableResult['tableName']
|
||||||
#print "before part5, antes:", antes
|
#print "before part5, antes:", antes
|
||||||
|
@ -152,26 +182,34 @@ def mainParser(settings, siteID, category, hand, config, db = None, writeq = Non
|
||||||
# if hold'em, use positions and not antes, if stud do not use positions, use antes
|
# if hold'em, use positions and not antes, if stud do not use positions, use antes
|
||||||
# this is used for handsplayers inserts, so still needed even if hudcache update is being skipped
|
# this is used for handsplayers inserts, so still needed even if hudcache update is being skipped
|
||||||
if base == "hold":
|
if base == "hold":
|
||||||
hudImportData = fpdb_simple.generateHudCacheData(playerIDs, base, category, actionTypes
|
hudImportData = fpdb_simple.generateHudCacheData(playerIDs, base,
|
||||||
, allIns, actionTypeByNo, winnings, totalWinnings, positions
|
category, actionTypes,
|
||||||
, actionTypes, actionAmounts, None)
|
allIns, actionTypeByNo,
|
||||||
|
winnings,
|
||||||
|
totalWinnings,
|
||||||
|
positions, actionTypes,
|
||||||
|
actionAmounts, None)
|
||||||
else:
|
else:
|
||||||
hudImportData = fpdb_simple.generateHudCacheData(playerIDs, base, category, actionTypes
|
hudImportData = fpdb_simple.generateHudCacheData(playerIDs, base,
|
||||||
, allIns, actionTypeByNo, winnings, totalWinnings, None
|
category, actionTypes,
|
||||||
, actionTypes, actionAmounts, antes)
|
allIns, actionTypeByNo,
|
||||||
|
winnings,
|
||||||
|
totalWinnings, None,
|
||||||
|
actionTypes,
|
||||||
|
actionAmounts, antes)
|
||||||
|
|
||||||
#print "parse: hand data prepared" # only reads up to here apart from inserting new players
|
|
||||||
try:
|
try:
|
||||||
db.commit() # need to commit new players as different db connection used
|
db.commit() # need to commit new players as different db connection used
|
||||||
# for other writes. maybe this will change maybe not ...
|
# for other writes. maybe this will change maybe not ...
|
||||||
except:
|
except: # TODO: this really needs to be narrowed down
|
||||||
print "parse: error during commit: " + str(sys.exc_value)
|
print "parse: error during commit: " + str(sys.exc_value)
|
||||||
|
|
||||||
# HERE's an ugly kludge to keep from failing when positions is undef
|
# HERE's an ugly kludge to keep from failing when positions is undef
|
||||||
# We'll fix this by getting rid of the legacy importer. REB
|
# We'll fix this by getting rid of the legacy importer. REB
|
||||||
try:
|
try:
|
||||||
if positions: pass
|
if positions:
|
||||||
except:
|
pass
|
||||||
|
except NameError:
|
||||||
positions = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
positions = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
||||||
# save data structures in a HandToWrite instance and then insert into database:
|
# save data structures in a HandToWrite instance and then insert into database:
|
||||||
htw = Database.HandToWrite()
|
htw = Database.HandToWrite()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user