X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=functions.py;h=4479eaf0d9906801bdc0d39f9c1f510892110ca6;hp=3922fd50c081279420adc4b45c9f052e0ae92685;hb=781cbc21fec22eccd64bf7706aac10a0e2757814;hpb=8fa853a25a9d62b1446e1bc543e5a3a4d0e03dcf diff --git a/functions.py b/functions.py index 3922fd5..4479eaf 100644 --- a/functions.py +++ b/functions.py @@ -10,6 +10,7 @@ from ConfigParser import ConfigParser from subprocess import Popen, call, PIPE import thread import os +import ast import sys import csv import platform @@ -20,7 +21,6 @@ import datetime from copy import copy from shutil import copyfile #from dialog import BugDialog -print 'TEST LOGGING funcion' import logging log = logging.getLogger('iramuteq') @@ -71,20 +71,39 @@ class History : sections = self.corpora.keys() + self.analyses.keys() parametres = [self.corpora[key] for key in self.corpora.keys()] + [self.analyses[key] for key in self.analyses.keys()] self.conf.makeoptions(sections, parametres) + log.info('write history') def add(self, analyse) : - if 'corpus' in analyse : - if analyse['corpus'] in self.corpora : - if 'analyses' in self.history[analyse['corpus']] : - self.history[analyse['corpus']]['analyses'].append(analyse) + tosave = {'uuid' : analyse['uuid'], 'ira': analyse['ira'], 'type' : analyse['type']} + if analyse.get('corpus', False) : + tosave['corpus'] = analyse['corpus'] + tosave['name'] = analyse['name'] + acorpus_uuid = analyse['corpus'] + if acorpus_uuid in self.corpora : + if 'analyses' in self.history[acorpus_uuid] : + self.history[acorpus_uuid]['analyses'].append(tosave) else : - self.history[analyse['corpus']]['analyses'] = [analyse] - self.analyses[analyse['uuid']] = analyse + self.history[acorpus_uuid]['analyses'] = [tosave] + self.analyses[analyse['uuid']] = tosave else : - self.analyses[analyse['uuid']] = analyse + self.analyses[analyse['uuid']] = tosave elif 'corpus_name' in analyse : - self.history[analyse['uuid']] = analyse - self.corpora[analyse['uuid']] = analyse + tosave['corpus_name'] = analyse['corpus_name'] + self.history[analyse['uuid']] = tosave + self.corpora[analyse['uuid']] = tosave + self.write() + + def delete(self, uuid, corpus = False) : + if corpus : + del self.corpora[uuid] + self.conf.conf.remove_section(uuid) + for analyse in self.history[uuid].get('analyses', [False]) : + if analyse : + del self.analyses[analyse['uuid']] + self.conf.conf.remove_section(analyse['uuid']) + else : + del self.analyses[uuid] + self.conf.conf.remove_section(uuid) self.write() def addtab(self, analyse) : @@ -92,6 +111,9 @@ class History : def rmtab(self, analyse) : del self.opened[analyse['uuid']] + + def __str__(self) : + return str(self.history) class DoConf : def __init__(self, configfile=None, diff = None, parametres = None) : @@ -116,6 +138,12 @@ class DoConf : for option in self.conf.options(section) : if self.conf.get(section, option).isdigit() : parametres[option] = int(self.conf.get(section, option)) + elif self.conf.get(section, option) == 'False' : + parametres[option] = False + elif self.conf.get(section, option) == 'True' : + parametres[option] = True + elif self.conf.get(section, option).startswith('(') and self.conf.get(section, option).endswith(')') : + parametres[option] = ast.literal_eval(self.conf.get(section, option)) else : parametres[option] = self.conf.get(section, option) if 'type' not in parametres : @@ -131,13 +159,20 @@ class DoConf : self.conf.set(section, option, `parametres[i][option]`) elif isinstance(parametres[i][option], basestring) : self.conf.set(section, option, parametres[i][option].encode('utf8')) + elif isinstance(parametres[i][option], wx.Colour) : + self.conf.set(section, option, str(parametres[i][option])) + elif option == 'analyses' : + pass + else : + self.conf.set(section, option, `parametres[i][option]`) if outfile is None : outfile = self.configfile with codecs.open(outfile, 'w', 'utf8') as f : self.conf.write(f) def totext(self, parametres) : - txt = ['Corpus'] + #txt = ['Corpus'] + txt = [] for val in parametres : if isinstance(parametres[val], int) : txt.append(' \t\t: '.join([val, `parametres[val]`])) @@ -282,8 +317,8 @@ def formatExceptionInfo(maxTBlevel=5): cla, exc, trbk = sys.exc_info() excName = cla.__name__ try: - excArgs = exc.__dict__["args"] - except KeyError: + excArgs = exc.args[0] + except : excArgs = "" excTb = traceback.format_tb(trbk, maxTBlevel) return (excName, excArgs, excTb) @@ -296,7 +331,7 @@ def decoupercharact(chaine, longueur, longueurOptimale, separateurs = None) : Si on trouve un '$', c'est fini. Sinon, on cherche le meilleur candidat. C'est-à-dire le rapport poids/distance le plus important. """ - separateurs = [[u'.', 60.0], [u'?', 60.0], [u'!', 60.0], [u'£', 60], [u':', 50.0], [u';', 40.0], [u',', 10.0], [u' ', 0.1]] + separateurs = [[u'.', 60.0], [u'?', 60.0], [u'!', 60.0], [u'£$£', 60], [u':', 50.0], [u';', 40.0], [u',', 10.0], [u' ', 0.1]] trouve = False # si on a trouvé un bon séparateur iDecoupe = 0 # indice du caractere ou il faut decouper @@ -346,28 +381,38 @@ def decoupercharact(chaine, longueur, longueurOptimale, separateurs = None) : # si on a rien trouvé return False, chaine.split(), '' -def BugReport(parent): +def BugReport(parent, error = None): for ch in parent.GetChildren(): if "" == str(type(ch)): ch.Destroy() + excName, exc, excTb = formatExceptionInfo() + if excName == 'Exception' : + txt = 'Message :\n' + else : + txt = u' !== BUG ==! \n' + txt += u'*************************************\n' + txt += '\n'.join(excTb).replace(' ', ' ') + txt += excName + '\n' + txt += exc + dial = BugDialog(parent) - txt = u' !== BUG ==! \n' - txt += u'*************************************\n' - for line in formatExceptionInfo(): - if type(line) == type([]): - for don in line: - txt += don.replace(' ', ' ') - else: - txt += line + '\n' + #for line in formatExceptionInfo(): + # if type(line) == type([]): + # for don in line: + # txt += don.replace(' ', ' ') + # else: + # txt += line + '\n' if 'Rerror' in dir(parent) : txt += parent.Rerror parent.Rerror = '' + #if error is not None : + # txt += '\n%s\n' %error print formatExceptionInfo() log.error(txt) dial.text_ctrl_1.write(txt) dial.CenterOnParent() dial.ShowModal() - raise NameError('Bug') + #raise Exception('Bug') def PlaySound(parent): if parent.pref.getboolean('iramuteq', 'sound') : @@ -480,7 +525,7 @@ def check_Rresult(parent, pid) : except : BugReport(parent) else : - if pid !=0 : + if pid != 0 : try : raise Exception(u'Erreur R') except :