Browse Source

Nettoyage et mise en conformité PEP 8 de sqlutils.py

Roland Haroutiounian 9 years ago
parent
commit
b774d33fae
1 changed files with 32 additions and 26 deletions
  1. 32
    26
      Database/sqlutils.py

+ 32
- 26
Database/sqlutils.py View File

@@ -9,21 +9,22 @@ from django.conf import settings
9 9
 
10 10
 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Lodel.settings")
11 11
 
12
-ENGINES = {'mysql': {
13
-                'driver': 'pymysql',
14
-                'encoding': 'utf8'
15
-            },
16
-            'postgresql': {
17
-                'driver': 'psycopg2',
18
-                'encoding': 'utf8',
19
-            },
20
-            'sqlite': {
21
-                'driver': 'pysqlite',
22
-                'encoding': 'utf8',
23
-            },
12
+ENGINES = {
13
+    'mysql': {
14
+        'driver': 'pymysql',
15
+        'encoding': 'utf8'
16
+    },
17
+    'postgresql': {
18
+        'driver': 'psycopg2',
19
+        'encoding': 'utf8',
20
+    },
21
+    'sqlite': {
22
+        'driver': 'pysqlite',
23
+        'encoding': 'utf8',
24
+    },
24 25
 }
25 26
 
26
-sqlcfg = settings.LODEL2SQLWRAPPER
27
+sql_config = settings.LODEL2SQLWRAPPER
27 28
 
28 29
 
29 30
 ## Returns an engine given dbconf name
@@ -31,20 +32,20 @@ sqlcfg = settings.LODEL2SQLWRAPPER
31 32
 # @param ename str: name of an item in django.conf.settings.LODEL2SQLWRAPPER['db']
32 33
 # @param sqlaloggin None|bool: If None leave default value, if true activate sqlalchemy logging
33 34
 # @return SqlAlchemy engine
34
-def get_engine(ename='default',sqlalogging=None):
35
+def get_engine(ename='default', sqlalogging=None):
35 36
     # Loading confs
36
-    cfg = sqlcfg['db'][ename]
37
+    cfg = sql_config['db'][ename]
37 38
 
38
-    edata = ENGINES[cfg['ENGINE']] # engine infos
39
+    edata = ENGINES[cfg['ENGINE']]  # engine infos
39 40
     conn_str = ""
40 41
 
41
-    if cfg['ENGINE'] =='sqlite':
42
+    if cfg['ENGINE'] == 'sqlite':
42 43
         #SQLite connection string
43 44
         conn_str = '%s+%s:///%s' % (cfg['ENGINE'], edata['driver'], cfg['NAME'])
44 45
     else:
45 46
         #MySQL and PostgreSQL connection string
46 47
         user = cfg['USER']
47
-        user += (':'+cfg['PASSWORD'] if 'PASSWORD' in cfg else '')
48
+        user += (':' + cfg['PASSWORD'] if 'PASSWORD' in cfg else '')
48 49
 
49 50
         if 'HOST' not in cfg:
50 51
             logger.info('Not HOST in configuration, using localhost')
@@ -52,12 +53,12 @@ def get_engine(ename='default',sqlalogging=None):
52 53
         else:
53 54
             host = cfg['HOST']
54 55
 
55
-        host += (':'+cfg['PORT'] if 'PORT' in cfg else '')
56
+        host += (':' + cfg['PORT'] if 'PORT' in cfg else '')
56 57
         conn_str = '%s+%s://' % (cfg['ENGINE'], edata['driver'])
57 58
         conn_str += '%s@%s/%s' % (user, host, cfg['NAME'])
58 59
 
59 60
     ret = sqla.create_engine(conn_str, encoding=edata['encoding'], echo=sqlalogging)
60
-    logger.debug("Getting engine :"+str(ret))
61
+    logger.debug("Getting engine :" + str(ret))
61 62
 
62 63
     return ret
63 64
 
@@ -65,6 +66,7 @@ def get_engine(ename='default',sqlalogging=None):
65 66
 def getEngine(ename='default', sqlalogging=None):
66 67
     return get_engine(ename=ename, sqlalogging=sqlalogging)
67 68
 
69
+
68 70
 ## Return a sqlalchemy.MetaData object
69 71
 # @param engine sqlalchemy.engine : A sqlalchemy engine
70 72
 # @return an sql alechemy MetaData instance bind to engine
@@ -73,18 +75,23 @@ def meta(engine):
73 75
     res.reflect(bind=engine)
74 76
     return res
75 77
 
78
+
76 79
 ## Return an sqlalchemy table given an EmComponent child class
77 80
 # @warning Except a class type not an instance
78 81
 # @param cls : An EmComponent child class
79 82
 # @return An sqlalchemy table
80 83
 # @throw TypeError if em_instance is an EmComponent  or not an EmComponent child class (or an instance)
81 84
 def get_table(cls):
82
-    from EditorialModel.components import EmComponent #dirty circula inclusion hack
83
-    if not issubclass(cls, EmComponent) or cls.table == None:
84
-        raise TypeError("Excepting an EmComponent child class not an "+str(cls))
85
+    from EditorialModel.components import EmComponent  # dirty circula inclusion hack
86
+    if not issubclass(cls, EmComponent) or cls.table is None:
87
+        raise TypeError("Excepting an EmComponent child class not an " + str(cls))
85 88
     engine = cls.db_engine()
86 89
     return sqla.Table(cls.table, meta(engine))
87
-def getTable(cls): return get_table(cls)
90
+
91
+
92
+def getTable(cls):
93
+    return get_table(cls)
94
+
88 95
 
89 96
 ## This function is intended to execute ddl defined in sqlalter
90 97
 # @warning There is a dirty workaround here, DDL should returns only one query, but DropColumn for sqlite has to return 4 queries (rename, create, insert, drop). There is a split on the compiled SQL to extract and execute one query at a time
@@ -96,10 +103,9 @@ def ddl_execute(ddl, db_engine):
96 103
     req = str(ddl.compile(dialect=db_engine.dialect))
97 104
     queries = req.split(';')
98 105
     for query in queries:
99
-        logger.debug("Executing custom raw SQL query : '"+query+"'")
106
+        logger.debug("Executing custom raw SQL query : '" + query + "'")
100 107
         ret = conn.execute(query)
101 108
         if not bool(ret):
102 109
             return False
103 110
     conn.close()
104 111
     return True
105
-

Loading…
Cancel
Save