-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmysqldbex.py
251 lines (224 loc) · 10.5 KB
/
mysqldbex.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
#encoding=utf-8
# -----------------------------------------------------------libraries------------------------------------------------------
# Standard library
import time
# Third-party libraries
import MySQLdb
import MySQLdb.cursors
# User define module
# --------------------------------------------------------Global Variables--------------------------------------------------
# --------------------------------------------------------Class MySQLdbEx---------------------------------------------------
class MySQLdbEx(object):
"""This class is responsible for building up and shutting down connection to mysql server,
and common database operations.
"""
def __init__(self, host=None, db_name=None, port=3306, user=None,
password=None, max_idle_time = 8 * 3600):
"""Constructor.
:Param(str) db_host: the host name of mysql server
:Param(str) db_user: user name to login mysql server
:Param(str) db_password: user name to login mysql server
:Param(str) db_name: the name of database
:Param(int) max_idle_time: maximum idle time for keeping client connections
"""
self.host = host
self.port = port
self.user = user
self.password = password
self.db_name = db_name
self._max_idle_time = max_idle_time
self._last_use_time = 0
self._connection = None # client object
def __repr__(self):
"""Instance display format.
"""
try:
cursor = self._connection.cursor()
cursor.execute("SELECT version()")
except Exception:
return "<Server: %s:%d, Status: disconnected>" % (self.host, self.port)
return "<Server: %s:%d, Version: %s, Status: connected>" % (self.host,
self.port, cursor.fetchone()["version()"])
def connect(self):
""" Building up connection to mysql server if not.
-Param(str) db_host: the host name of database server
-Param(str) db_user: user name to login database server
-Param(str) db_password: user name to login database server
-Param(str) db_name: the name of database
"""
if self._connection is not None:
self.disconnect()
self._connection = MySQLdb.connect(host=self.host, port=self.port, user=self.user,
passwd=self.password, db=self.db_name, charset='utf8', cursorclass=MySQLdb.cursors.DictCursor)
self._last_use_time = time.time()
def disconnect(self):
"""Close the connection to mysql server.
"""
try:
if self._connection is not None:
self._connection.close()
self._connection = None
except Exception as e:
print "Failed to close the connection to database: %s" % e
self._connection = None
def _is_connected(self):
"""Make sure the connection is ok, otherwise reconnect to the server.
"""
idle_time = time.time() - self._last_use_time
if (self._connection is None or (idle_time > self._max_idle_time)):
self.connect()
self._last_use_time = time.time()
def execute(self, sql):
"""Execute SQL command.
:Param(str) sql: SQL command string.
"""
self._is_connected()
cursor = self._connection.cursor()
try:
cursor.execute(sql)
self._connection.commit()
return {'rowcount':cursor.rowcount,
'lastrowid': cursor.lastrowid}
finally:
cursor.close()
def query(self, sql):
"""Get records from database.
:Param(str) sql: SQL command string
"""
self._is_connected()
cursor = self._connection.cursor()
try:
cursor.execute(sql)
self._connection.commit()
return cursor.fetchall()
finally:
cursor.close()
def uuid(self):
"""Generate uuid using the function UUID().
"""
sql = 'SELECT UUID()'
record = self.query(sql)
return record[0]['UUID()']
def is_exists(self, table, conditions):
"""Check if one or more records exist for given conditions, like:
['field1=value1', 'AND', 'field2>value2', 'OR', 'field3<>value3', ...]
:Param(str) table: the name of target table
:Param(list) conditions: the conditions for records to be seleted
"""
sql = 'SELECT * FROM %s WHERE %s LIMIT 1' % (table, ' '.join(conditions))
record = self.query(sql)
return True if record else False
def uuid(self):
"""Generate uuid.
"""
sql = "SELECT UUID() AS 'uuid'"
return self.query(sql)[0]['uuid']
def is_exists(self, table, conditions):
"""Check if one or more records exist for given conditions, like:
["field1=value1", "AND", "field2>value2", "OR", "field3<>value3", ...]
:Param(str) table: the name of target table
:Param(list) conditions: the conditions for records to be seleted
"""
sql = "SELECT * FROM %s WHERE %s LIMIT 1" % (table, " ".join(conditions))
record = self.query(sql)
return True if record else False
def get_fields(self, table):
"""Get the field names of a table.
:Param(str) table: the name of target table
"""
sql = ("SELECT COLUMN_NAME FROM information_schema.COLUMNS WHERE " +
"table_name = %r AND table_schema = %r" % (table, self.db_name))
return [x["COLUMN_NAME"] for x in self.query(sql)]
def get_one(self, table, fields="*", conditions=["1",]):
"""Get one record from database according to given conditions, like:
["field1=value1", "AND", "field2>value2", "OR", "field3<>value3", ...]
:Param(str) table: the name of target table
:Param(list) fields: the name of columns whose data will be selected
:Param(list) conditions: the conditions for records to be seleted
"""
sql = "SELECT %s FROM %s WHERE %s" % (", ".join(fields), table, " ".join(conditions))
record = self.query(sql)
return record[0] if record else {}
def count(self, table, conditions=["1",]):
"""Count records from database according to given conditions, like:
["field1=value1", "AND", "field2>value2", "OR", "field3<>value3", ...]
:Param(str) table: the name of target table
:Param(list) conditions: the conditions for records to be seleted
"""
sql = "SELECT COUNT(*) AS 'count' FROM %s WHERE %s " % (table, " ".join(conditions))
record = self.query(sql)
return record[0]['count']
def get_page(self, table, page, number, order="ID ASC", fields="*", conditions=["1",]):
"""Get a page of records from database according to given conditions, like:
["field1=value1", "AND", "field2>value2", "OR", "field3<>value3", ...]
:Param(str) table: the name of target table
:Param(int) page: page index of records
:Param(int) number: number of records will be return
:Param(list) fields: the name of columns whose data will be selected
:Param(list) conditions: the conditions for records to be seleted
"""
sql = "SELECT %s FROM %s WHERE %s ORDER BY %s LIMIT %d, %d" % (", ".join(fields),
table, " ".join(conditions), order, page*number, number)
return self.query(sql)
def get_one(self, table, fields='*', conditions=['1',]):
"""Get one record from database according to given conditions, like:
['field1=value1', 'AND', 'field2>value2', 'OR', 'field3<>value3', ...]
:Param(str) table: the name of target table
:Param(list) fields: the name of columns whose data will be selected
:Param(list) conditions: the conditions for records to be seleted
"""
sql = "SELECT %s FROM %s WHERE %s" % (", ".join(fields), table, ' '.join(conditions))
record = self.query(sql)
return record[0] if record else {}
def get(self, table, fields="*", conditions=["1",]):
"""Get records from database according to given conditions, like:
["field1=value1", "AND", "field2>value2", "OR", "field3<>value3", ...]
:Param(str) table: the name of target table
:Param(list) fields: the name of columns whose data will be selected
:Param(list) conditions: the conditions for records to be seleted
"""
sql = "SELECT %s FROM %s WHERE %s" % (", ".join(fields), table, " ".join(conditions))
return self.query(sql)
def insert(self, table, data):
"""Add data into database.
Param(str) table: the name of target table
Param(dict) data: data in dict, like {field: value, ...}
"""
fields = []
values = []
for key, value in data.items():
if isinstance(value, unicode) or isinstance(value, str):
values.append(("'%s'" % value))
else:
values.append(("%r" % value))
fields.append(key)
sql = "INSERT INTO %s (%s) VALUES (%s)" % (table, ",".join(fields), ",".join(values))
return self.execute(sql)['lastrowid']
def delete(self, table, conditions=["1", ]):
"""Delete records in database accoridng to given conditions, like:
["field1=value1", "AND", "field2>value2", "OR", "field3<>value3", ...]
:Param(str) table: the name of target table
:Param(list) conditions: the conditions for records to be deleted
"""
sql = "DELETE FROM %s WHERE %s" % (table, " ".join(conditions))
return self.execute(sql)['rowcount']
def update(self, table, data, conditions=["1", ]):
"""Modify the value of existing record specified by conditions, like:
["field1=value1", "AND", "field2>value2", "OR", "field3<>value3", ...]
:Param(str) table: the name of target table
:Param(dict) data: new data
:Param(list) conditions: the conditions for records to be modified
"""
values = []
for key, value in data.items():
if isinstance(value, unicode) or isinstance(value, str):
values.append(("%s='%s'" % (key, value)))
else:
values.append(("%s=%r" % (key, value)))
sql = "UPDATE %s SET %s WHERE %s" % (table, ", ".join(values), " ".join(conditions))
return self.execute(sql)['rowcount']
def clear_table(self, table):
"""Delete all records in a table.
:Param(str) table: the name of target table
"""
return self.execute("TRUNCATE %s" % table)['rowcount']