mysql.js
5.17 KB
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
const mysql = require('mysql');
const _ = require('lodash');
const md5 = require('yoho-md5');
const qs = require('querystring');
class SqlHelper {
constructor(database) {
this.config = global.yoho.config.mysql;
this.logger = global.yoho.logger;
this.cache = global.yoho.cache;
this.monitor = global.yoho.monitorSender;
this.monitorType = _.get(this.monitor, 'type.SQL');
database = database || 'mysql';
this.createPool(database);
}
createPool(database) {
this.pool = mysql.createPool(Object.assign(this.config.connect, {
database,
queryFormat: function(query, values) {
if (!values) {
return query;
}
return query.replace(/\:(\w+)/g, function(txt, key) {
if (values.hasOwnProperty(key)) {
return this.escape(values[key]);
}
return txt;
}.bind(this));
},
connectTimeout: 2000
}));
}
getConnection() {
return new Promise((resolve, reject) => {
this.pool.getConnection((connErr, connection) => {
if (connErr) {
this.logger.error(connErr);
reject(connErr);
} else {
resolve(connection);
}
});
});
}
query(sql, params, options) {
return this.execute(sql, params, options);
}
delete(sql, params) {
return this.execute(sql, params).then(result => {
return result.affectedRows;
});
}
update(sql, params) {
return this.execute(sql, params).then(result => {
return result.changedRows;
});
}
insert(sql, params) {
return this.execute(sql, params).then(result => {
return result.insertId;
});
}
async execute(sql, params, options = {}) {
let cacheTime = parseInt(options.cache, 10) || 0;
let cacheKey;
// 读取缓存
if (cacheTime) {
let cacheString = `${sql} {${qs.stringify(params)}} ${cacheTime}`;
cacheKey = md5(cacheString);
let cacheResult = await this.cache.get(cacheKey);
if (cacheResult) {
try {
cacheResult = JSON.parse(cacheResult);
this.logger.debug('get success from cache.' + cacheString);
return Promise.resolve(cacheResult);
} catch (e) {
this.logger.debug('cache data parse fail.' + JSON.stringify(e));
}
}
}
return new Promise((resolve, reject) => {
this.getConnection().then(connection => {
connection.query(sql, params, (queryErr, result) => {
connection.release();
if (queryErr) {
this.logger.error(queryErr);
reject(queryErr);
} else {
// 写入缓存
cacheTime && this.cache.set(cacheKey, result, cacheTime);
resolve(result);
this.monitor && this.monitor.tallySuccess(this.monitorType);
}
});
}).catch(e => {
reject(e);
this.monitor && this.monitor.tallyFail(this.monitorType, e);
});
});
}
transaction(sqls, cb) {
return new Promise((resolve, reject) => {
this.getConnection().then(connection => {
let promises = _.map(sqls, sql => {
return new Promise((res, rej) => {
connection.query(sql, (queryErr, result) => {
if (queryErr) {
connection.rollback();
this.logger.error(queryErr);
rej(queryErr);
} else {
cb && cb(sql); // eslint-disable-line
res(result);
}
});
});
});
Promise.all(promises).then(results => {
connection.commit(err => {
if (err) {
connection.rollback(() => {
connection.release();
});
reject();
} else {
connection.release();
resolve(results);
}
});
}, () => {
reject();
});
});
});
}
changeDatabase(database) {
return new Promise(resolve => {
this.pool.end(() => {
this.createPool(database);
resolve();
});
});
}
close() {
this.pool.end(() => {
this.logger.log('end');
});
}
}
module.exports = SqlHelper;