From a3ff47739580ad098caf6c5377d80e17682c0b39 Mon Sep 17 00:00:00 2001 From: Worros Date: Sat, 17 Jan 2009 00:24:01 +0900 Subject: [PATCH 1/4] Added comment/debug to damaged FTP file Doesn't fix issue, but documents what the bug is in the FTP software, and prints the file name and line number that it occurs in so user can fix. Ideally the parser itself would be able to deal with this. --- pyfpdb/fpdb_import.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 8b567032..9ff475e6 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -201,8 +201,13 @@ class Importer: for i in range (len(hand)): if (hand[i].endswith(" has been canceled")): #this is their typo. this is a typo, right? cancelled=True - - seat1=hand[i].find("Seat ") #todo: make this recover by skipping this line + + #FTP generates lines looking like: + #Seat 1: IOS Seat 2: kashman59 (big blind) showed [8c 9d] and won ($3.25) with a pair of Eights + #ie. Seat X multiple times on the same line in the summary section, when a new player sits down in the + #middle of the hand. + #TODO: Deal with this properly, either fix the file or make the parsing code work with this line. + seat1=hand[i].find("Seat ") if (seat1!=-1): if (hand[i].find("Seat ", seat1+3)!=-1): damaged=True @@ -216,6 +221,14 @@ class Importer: partial+=1 elif (cancelled or damaged): partial+=1 + if damaged: + print """ + DEBUG: Partial hand triggered by a line containing 'Seat X:' twice. This is a + bug in the FTP software when a player sits down in the middle of a hand. + Adding a newline after the player name will fix the issue + """ + print "File: %s" %(file) + print "Line: %s" %(startpos) else: #normal processing isTourney=fpdb_simple.isTourney(hand[0]) if not isTourney: From ffb037b1fe858f382969bb5a591420ff0be7bdb2 Mon Sep 17 00:00:00 2001 From: Worros Date: Sat, 17 Jan 2009 02:24:00 +0900 Subject: [PATCH 2/4] Added output totals for bulk import --- pyfpdb/GuiBulkImport.py | 4 ++-- pyfpdb/fpdb_import.py | 23 ++++++++++++++++++----- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/pyfpdb/GuiBulkImport.py b/pyfpdb/GuiBulkImport.py index e3bee81c..7aa33527 100644 --- a/pyfpdb/GuiBulkImport.py +++ b/pyfpdb/GuiBulkImport.py @@ -31,8 +31,8 @@ class GuiBulkImport (threading.Thread): self.importer.addImportDirectory(self.path) self.importer.setCallHud(False) starttime = time() - self.importer.runImport() - print "GuiBulkImport.import_dir done in %s" %(time() - starttime) + (stored, dups, partial, errs, ttime) = self.importer.runImport() + print "GuiBulkImport.import_dir done: Stored: %d Dupllicates: %d Partial: %d Errors: %d in %s" %(stored, dups, partial, errs, time() - starttime) def load_clicked(self, widget, data=None): self.inputFile=self.chooser.get_filename() diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 9ff475e6..4c555a28 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -113,10 +113,21 @@ class Importer: #Run full import on filelist def runImport(self): fpdb_simple.prepareBulkImport(self.fdb) + totstored = 0 + totdups = 0 + totpartial = 0 + toterrors = 0 + tottime = 0 for file in self.filelist: - self.import_file_dict(file, self.filelist[file][0], self.filelist[file][1]) + (stored, duplicates, partial, errors, ttime) = self.import_file_dict(file, self.filelist[file][0], self.filelist[file][1]) + totstored += stored + totdups += duplicates + totpartial += partial + toterrors += errors + tottime += ttime fpdb_simple.afterBulkImport(self.fdb) fpdb_simple.analyzeDB(self.fdb) + return (totstored, totdups, totpartial, toterrors, tottime) #Run import on updated files, then store latest update time. def runUpdated(self): @@ -143,10 +154,11 @@ class Importer: # This is now an internal function that should not be called directly. def import_file_dict(self, file, site, filter): if(filter == "passthrough"): - self.import_fpdb_file(file, site) + (stored, duplicates, partial, errors, ttime) = self.import_fpdb_file(file, site) else: #Load filter, and run filtered file though main importer - self.import_fpdb_file(file, site) + (stored, duplicates, partial, errors, ttime) = self.import_fpdb_file(file, site) + return (stored, duplicates, partial, errors, ttime) def import_fpdb_file(self, file, site): @@ -276,7 +288,8 @@ class Importer: print "Total stored:", stored, "duplicates:", duplicates, "partial/damaged:", partial, "errors:", errors, " time:", (time() - starttime) sys.exit(0) startpos=endpos - print "Total stored:", stored, "duplicates:", duplicates, "partial:", partial, "errors:", errors, " time:", (time() - starttime) + ttime = time() - starttime + print "Total stored:", stored, "duplicates:", duplicates, "partial:", partial, "errors:", errors, " time:", ttime if stored==0: if duplicates>0: @@ -290,7 +303,7 @@ class Importer: #todo: this will cause return of an unstored hand number if the last hand was error or partial self.fdb.db.commit() self.handsId=handsId - return handsId + return (stored, duplicates, partial, errors, ttime) def parseTourneyHistory(self): print "Tourney history parser stub" From 8cf705240c545c7d7f876ce4d63a12d0019f0a7f Mon Sep 17 00:00:00 2001 From: Worros Date: Sat, 17 Jan 2009 02:41:18 +0900 Subject: [PATCH 3/4] Change bulk import output slightly --- pyfpdb/GuiBulkImport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/GuiBulkImport.py b/pyfpdb/GuiBulkImport.py index 7aa33527..250bd313 100644 --- a/pyfpdb/GuiBulkImport.py +++ b/pyfpdb/GuiBulkImport.py @@ -32,7 +32,7 @@ class GuiBulkImport (threading.Thread): self.importer.setCallHud(False) starttime = time() (stored, dups, partial, errs, ttime) = self.importer.runImport() - print "GuiBulkImport.import_dir done: Stored: %d Dupllicates: %d Partial: %d Errors: %d in %s" %(stored, dups, partial, errs, time() - starttime) + print "GuiBulkImport.import_dir done: Stored: %d Dupllicates: %d Partial: %d Errors: %d in %s seconds - %d/sec" %(stored, dups, partial, errs, ttime, (stored/ttime)) def load_clicked(self, widget, data=None): self.inputFile=self.chooser.get_filename() From b2c135ee12a70b12cf49b9e17dfc9da466691bb1 Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 19 Jan 2009 11:32:34 +0900 Subject: [PATCH 4/4] Possible fix for problem Eric is reporting in importer --- pyfpdb/fpdb_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 4c555a28..7b87dbc2 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -182,7 +182,7 @@ class Importer: firstline = self.lines[0] except: # print "import_fpdb_file", file, site, self.lines, "\n" - return + return (0,0,0,1,0) if firstline.find("Tournament Summary")!=-1: print "TODO: implement importing tournament summaries"