diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index b90040d7..8da4c0f1 100755 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -33,6 +33,11 @@ import shutil import xml.dom.minidom from xml.dom.minidom import Node +import logging, logging.config +logging.config.fileConfig("logging.conf") +log = logging.getLogger("config") +log.debug("config logger initialised") + def fix_tf(x, default = True): # The xml parser doesn't translate "True" to True. Therefore, we never get # True or False from the parser only "True" or "False". So translate the @@ -193,6 +198,9 @@ class Database: self.db_user = node.getAttribute("db_user") self.db_type = node.getAttribute("db_type") self.db_pass = node.getAttribute("db_pass") + self.db_selected = fix_tf(node.getAttribute("default"),"False") + log.debug("Database db_name:'%(name)s' db_server:'%(server)s' db_ip:'%(ip)s' db_user:'%(user)s' db_type:'%(type)s' db_pass (not logged) selected:'%(sel)s'" \ + % { 'name':self.db_name, 'server':self.db_server, 'ip':self.db_ip, 'user':self.db_user, 'type':self.db_type, 'sel':self.db_selected} ) def __str__(self): temp = 'Database = ' + self.db_name + '\n' @@ -271,11 +279,10 @@ class Tv: (self.combinedStealFold, self.combined2B3B, self.combinedPostflop) ) class Config: - def __init__(self, file = None, dbname = 'fpdb'): + def __init__(self, file = None, dbname = ''): # "file" is a path to an xml file with the fpdb/HUD configuration # we check the existence of "file" and try to recover if it doesn't exist - self.dbname = dbname self.default_config_path = self.get_default_config_path() if file != None: # configuration file path has been passed @@ -301,10 +308,10 @@ class Config: # Parse even if there was no real config file found and we are using the example # If using the example, we'll edit it later try: - print "Reading configuration file %s\n" % (file) + log.info("Reading configuration file %s" % (file)) doc = xml.dom.minidom.parse(file) except: - print "Error parsing %s. See error log file." % (file) + log.error("Error parsing %s. See error log file." % (file)) traceback.print_exc(file=sys.stderr) print "press enter to continue" sys.stdin.readline() @@ -330,9 +337,21 @@ class Config: self.supported_games[game.game_name] = game # s_dbs = doc.getElementsByTagName("supported_databases") + if dbname and dbname in self.supported_databases: + self.db_selected = dbname for db_node in doc.getElementsByTagName("database"): - db = Database(node = db_node) - self.supported_databases[db.db_name] = db + try: + db = Database(node = db_node) + if db.db_name in self.supported_databases: + raise FpdbError("Database names must be unique") + # If there is only one Database node, or none are marked default, the first is selected + if len(self.supported_databases) == 0: + self.db_selected = db.db_name + self.supported_databases[db.db_name] = db + if db.db_selected: + self.db_selected = db.db_name + except: + raise # s_dbs = doc.getElementsByTagName("mucked_windows") for aw_node in doc.getElementsByTagName("aw"): @@ -499,7 +518,7 @@ class Config: def get_db_parameters(self): db = {} - name = self.dbname + name = self.db_selected try: db['db-databaseName'] = name except: pass diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 6fb96507..31a242ba 100755 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -31,7 +31,6 @@ from time import time, strftime, sleep from decimal import Decimal import string import re -import logging import Queue # pyGTK modules @@ -42,6 +41,11 @@ import fpdb_simple import Configuration import SQL import Card +from Exceptions import * + +import logging, logging.config +logging.config.fileConfig("logging.conf") +log = logging.getLogger('db') class Database: @@ -93,6 +97,14 @@ class Database: , {'tab':'TourneyTypes', 'col':'siteId', 'drop':0} ] , [ # indexes for sqlite (list index 4) + {'tab':'Players', 'col':'name', 'drop':0} + , {'tab':'Hands', 'col':'siteHandNo', 'drop':0} + , {'tab':'Hands', 'col':'gametypeId', 'drop':0} + , {'tab':'HandsPlayers', 'col':'handId', 'drop':0} + , {'tab':'HandsPlayers', 'col':'playerId', 'drop':0} + , {'tab':'HandsPlayers', 'col':'tourneyTypeId', 'drop':0} + , {'tab':'HandsPlayers', 'col':'tourneysPlayersId', 'drop':0} + , {'tab':'Tourneys', 'col':'siteTourneyNo', 'drop':0} ] ] @@ -161,8 +173,14 @@ class Database: # CREATE INDEX idx ON tab(col) # DROP INDEX idx + # SQLite notes: + + # To add an index: + # create index indexname on tablename (col); + + def __init__(self, c, db_name = None, game = None, sql = None): # db_name and game not used any more - print "\ncreating Database instance, sql =", sql + log.info("Creating Database instance, sql = %s" % sql) self.fdb = fpdb_db.fpdb_db() # sets self.fdb.db self.fdb.cursor and self.fdb.sql self.fdb.do_connect(c) self.connection = self.fdb.db @@ -179,12 +197,17 @@ class Database: #ISOLATION_LEVEL_READ_COMMITTED = 1 #ISOLATION_LEVEL_SERIALIZABLE = 2 + # where possible avoid creating new SQL instance by using the global one passed in if sql == None: self.sql = SQL.Sql(type = self.type, db_server = db_params['db-server']) else: self.sql = sql + if self.backend == self.SQLITE and db_params['db-databaseName'] == ':memory:' and self.fdb.wrongDbVersion: + log.info("sqlite/:memory: - creating") + self.recreate_tables() + self.pcache = None # PlayerId cache self.cachemiss = 0 # Delete me later - using to count player cache misses self.cachehit = 0 # Delete me later - using to count player cache hits @@ -244,7 +267,7 @@ class Database: elif self.backend==4: return "SQLite" else: - raise fpdb_simple.FpdbError("invalid backend") + raise FpdbError("invalid backend") def get_table_name(self, hand_id): c = self.connection.cursor() @@ -439,7 +462,7 @@ class Database: if colnames[0].lower() == 'player_id': playerid = row[0] else: - print "ERROR: query %s result does not have player_id as first column" % (query,) + log.error("ERROR: query %s result does not have player_id as first column" % (query,)) break for name, val in zip(colnames, row): @@ -480,7 +503,7 @@ class Database: if self.backend == self.MYSQL_INNODB: ret = self.connection.insert_id() if ret < 1 or ret > 999999999: - print "getLastInsertId(): problem fetching insert_id? ret=", ret + log.warning("getLastInsertId(): problem fetching insert_id? ret=%d" % ret) ret = -1 elif self.backend == self.PGSQL: # some options: @@ -492,14 +515,14 @@ class Database: ret = c.execute ("SELECT lastval()") row = c.fetchone() if not row: - print "getLastInsertId(%s): problem fetching lastval? row=" % seq, row + log.warning("getLastInsertId(%s): problem fetching lastval? row=%d" % (seq, row)) ret = -1 else: ret = row[0] elif self.backend == self.SQLITE: ret = cursor.lastrowid else: - print "getLastInsertId(): unknown backend ", self.backend + log.error("getLastInsertId(): unknown backend: %d" % self.backend) ret = -1 except: ret = -1 @@ -823,16 +846,16 @@ class Database: self.create_tables() self.createAllIndexes() self.commit() - print "Finished recreating tables" + log.info("Finished recreating tables") #end def recreate_tables def create_tables(self): #todo: should detect and fail gracefully if tables already exist. try: - logging.debug(self.sql.query['createSettingsTable']) + log.debug(self.sql.query['createSettingsTable']) c = self.get_cursor() c.execute(self.sql.query['createSettingsTable']) - logging.debug(self.sql.query['createSitesTable']) + log.debug(self.sql.query['createSitesTable']) c.execute(self.sql.query['createSitesTable']) c.execute(self.sql.query['createGametypesTable']) c.execute(self.sql.query['createPlayersTable']) @@ -879,7 +902,7 @@ class Database: elif(self.get_backend_name() == 'SQLite'): c.execute(self.sql.query['list_tables']) for table in c.fetchall(): - logging.debug(self.sql.query['drop_table'] + table[0]) + log.debug(self.sql.query['drop_table'] + table[0]) c.execute(self.sql.query['drop_table'] + table[0]) self.commit() @@ -912,14 +935,21 @@ class Database: self.get_cursor().execute(s) except: print " create idx failed: " + str(sys.exc_info()) + elif self.backend == self.SQLITE: + log.debug("Creating sqlite index %s %s" % (idx['tab'], idx['col'])) + try: + s = "create index %s_%s_idx on %s(%s)" % (idx['tab'], idx['col'], idx['tab'], idx['col']) + self.get_cursor().execute(s) + except: + log.debug("Create idx failed: " + str(sys.exc_info())) else: - print "Only MySQL and Postgres supported so far" + print "Only MySQL, Postgres and SQLite supported so far" return -1 if self.backend == self.PGSQL: self.connection.set_isolation_level(1) # go back to normal isolation level except: print "Error creating indexes: " + str(sys.exc_value) - raise fpdb_simple.FpdbError( "Error creating indexes " + str(sys.exc_value) ) + raise FpdbError( "Error creating indexes " + str(sys.exc_value) ) #end def createAllIndexes def dropAllIndexes(self): @@ -1091,7 +1121,7 @@ class Database: , h.allIns, h.actionAmounts, h.actionNos, h.hudImportData, h.maxSeats , h.tableName, h.seatNos) else: - raise fpdb_simple.FpdbError("unrecognised category") + raise FpdbError("unrecognised category") else: if h.base == "hold": result = self.ring_holdem_omaha( @@ -1109,7 +1139,7 @@ class Database: , h.actionAmounts, h.actionNos, h.hudImportData, h.maxSeats, h.tableName , h.seatNos) else: - raise fpdb_simple.FpdbError("unrecognised category") + raise FpdbError("unrecognised category") except: print "Error storing hand: " + str(sys.exc_value) self.rollback() @@ -1229,7 +1259,7 @@ class Database: ret = self.get_last_insert_id(c) except: ret = -1 - raise fpdb_simple.FpdbError( "storeHands error: " + str(sys.exc_value) ) + raise FpdbError( "storeHands error: " + str(sys.exc_value) ) return ret #end def storeHands @@ -1264,7 +1294,7 @@ class Database: card3 = Card.cardFromValueSuit(card_values[i][2], card_suits[i][2]) card4 = Card.cardFromValueSuit(card_values[i][3], card_suits[i][3]) else: - raise fpdb_simple.FpdbError("invalid category") + raise FpdbError("invalid category") inserts.append( ( hands_id, player_ids[i], start_cashes[i], positions[i], 1, # tourneytypeid @@ -1323,7 +1353,7 @@ class Database: ,inserts ) result.append( self.get_last_insert_id(c) ) # wrong? not used currently except: - raise fpdb_simple.FpdbError( "store_hands_players_holdem_omaha error: " + str(sys.exc_value) ) + raise FpdbError( "store_hands_players_holdem_omaha error: " + str(sys.exc_value) ) return result #end def store_hands_players_holdem_omaha @@ -1361,7 +1391,7 @@ class Database: #result.append(cursor.fetchall()[0][0]) result.append( self.get_last_insert_id(c) ) except: - raise fpdb_simple.FpdbError( "store_hands_players_stud error: " + str(sys.exc_value) ) + raise FpdbError( "store_hands_players_stud error: " + str(sys.exc_value) ) return result #end def store_hands_players_stud @@ -1454,7 +1484,7 @@ class Database: #cursor.execute("SELECT id FROM HandsPlayers WHERE handId=%s AND playerId+0=%s", (hands_id, player_ids[i])) #result.append(cursor.fetchall()[0][0]) except: - raise fpdb_simple.FpdbError( "store_hands_players_holdem_omaha_tourney error: " + str(sys.exc_value) ) + raise FpdbError( "store_hands_players_holdem_omaha_tourney error: " + str(sys.exc_value) ) return result #end def store_hands_players_holdem_omaha_tourney @@ -1484,7 +1514,7 @@ class Database: #result.append(cursor.fetchall()[0][0]) result.append( self.get_last_insert_id(c) ) except: - raise fpdb_simple.FpdbError( "store_hands_players_stud_tourney error: " + str(sys.exc_value) ) + raise FpdbError( "store_hands_players_stud_tourney error: " + str(sys.exc_value) ) return result #end def store_hands_players_stud_tourney @@ -1681,7 +1711,7 @@ class Database: # print "todo: implement storeHudCache for stud base" except: - raise fpdb_simple.FpdbError( "storeHudCache error: " + str(sys.exc_value) ) + raise FpdbError( "storeHudCache error: " + str(sys.exc_value) ) #end def storeHudCache @@ -1704,7 +1734,7 @@ class Database: tmp=cursor.fetchone() #print "created new tourneys.id:",tmp except: - raise fpdb_simple.FpdbError( "store_tourneys error: " + str(sys.exc_value) ) + raise FpdbError( "store_tourneys error: " + str(sys.exc_value) ) return tmp[0] #end def store_tourneys @@ -1737,7 +1767,7 @@ class Database: #print "created new tourneys_players.id:",tmp result.append(tmp[0]) except: - raise fpdb_simple.FpdbError( "store_tourneys_players error: " + str(sys.exc_value) ) + raise FpdbError( "store_tourneys_players error: " + str(sys.exc_value) ) return result #end def store_tourneys_players diff --git a/pyfpdb/Exceptions.py b/pyfpdb/Exceptions.py index 8259a484..44ed2d65 100644 --- a/pyfpdb/Exceptions.py +++ b/pyfpdb/Exceptions.py @@ -1,4 +1,23 @@ -class FpdbParseError(Exception): - def __init__(self,hid=None): - self.hid = hid +class DuplicateError(Exception): + def __init__(self, value): + self.value = value + def __str__(self): + return repr(self.value) + +class FpdbError(Exception): + def __init__(self, value): + self.value = value + def __str__(self): + return repr(self.value) + +class FpdbParseError(Exception): + def __init__(self,value='',hid=''): + self.value = value + self.hid = hid + def __str__(self): + if hid: + return repr("HID:"+hid+", "+self.value) + else: + return repr(self.value) + diff --git a/pyfpdb/GuiBulkImport.py b/pyfpdb/GuiBulkImport.py index 269efe13..d25a8037 100755 --- a/pyfpdb/GuiBulkImport.py +++ b/pyfpdb/GuiBulkImport.py @@ -319,6 +319,7 @@ def main(argv=None): # importer.setDropIndexes("auto") importer.setDropIndexes("don't drop") importer.setFailOnError(options.failOnError) + importer.setThreads(-1) importer.addBulkImportImportFileOrDir(os.path.expanduser(options.filename), site=options.filtername) importer.setCallHud(False) importer.runImport() diff --git a/pyfpdb/GuiTableViewer.py b/pyfpdb/GuiTableViewer.py index 8d25366a..71cfb900 100644 --- a/pyfpdb/GuiTableViewer.py +++ b/pyfpdb/GuiTableViewer.py @@ -25,6 +25,7 @@ import fpdb_simple import fpdb_import import fpdb_db +from Exceptions import * class GuiTableViewer (threading.Thread): @@ -74,7 +75,7 @@ class GuiTableViewer (threading.Thread): tmp+=("WtSD", "W$wsF", "W$SD") else: - raise fpdb_simple.FpdbError("reimplement stud") + raise FpdbError("reimplement stud") arr.append(tmp) #then the data rows @@ -94,7 +95,7 @@ class GuiTableViewer (threading.Thread): elif seatCount==2 or seatCount==3: minSeats,maxSeats=seatCount,seatCount else: - fpdb_simple.FpdbError("invalid seatCount") + FpdbError("invalid seatCount") self.cursor.execute("SELECT * FROM HudCache WHERE gametypeId=%s AND playerId=%s AND activeSeats>=%s AND activeSeats<=%s", (self.gametype_id, self.player_ids[player][0], minSeats, maxSeats)) rows=self.cursor.fetchall() diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 23bb4495..51af7865 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -76,6 +76,7 @@ import SQL import Database import FpdbSQLQueries import Configuration +from Exceptions import * VERSION = "0.11" @@ -98,7 +99,7 @@ class fpdb: for i in self.tab_names: #todo: check this is valid if i==new_tab_name: return # we depend on this to not create duplicate tabs, there's no reason to raise an error here? -# raise fpdb_simple.FpdbError("duplicate tab_name not permitted") +# raise FpdbError("duplicate tab_name not permitted") self.tabs.append(new_tab) self.tab_names.append(new_tab_name) @@ -120,7 +121,7 @@ class fpdb: break if tab_no == -1: - raise fpdb_simple.FpdbError("invalid tab_no") + raise FpdbError("invalid tab_no") else: self.main_vbox.remove(self.current_tab) #self.current_tab.destroy() diff --git a/pyfpdb/fpdb_db.py b/pyfpdb/fpdb_db.py index edd12b3b..b9a35fb3 100644 --- a/pyfpdb/fpdb_db.py +++ b/pyfpdb/fpdb_db.py @@ -20,9 +20,12 @@ import re import sys import logging from time import time, strftime +import sqlalchemy.pool as pool import fpdb_simple import FpdbSQLQueries +from Exceptions import * + class fpdb_db: MYSQL_INNODB = 2 @@ -63,13 +66,15 @@ class fpdb_db: self.database=database if backend==fpdb_db.MYSQL_INNODB: import MySQLdb + MySQLdb = pool.manage(MySQLdb, pool_size=5) try: self.db = MySQLdb.connect(host = host, user = user, passwd = password, db = database, use_unicode=True) except: - raise fpdb_simple.FpdbError("MySQL connection failed") + raise FpdbError("MySQL connection failed") elif backend==fpdb_db.PGSQL: import psycopg2 import psycopg2.extensions + psycopg2 = pool.manage(psycopg2, pool_size=5) psycopg2.extensions.register_type(psycopg2.extensions.UNICODE) # If DB connection is made over TCP, then the variables # host, user and password are required @@ -87,7 +92,7 @@ class fpdb_db: pass #msg = "PostgreSQL direct connection to database (%s) failed, trying with user ..." % (database,) #print msg - #raise fpdb_simple.FpdbError(msg) + #raise FpdbError(msg) if not connected: try: self.db = psycopg2.connect(host = host, @@ -97,16 +102,16 @@ class fpdb_db: except: msg = "PostgreSQL connection to database (%s) user (%s) failed." % (database, user) print msg - raise fpdb_simple.FpdbError(msg) + raise FpdbError(msg) elif backend==fpdb_db.SQLITE: logging.info("Connecting to SQLite:%(database)s" % {'database':database}) import sqlite3 + sqlite3 = pool.manage(sqlite3, pool_size=1) self.db = sqlite3.connect(database,detect_types=sqlite3.PARSE_DECLTYPES) sqlite3.register_converter("bool", lambda x: bool(int(x))) sqlite3.register_adapter(bool, lambda x: "1" if x else "0") - else: - raise fpdb_simple.FpdbError("unrecognised database backend:"+backend) + raise FpdbError("unrecognised database backend:"+backend) self.cursor=self.db.cursor() # Set up query dictionary as early in the connection process as we can. self.sql = FpdbSQLQueries.FpdbSQLQueries(self.get_backend_name()) @@ -148,7 +153,7 @@ class fpdb_db: elif self.backend==4: return "SQLite" else: - raise fpdb_simple.FpdbError("invalid backend") + raise FpdbError("invalid backend") #end def get_backend_name def get_db_info(self): diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 6b4994b6..f90a47b5 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -22,7 +22,6 @@ import os # todo: remove this once import_dir is in fpdb_import import sys from time import time, strftime, sleep -import logging import traceback import math import datetime @@ -39,21 +38,26 @@ import Database import fpdb_parse_logic import Configuration +import logging, logging.config +logging.config.fileConfig("logging.conf") +log = logging.getLogger('importer') + # database interface modules try: import MySQLdb mysqlLibFound=True + log.debug("Import module: MySQLdb") except: - pass + log.debug("Import module: MySQLdb not found") try: import psycopg2 pgsqlLibFound=True import psycopg2.extensions psycopg2.extensions.register_type(psycopg2.extensions.UNICODE) - + log.debug("Import module: pyscopg2") except: - pass + log.debug("Import module: pyscopg2 not found") class Importer: @@ -153,9 +157,9 @@ class Importer: self.siteIds[site] = result[0][0] else: if len(result) == 0: - print "[ERROR] Database ID for %s not found" % site + log.error("Database ID for %s not found" % site) else: - print "[ERROR] More than 1 Database ID found for %s - Multiple currencies not implemented yet" % site + log.error("[ERROR] More than 1 Database ID found for %s - Multiple currencies not implemented yet" % site) # Called from GuiBulkImport to add a file or directory. @@ -168,7 +172,7 @@ class Importer: if os.path.isdir(inputPath): for subdir in os.walk(inputPath): for file in subdir[2]: - self.addImportFile(os.path.join(inputPath, subdir[0], file), site=site, filter=filter) + self.addImportFile(os.path.join(subdir[0], file), site=site, filter=filter) else: self.addImportFile(inputPath, site=site, filter=filter) #Add a directory of files to filelist @@ -189,7 +193,7 @@ class Importer: #print " adding file ", file self.addImportFile(os.path.join(dir, file), site, filter) else: - print "Warning: Attempted to add non-directory: '" + str(dir) + "' as an import directory" + log.warning("Attempted to add non-directory: '" + str(dir) + "' as an import directory") def runImport(self): """"Run full import on self.filelist. This is called from GuiBulkImport.py""" @@ -199,7 +203,7 @@ class Importer: # Initial setup start = datetime.datetime.now() starttime = time() - print "Started at", start, "--", len(self.filelist), "files to import.", self.settings['dropIndexes'] + log.info("Started at %s -- %d files to import. indexes: %s" % (start, len(self.filelist), self.settings['dropIndexes'])) if self.settings['dropIndexes'] == 'auto': self.settings['dropIndexes'] = self.calculate_auto2(self.database, 12.0, 500.0) if 'dropHudCache' in self.settings and self.settings['dropHudCache'] == 'auto': @@ -208,7 +212,7 @@ class Importer: if self.settings['dropIndexes'] == 'drop': self.database.prepareBulkImport() else: - print "No need to drop indexes." + log.debug("No need to drop indexes.") #print "dropInd =", self.settings['dropIndexes'], " dropHudCache =", self.settings['dropHudCache'] if self.settings['threads'] <= 0: @@ -383,9 +387,9 @@ class Importer: # Load filter, process file, pass returned filename to import_fpdb_file if self.settings['threads'] > 0 and self.writeq != None: - print "\nConverting " + file + " (" + str(q.qsize()) + ")" + log.info("Converting " + file + " (" + str(q.qsize()) + ")") else: - print "\nConverting " + file + log.info("Converting " + file) hhbase = self.config.get_import_parameters().get("hhArchiveBase") hhbase = os.path.expanduser(hhbase) hhdir = os.path.join(hhbase,site) @@ -415,7 +419,7 @@ class Importer: # TODO: appropriate response? return (0, 0, 0, 1, 0, -1) else: - print "Unknown filter filter_name:'%s' in filter:'%s'" %(filter_name, filter) + log.warning("Unknown filter filter_name:'%s' in filter:'%s'" %(filter_name, filter)) return (0, 0, 0, 1, 0, -1) #This will barf if conv.getStatus != True @@ -458,7 +462,7 @@ class Importer: db.commit() ttime = time() - starttime if q == None: - print "\rTotal stored:", stored, " duplicates:", duplicates, "errors:", errors, " time:", ttime + log.info("Total stored: %(stored)d\tduplicates:%(duplicates)d\terrors:%(errors)d\ttime:%(ttime)s" % locals()) if not stored: if duplicates: diff --git a/pyfpdb/fpdb_parse_logic.py b/pyfpdb/fpdb_parse_logic.py index 696f42d2..aa57c3c5 100644 --- a/pyfpdb/fpdb_parse_logic.py +++ b/pyfpdb/fpdb_parse_logic.py @@ -22,6 +22,7 @@ import sys import fpdb_simple import Database from time import time, strftime +from Exceptions import * #parses a holdem hand @@ -126,7 +127,7 @@ def mainParser(settings, siteID, category, hand, config, db = None, writeq = Non elif lineTypes[i]=="table": tableResult=fpdb_simple.parseTableLine(base, line) else: - raise fpdb_simple.FpdbError("unrecognised lineType:"+lineTypes[i]) + raise FpdbError("unrecognised lineType:"+lineTypes[i]) maxSeats = tableResult['maxSeats'] tableName = tableResult['tableName'] diff --git a/pyfpdb/fpdb_simple.py b/pyfpdb/fpdb_simple.py index 3f75d8d3..1ff408c3 100644 --- a/pyfpdb/fpdb_simple.py +++ b/pyfpdb/fpdb_simple.py @@ -25,7 +25,7 @@ import datetime import time import re import sys - +from Exceptions import * import Card PS = 1 @@ -37,18 +37,6 @@ MYSQL_INNODB = 2 PGSQL = 3 SQLITE = 4 -class DuplicateError(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) - -class FpdbError(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) - #returns an array of the total money paid. intending to add rebuys/addons here def calcPayin(count, buyin, fee): return [buyin + fee for i in xrange(count)] @@ -224,7 +212,7 @@ def fillCardArrays(player_count, base, category, card_values, card_suits): elif base=="stud": cardCount = 7 else: - raise fpdb_simple.FpdbError("invalid category:", category) + raise FpdbError("invalid category:", category) for i in xrange(player_count): while (len(card_values[i]) < cardCount): diff --git a/pyfpdb/logging.conf b/pyfpdb/logging.conf index f953e090..565618e7 100644 --- a/pyfpdb/logging.conf +++ b/pyfpdb/logging.conf @@ -1,5 +1,5 @@ [loggers] -keys=root,parser +keys=root,parser,importer,config,db [handlers] keys=consoleHandler,fileHandler @@ -13,20 +13,37 @@ handlers=consoleHandler,fileHandler [logger_parser] level=INFO -# set to NOTSET or DEBUG to see everything the parser does handlers=consoleHandler,fileHandler qualname=parser propagate=0 +[logger_importer] +level=DEBUG +handlers=consoleHandler,fileHandler +qualname=importer +propagate=0 + +[logger_config] +level=DEBUG +handlers=consoleHandler,fileHandler +qualname=config +propagate=0 + +[logger_db] +level=DEBUG +handlers=consoleHandler,fileHandler +qualname=db +propagate=0 + [handler_consoleHandler] class=StreamHandler -level=INFO +level=DEBUG formatter=stderrFormatter args=(sys.stderr,) [handler_fileHandler] class=FileHandler -level=INFO +level=DEBUG formatter=fileFormatter args=('logging.out', 'a')