-
Notifications
You must be signed in to change notification settings - Fork 228
/
utils.py
1195 lines (1052 loc) · 41.8 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/python
# -*- coding: utf8 -*-
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation; version 3.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
"Módulo con funciones auxiliares para el manejo de errores y temas comunes"
from __future__ import division
from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
from builtins import chr
from builtins import str
from past.builtins import basestring
from past.utils import old_div
from builtins import object
__author__ = "Mariano Reingart <reingart@gmail.com>"
__copyright__ = "Copyright (C) 2013-2021 Mariano Reingart"
__license__ = "LGPL-3.0-or-later"
import csv
import datetime
import functools
import inspect
import locale
import socket
import sys
import os
import stat
import time
import traceback
import warnings
from io import StringIO, BytesIO
from decimal import Decimal
from urllib.parse import urlencode
from urllib.parse import urlparse
import unicodedata
import mimetypes
try:
from mimetools import choose_boundary
except ImportError:
from email.generator import _make_boundary as choose_boundary
from html.parser import HTMLParser
from http.cookies import SimpleCookie
try:
from ConfigParser import SafeConfigParser
except ImportError:
# python3 workaround to read config files not in utf8
from configparser import ConfigParser as SafeConfigParser
import codecs
SafeConfigParser.read = lambda self, filename: self.read_file(
codecs.open(filename, "r", "latin1")
)
from pysimplesoap.client import (
SimpleXMLElement,
SoapClient,
SoapFault,
parse_proxy,
set_http_wrapper,
)
try:
import json
except ImportError:
try:
import simplejson as json
except:
print("para soporte de JSON debe instalar simplejson")
json = None
try:
import httplib2
# corregir temas de negociacion de SSL en algunas versiones de ubuntu:
from pysimplesoap.client import SoapClient
import platform
monkey_patch = sys.version_info < (3, ) or httplib2._build_ssl_context.__module__ != "httplib2"
needs_patch = platform.system() in ["Linux", "Darwin"] or sys.version_info > (3, 10)
if needs_patch and not monkey_patch:
_build_ssl_context = httplib2._build_ssl_context
def _build_ssl_context_new(*args, **kwargs):
context = _build_ssl_context(*args, **kwargs)
# fix ssl.SSLError: [SSL: DH_KEY_TOO_SMALL] dh key too small
# alternative: context.set_ciphers("DEFAULT@SECLEVEL=1")
context.set_ciphers("AES128-SHA")
return context
httplib2._build_ssl_context = _build_ssl_context_new
except ImportError as mnfe:
if "httplib2" in str(mnfe):
print("para soporte de WebClient debe instalar httplib2")
DEBUG = False
# Funciones para manejo de errores:
def exception_info(current_filename=None, index=-1):
"Analizar el traceback y armar un dict con la info amigable user-friendly"
# guardo el traceback original (por si hay una excepción):
info = sys.exc_info() # exc_type, exc_value, exc_traceback
# importante: no usar unpacking porque puede causar memory leak
if not current_filename:
# genero un call stack para ver quien me llamó y limitar la traza:
# advertencia: esto es necesario ya que en py2exe no tengo __file__
try:
raise ZeroDivisionError
except ZeroDivisionError:
f = sys.exc_info()[2].tb_frame.f_back
current_filename = os.path.normpath(os.path.abspath(f.f_code.co_filename))
# extraer la última traza del archivo solicitado:
# (útil para no alargar demasiado la traza con lineas de las librerías)
ret = {"filename": "", "lineno": 0, "function_name": "", "code": ""}
try:
for (filename, lineno, fn, text) in traceback.extract_tb(info[2]):
if os.path.normpath(os.path.abspath(filename)) == current_filename:
ret = {
"filename": filename,
"lineno": lineno,
"function_name": fn,
"code": text,
}
except Exception as e:
pass
# obtengo el mensaje de excepcion tal cual lo formatea python:
# (para evitar errores de encoding)
try:
ret["msg"] = traceback.format_exception_only(*info[0:2])[0]
except:
ret["msg"] = "<no disponible>"
# obtener el nombre de la excepcion (ej. "NameError")
try:
ret["name"] = info[0].__name__
except:
ret["name"] = "Exception"
# obtener la traza formateada como string:
try:
tb = traceback.format_exception(*info)
ret["tb"] = "".join(tb)
except:
ret["tb"] = ""
return ret
def inicializar_y_capturar_excepciones(func):
"Decorador para inicializar y capturar errores (version para webservices)"
@functools.wraps(func)
def capturar_errores_wrapper(self, *args, **kwargs):
try:
# inicializo (limpio variables)
self.Errores = [] # listas de str para lenguajes legados
self.Observaciones = []
self.errores = [] # listas de dict para usar en python
self.observaciones = []
self.Eventos = []
self.Traceback = self.Excepcion = ""
self.ErrCode = self.ErrMsg = self.Obs = ""
# limpio variables especificas del webservice:
self.inicializar()
# actualizo los parámetros
kwargs.update(self.params_in)
# limpio los parámetros
self.params_in = {}
self.params_out = {}
# llamo a la función (con reintentos)
retry = self.reintentos + 1
while retry:
try:
retry -= 1
return func(self, *args, **kwargs)
except socket.error as e:
if e[0] not in (10054, 10053):
# solo reintentar si el error es de conexión
# (10054, 'Connection reset by peer')
# (10053, 'Software caused connection abort')
raise
else:
if DEBUG:
print(e, "Reintentando...")
self.log(exception_info().get("msg", ""))
except SoapFault as e:
# guardo destalle de la excepción SOAP
self.ErrCode = str(e.faultcode)
self.ErrMsg = str(e.faultstring)
self.Excepcion = u"%s: %s" % (
e.faultcode,
e.faultstring,
)
if self.LanzarExcepciones:
raise
except Exception as e:
ex = exception_info()
self.Traceback = ex.get("tb", "")
try:
self.Excepcion = ex.get("msg", "")
except:
self.Excepcion = u"<no disponible>"
if self.LanzarExcepciones:
raise
else:
self.ErrMsg = self.Excepcion
finally:
# guardo datos de depuración
if self.client:
self.XmlRequest = self.client.xml_request
self.XmlResponse = self.client.xml_response
return capturar_errores_wrapper
def inicializar_y_capturar_excepciones_simple(func):
"Decorador para inicializar y capturar errores (versión básica indep.)"
@functools.wraps(func)
def capturar_errores_wrapper(self, *args, **kwargs):
self.inicializar()
try:
return func(self, *args, **kwargs)
except:
ex = exception_info()
self.Excepcion = ex["name"]
self.Traceback = ex["msg"]
if self.LanzarExcepciones:
raise
else:
return False
return capturar_errores_wrapper
class BaseWS(object):
"Infraestructura basica para interfaces webservices de AFIP"
def __init__(self, reintentos=1):
self.reintentos = reintentos
self.xml = self.client = self.Log = None
self.params_in = {}
self.inicializar()
self.Token = self.Sign = ""
self.LanzarExcepciones = True
def inicializar(self):
self.Excepcion = self.Traceback = ""
self.XmlRequest = self.XmlResponse = ""
def Conectar(
self,
cache=None,
wsdl=None,
proxy="",
wrapper=None,
cacert=None,
timeout=30,
soap_server=None,
):
"Conectar cliente soap del web service"
try:
# analizar transporte y servidor proxy:
if wrapper:
Http = set_http_wrapper(wrapper)
self.Version = self.Version + " " + Http._wrapper_version
if isinstance(proxy, dict):
proxy_dict = proxy
else:
proxy_dict = parse_proxy(proxy)
self.log("Proxy Dict: %s" % str(proxy_dict))
if self.HOMO or not wsdl:
wsdl = self.WSDL
# agregar sufijo para descargar descripción del servicio ?WSDL o ?wsdl
if not wsdl.endswith(self.WSDL[-5:]) and wsdl.startswith("http"):
wsdl += self.WSDL[-5:]
if not cache or self.HOMO:
# use 'cache' from installation base directory
cache = os.path.join(self.InstallDir, "cache")
# deshabilitar verificación cert. servidor si es nulo falso vacio
if not cacert:
cacert = None
elif cacert is True or cacert.lower() == "default":
# usar certificados predeterminados que vienen en la biblioteca
try:
import certifi
cacert = certifi.where()
except ImportError:
cacert = os.path.join(httplib2.__path__[0], "cacerts.txt")
elif cacert.startswith("-----BEGIN CERTIFICATE-----"):
pass
else:
if not os.path.exists(cacert):
self.log("Buscando CACERT en conf...")
cacert = os.path.join(
self.InstallDir, "conf", os.path.basename(cacert)
)
if cacert and not os.path.exists(cacert):
self.log("No se encuentra CACERT: %s" % str(cacert))
warnings.warn("No se encuentra CACERT: %s" % str(cacert))
cacert = None # wrong version, certificates not found...
raise RuntimeError("Error de configuracion CACERT ver DebugLog")
return False
if cacert and not os.path.isabs(cacert):
self.log("Fixing CACERT: %s" % cacert)
cacert = os.path.abspath(cacert)
self.log("Fixed CACERT: %s" % cacert)
## cacert = "/etc/ssl/certs/ca-certificates.crt"
self.log(
"Conectando a wsdl=%s cache=%s proxy=%s cacert=%s"
% (wsdl, cache, proxy_dict, cacert)
)
# analizar espacio de nombres (axis vs .net):
ns = "ser" if self.WSDL[-5:] == "?wsdl" else None
self.client = SoapClient(
wsdl=wsdl,
cache=cache,
proxy=proxy_dict,
cacert=cacert,
timeout=timeout,
ns=ns,
soap_server=soap_server,
trace="--trace" in sys.argv,
)
self.cache = cache # utilizado por WSLPG y WSAA (Ticket de Acceso)
self.wsdl = wsdl # utilizado por TrazaMed (para corregir el location)
# corrijo ubicación del servidor (puerto http 80 en el WSDL AFIP)
for service in list(self.client.services.values()):
for port in list(service["ports"].values()):
location = port["location"]
if location and location.startswith("http://"):
warnings.warn("Corrigiendo WSDL ... %s" % location)
location = location.replace("http://", "https://").replace(
":80", ":443"
)
# usar servidor real si en el WSDL figura "localhost"
localhost = "https://localhost:"
if location.startswith(localhost):
url = urlparse(wsdl)
location = location.replace("localhost", url.hostname)
location = location.replace(":9051", ":443")
port["location"] = location
return True
except:
ex = traceback.format_exception(
sys.exc_info()[0], sys.exc_info()[1], sys.exc_info()[2]
)
self.Traceback = "".join(ex)
try:
self.Excepcion = traceback.format_exception_only(
sys.exc_info()[0], sys.exc_info()[1]
)[0]
except:
self.Excepcion = u"<no disponible>"
if self.LanzarExcepciones:
raise
return False
def log(self, msg):
"Dejar mensaje en bitacora de depuración (método interno)"
if not isinstance(msg, str):
msg = str(msg, "utf8", "ignore")
if not self.Log:
self.Log = StringIO()
self.Log.write(msg)
self.Log.write(u"\n\r")
if DEBUG:
warnings.warn(msg)
def DebugLog(self):
"Devolver y limpiar la bitácora de depuración"
if self.Log:
msg = self.Log.getvalue()
# limpiar log
self.Log.close()
self.Log = None
else:
msg = u""
return msg
def LoadTestXML(self, xml):
"Cargar un archivo de pruebas con la respuesta simulada (depuración)"
# si el parametro es un nombre de archivo, cargar el contenido:
if os.path.exists(xml):
xml = open(xml).read()
class DummyHTTP(object):
def __init__(self, xml_response):
self.xml_response = xml_response
def request(self, location, method, body, headers):
return {}, self.xml_response
self.client.http = DummyHTTP(xml)
@property
def xml_request(self):
return self.XmlRequest
@property
def xml_response(self):
return self.XmlResponse
def AnalizarXml(self, xml=""):
"Analiza un mensaje XML (por defecto el ticket de acceso)"
try:
if not xml or xml == "XmlResponse":
xml = self.XmlResponse
elif xml == "XmlRequest":
xml = self.XmlRequest
self.xml = SimpleXMLElement(xml)
return True
except Exception as e:
self.Excepcion = traceback.format_exception_only(
sys.exc_info()[0], sys.exc_info()[1]
)[0]
return False
def ObtenerTagXml(self, *tags):
"Busca en el Xml analizado y devuelve el tag solicitado"
# convierto el xml a un objeto
try:
if self.xml:
xml = self.xml
# por cada tag, lo busco segun su nombre o posición
for tag in tags:
xml = xml(tag) # atajo a getitem y getattr
# vuelvo a convertir a string el objeto xml encontrado
return str(xml)
except Exception as e:
self.Excepcion = traceback.format_exception_only(
sys.exc_info()[0], sys.exc_info()[1]
)[0]
def SetParametros(self, cuit, token, sign):
"Establece un parámetro general"
self.Token = token
self.Sign = sign
self.Cuit = cuit
return True
@inicializar_y_capturar_excepciones
def SetTicketAcceso(self, ta_string):
"Establecer el token y sign desde un ticket de acceso XML"
if ta_string:
ta = SimpleXMLElement(ta_string)
self.Token = str(ta.credentials.token)
self.Sign = str(ta.credentials.sign)
return True
else:
raise RuntimeError("Ticket de Acceso vacio!")
def SetParametro(self, clave, valor):
"Establece un parámetro de entrada (a usarse en llamada posterior)"
# útil para parámetros de entrada (por ej. VFP9 no soporta más de 27)
self.params_in[str(clave)] = valor
return True
def GetParametro(self, clave, clave1=None, clave2=None, clave3=None, clave4=None):
"Devuelve un parámetro de salida (establecido por llamada anterior)"
# útil para parámetros de salida (por ej. campos de TransaccionPlainWS)
valor = self.params_out.get(clave)
# busco datos "anidados" (listas / diccionarios)
for clave in (clave1, clave2, clave3, clave4):
if clave is not None and valor is not None:
if isinstance(clave1, basestring) and clave.isdigit():
clave = int(clave)
try:
valor = valor[clave]
except (KeyError, IndexError):
valor = None
if valor is not None:
if isinstance(valor, basestring):
return valor
else:
return str(valor)
else:
return ""
def LeerError(self):
"Recorro los errores devueltos y devuelvo el primero si existe"
if self.Errores:
# extraigo el primer item
er = self.Errores.pop(0)
return er
else:
return ""
class WebClient(object):
"Minimal webservice client to do POST request with multipart encoded FORM data"
def __init__(
self,
location,
enctype="multipart/form-data",
trace=False,
cacert=None,
timeout=30,
proxy=None,
):
kwargs = {}
kwargs["timeout"] = timeout
kwargs["disable_ssl_certificate_validation"] = cacert is None
kwargs["ca_certs"] = cacert
if proxy:
if isinstance(proxy, dict):
proxy_dict = proxy
else:
proxy_dict = parse_proxy(proxy)
print("using proxy", proxy_dict)
import socks
kwargs["proxy_info"] = httplib2.ProxyInfo(
proxy_type=socks.PROXY_TYPE_HTTP, **proxy_dict
)
self.http = httplib2.Http(**kwargs)
self.trace = trace
self.location = location
self.enctype = enctype
self.cookies = None
self.method = "POST"
self.referer = None
def multipart_encode(self, vars):
"Enconde form data (vars dict)"
boundary = choose_boundary()
if sys.version_info[0] < 3:
buf = BytesIO()
def _is_string(val):
return (not isinstance(val, file))
else:
buf = StringIO()
def _is_string(val):
return isinstance(val, str)
for key, value in list(vars.items()):
if _is_string(value):
buf.write("--%s\r\n" % boundary)
buf.write('Content-Disposition: form-data; name="%s"' % key)
buf.write("\r\n\r\n" + value + "\r\n")
else:
fd = value
file_size = os.fstat(fd.fileno())[stat.ST_SIZE]
filename = os.path.basename(fd.name)
contenttype = (
mimetypes.guess_type(filename)[0] or "application/octet-stream"
)
buf.write("--%s\r\n" % boundary)
buf.write(
'Content-Disposition: form-data; name="%s"; filename="%s"\r\n'
% (key, filename)
)
buf.write("Content-Type: %s\r\n" % contenttype)
# buffer += 'Content-Length: %s\r\n' % file_size
fd.seek(0)
buf.write("\r\n" + fd.read() + "\r\n")
buf.write("--" + boundary + "--\r\n\r\n")
buf = buf.getvalue()
return boundary, buf
def __call__(self, *args, **vars):
"Perform a GET/POST request and return the response"
location = self.location
# extend the base URI with additional components
if args:
location += "/".join(args)
if self.method == "GET":
location += "?%s" % urlencode(vars)
# prepare the request content suitable to be sent to the server:
if self.enctype == "multipart/form-data":
boundary, body = self.multipart_encode(vars)
content_type = "%s; boundary=%s" % (self.enctype, boundary)
elif self.enctype == "application/x-www-form-urlencoded":
body = urlencode(vars)
content_type = self.enctype
else:
body = None
# add headers according method, cookies, etc.:
headers = {}
if self.method == "POST":
headers.update(
{
"Content-type": content_type,
"Content-length": str(len(body)),
}
)
if self.cookies:
headers["Cookie"] = self.cookies.output(attrs=(), header="", sep=";")
if self.referer:
headers["Referer"] = self.referer
if self.trace:
print("-" * 80)
print("%s %s" % (self.method, location))
print("\n".join(["%s: %s" % (k, v) for k, v in list(headers.items())]))
print("\n%s" % body)
# send the request to the server and store the result:
response, content = self.http.request(
location, self.method, body=body, headers=headers
)
self.response = response
self.content = content
if self.trace:
print()
print("\n".join(["%s: %s" % (k, v) for k, v in list(response.items())]))
print(content)
print("=" * 80)
# Parse and store the cookies (if any)
if "set-cookie" in self.response:
if not self.cookies:
self.cookies = SimpleCookie()
self.cookies.load(self.response["set-cookie"])
return content
class AttrDict(dict):
"Custom Dict to hold attributes and items"
class HTMLFormParser(HTMLParser):
"Convert HTML form into custom named-tuple dicts"
def __init__(self, *args, **kwargs):
HTMLParser.__init__(self, *args, **kwargs)
self.forms = {}
def handle_starttag(self, tag, attrs):
attrs = dict(attrs)
if "name" in attrs:
name = attrs["name"]
elif "id" in attrs:
name = attrs["id"]
else:
name = None
if tag == "form":
form = AttrDict()
for k, v in list(attrs.items()):
setattr(form, "_%s" % k, v)
self.form = self.forms[name or len(self.forms)] = form
elif tag == "input":
self.form[name or len(self.form)] = attrs.get("value")
# Funciones para manejo de archivos de texto de campos de ancho fijo:
def leer(linea, formato, expandir_fechas=False):
"Analiza una linea de texto dado un formato, devuelve un diccionario"
dic = {}
comienzo = 1
for fmt in formato:
clave, longitud, tipo = fmt[0:3]
dec = (len(fmt) > 3 and isinstance(fmt[3], int)) and fmt[3] or 2
valor = linea[comienzo - 1 : comienzo - 1 + longitud].strip()
try:
if chr(8) in valor or chr(127) in valor or chr(255) in valor:
valor = None # nulo
elif (valor == "" or valor == "NULL") and tipo in (N, I):
valor = None
elif tipo == N:
if valor:
valor = int(valor)
else:
valor = 0
elif tipo == I:
if valor:
try:
if "." in valor:
valor = float(valor)
else:
valor = valor.strip(" ")
if valor[0] == "-":
sign = -1
valor = valor[1:]
else:
sign = +1
valor = sign * float(
("%%s.%%0%sd" % dec)
% (int(valor[:-dec] or "0"), int(valor[-dec:] or "0"))
)
except ValueError:
raise ValueError("Campo invalido: %s = '%s'" % (clave, valor))
else:
valor = 0.00
elif expandir_fechas and clave.lower().startswith("fec") and longitud <= 8:
if valor:
valor = "%s-%s-%s" % (valor[0:4], valor[4:6], valor[6:8])
else:
valor = None
else:
if isinstance(valor, bytes):
valor = valor.decode("ascii", "ignore")
# campos string completos con ~ son convertidos a nulo:
if valor and valor == "~" * len(valor):
valor = None
if not valor and clave in dic and len(linea) <= comienzo:
pass # ignorar - compatibilidad hacia atrás (cambios tamaño)
else:
dic[clave] = valor
comienzo += longitud
except Exception as e:
raise ValueError(
"Error al leer campo %s pos %s val '%s': %s"
% (clave, comienzo, valor, str(e))
)
return dic
def escribir(dic, formato, contraer_fechas=False):
"Genera una cadena dado un formato y un diccionario de claves/valores"
linea = " " * sum([fmt[1] for fmt in formato])
comienzo = 1
for fmt in formato:
clave, longitud, tipo = fmt[0:3]
try:
dec = (len(fmt) > 3 and isinstance(fmt[3], int)) and fmt[3] or 2
if clave.capitalize() in dic:
clave = clave.capitalize()
s = dic.get(clave, "")
if sys.version_info[0] < 3:
if isinstance(s, str):
s = s.encode("latin1")
if s is None:
valor = chr(127)
tipo = None
else:
valor = str(s)
# reemplazo saltos de linea por tabulaci{on vertical
valor = valor.replace("\n\r", "\v").replace("\n", "\v").replace("\r", "\v")
if tipo == N and valor and valor != "NULL":
valor = ("%%0%dd" % longitud) % int(valor)
elif tipo == I and valor:
valor = ("%%0%d.%df" % (longitud + 1, dec) % float(valor)).replace(
".", ""
)
elif (
contraer_fechas
and clave.lower().startswith("fec")
and longitud <= 8
and valor
):
valor = valor.replace("-", "")
else:
valor = ("%%-0%ds" % longitud) % valor
linea = linea[: comienzo - 1] + valor + linea[comienzo - 1 + longitud :]
comienzo += longitud
except Exception as e:
warnings.warn(
"Error al escribir campo %s pos %s val '%s': %s"
% (clave, comienzo, valor, str(e))
)
return linea + "\n"
# Tipos de datos (código RG1361)
N = "Numerico" # 2
A = "Alfanumerico" # 3
I = "Importe" # 4
C = A # 1 (caracter alfabetico)
B = A # 9 (blanco)
# Funciones para manejo de archivos de texto de ancho fijo
def formato_txt(formatos, registros):
print("Formato:")
for tipo_reg, estructura in sorted(registros.items()):
formato = formatos[estructura]
comienzo = 1
print("=== %s ===" % estructura)
for fmt in formato:
clave, longitud, tipo = fmt[0:3]
dec = len(fmt) > 3 and fmt[3] or (tipo == "I" and "2" or "")
f = ["Campo: %-20s", "Posición: %3d", "Longitud: %4d", "Tipo: %s"]
v = [clave, comienzo, longitud, tipo]
if dec:
f.append("Decimales: %s")
v.append(dec)
if clave == "tipo_reg":
f.append("Valor: %s")
v.append(tipo_reg)
print(" *", " ".join(f) % tuple(v))
comienzo += longitud
def leer_txt(formatos, registros, nombre_archivo):
ret = []
with open(nombre_archivo, "r") as archivo:
for linea in archivo:
tipo_reg = str(linea[0])
estructura = registros[tipo_reg]
formato = formatos[estructura]
d = leer(linea, formato)
if estructura == "encabezado":
ret.append(d)
dic = d
else:
dic.setdefault(estructura, []).append(d)
return ret
def grabar_txt(formatos, registros, nombre_archivo, dicts, agrega=False):
with open(nombre_archivo, agrega and "a" or "w") as archivo:
for dic in dicts:
encabezado = formatos["encabezado"]
dic["tipo_reg"] = "0"
archivo.write(escribir(dic, encabezado))
for tipo_reg, estructura in sorted(registros.items()):
for it in dic.get(estructura, {}):
for d in ([it] if isinstance(it, dict) else it):
d["tipo_reg"] = tipo_reg
archivo.write(escribir(d, formatos[estructura]))
# Funciones para manejo de Panillas CSV y Tablas
def generar_csv(filas, formato, fn="planilla.csv", delimiter=";"):
"Dado una lista de registros escribe"
ext = os.path.splitext(fn)[1].lower()
if ext == ".csv":
with open(fn, "wb") as f:
fieldnames = [fmt[0] for fmt in formato]
csv_writer = csv.DictWriter(f, fieldnames, dialect="excel", delimiter=";")
csv_writer.writeheader()
for fila in filas:
csv_writer.writerow(fila)
def tabular(filas, formato):
from tabulate import tabulate
columnas = [fmt[0] for fmt in formato if fmt[0] not in ("tipo_reg",)]
tabla = [[fila.get(col) for col in columnas] for fila in filas]
return tabulate(tabla, columnas, floatfmt=".2f")
# Funciones para manejo de tablas en DBF
def guardar_dbf(formatos, agrega=False, conf_dbf=None):
import dbf
if DEBUG:
print("Creando DBF...")
tablas = {}
for nombre, formato, l in formatos:
campos = {}
claves = []
claves_map = {}
filename = conf_dbf.get(nombre.lower(), "%s.dbf" % nombre[:8])
if DEBUG:
print("=== tabla %s (%s) ===" % (nombre, filename))
for fmt in formato:
clave, longitud, tipo = fmt[0:3]
dec = len(fmt) > 3 and fmt[3] or (tipo == "I" and "2" or "")
if longitud > 250:
tipo = "M" # memo!
elif tipo == A:
tipo = "C(%s)" % longitud
elif tipo == N:
if longitud >= 18:
longitud = 17
tipo = "N(%s,0)" % longitud
elif tipo == I:
if not dec:
dec = 0
else:
dec = int(dec)
if longitud >= 18:
longitud = 17
if longitud - 2 <= dec:
longitud += longitud - dec + 1 # ajusto long. decimales
tipo = "N(%s,%s)" % (longitud, dec)
# unificar nombre de campos duplicados por compatibilidad hacia atrás:
clave_dbf = claves_map.get(clave, dar_nombre_campo_dbf(clave, claves))
if not clave in claves_map:
claves_map[clave] = clave_dbf
claves.append(clave_dbf)
campo = "%s %s" % (clave_dbf, tipo)
if DEBUG:
print(" * %s : %s" % (campo, clave))
campos[clave_dbf] = campo
if DEBUG:
print("leyendo tabla", nombre, filename)
if agrega:
tabla = dbf.Table(filename, [campos[clave] for clave in claves])
else:
tabla = dbf.Table(filename)
for d in l:
# si no es un diccionario, ignorar ya que seguramente va en otra
# tabla (por ej. retenciones tiene su propio formato)
if isinstance(d, basestring):
continue
r = {}
claves = []
claves_map = {}
for fmt in formato:
clave, longitud, tipo = fmt[0:3]
if agrega or clave in d:
v = d.get(clave, None)
if DEBUG:
print(clave, v, tipo)
if v is None and tipo == A:
v = ""
if (v is None or v == "") and tipo in (I, N):
v = 0
if tipo == A:
if isinstance(v, str):
v = v.encode("ascii", "replace")
if isinstance(v, str):
v = v.decode("ascii", "replace").encode("ascii", "replace")
if not isinstance(v, basestring):
v = str(v)
if len(v) > longitud:
v = v[:longitud] # recorto el string para que quepa
# unificar nombre de campos duplicados por compatibilidad hacia atrás:
clave_dbf = claves_map.get(
clave, dar_nombre_campo_dbf(clave, claves)
)
if not clave in claves_map:
claves_map[clave] = clave_dbf
claves.append(clave_dbf)
r[clave_dbf] = v
# agregar si lo solicitaron o si la tabla no tiene registros:
if agrega or not tabla:
if DEBUG:
print("Agregando !!!", r)
registro = tabla.append(r)
else:
if DEBUG:
print("Actualizando ", r)
reg = tabla.current()
for k, v in list(reg.scatter_fields().items()):
if k not in r:
r[k] = v
if DEBUG:
print("Actualizando ", r)
reg.write_record(**r)
# mover de registro para no actualizar siempre el primero:
if not tabla.eof() and len(l) > 1:
if DEBUG:
print("Moviendo al próximo registro ", tabla.record_number)
next(tabla)
tabla.close()
def leer_dbf(formatos, conf_dbf):
import dbf
if DEBUG:
print("Leyendo DBF...")
for nombre, formato, ld in formatos:
filename = conf_dbf.get(nombre.lower(), "%s.dbf" % nombre[:8])
if DEBUG:
print("leyendo tabla", nombre, filename)
if not os.path.exists(filename):
continue
tabla = dbf.Table(filename)
for reg in tabla:
r = {}
d = reg.scatter_fields()
if DEBUG:
print("scatter_fields", d)
claves = []
for fmt in formato:
clave, longitud, tipo = fmt[0:3]