-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDaoManager.java
More file actions
431 lines (395 loc) · 12.7 KB
/
DaoManager.java
File metadata and controls
431 lines (395 loc) · 12.7 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
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
package com.cat.multi.sql;
import com.sun.istack.internal.Nullable;
import com.sun.xml.internal.rngom.parse.host.Base;
import org.apache.commons.codec.binary.Base64;
import javax.swing.*;
import java.io.File;
import java.sql.*;
import java.util.HashSet;
import java.util.Set;
/**
* Created by cat on 2018/1/28.
* db sql
*/
public class DaoManager {
private static final boolean SHOW_SQL = false;
private static final boolean SHOW_WARING = false;
private static final String DB_NAME = "multiThreads.sqlite";
private static final String TABLE_NAME = "url2destPath";
private static final String COLUMN_URL = "URL";
private static final String COLUMN_DEST_PATH = "DEST_PATH";
private static final String COLUMN_KW_ARGS = "KW_ARGS";
;
static Connection openDbConnection(String dbName) {
Connection c = null;
try {
Class.forName("org.sqlite.JDBC");
// jdbc:sqlite:{file::identifier.sqlite}?
if (!dbName.endsWith(".sqlite")) {
dbName = dbName + ".sqlite";
}
c = DriverManager.getConnection("jdbc:sqlite:raw/db/" + dbName);
} catch (Exception e) {
System.err.println(e.getClass().getName() + ": " + e.getMessage());
throw new RuntimeException(e);
}
// never close connection here
return c;
}
public static Connection openDbConnection() {
return openDbConnection(DB_NAME);
}
public static boolean createTable() {
Connection c = null;
Statement stmt = null;
try {
c = openDbConnection();
stmt = c.createStatement();
String sql = String.format("CREATE TABLE IF NOT EXISTS %s " +
"(%s CHAR(500) PRIMARY KEY NOT NULL,%s CHAR(300) NOT NULL,%s CHAR(400))",
TABLE_NAME, COLUMN_URL, COLUMN_DEST_PATH, COLUMN_KW_ARGS);
if (SHOW_SQL) {
System.out.println("create table sql=" + sql);
}
stmt.executeUpdate(sql);
} catch (Exception e) {
System.err.println(e.getClass().getName() + ": " + e.getMessage());
try {
if (stmt != null) {
stmt.cancel();
}
} catch (SQLException e1) {
e1.printStackTrace();
}
throw new RuntimeException(e);
} finally {
try {
if (stmt != null)
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (c != null)
c.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
return true;
}
public static boolean dropTable() {
Connection c = null;
Statement stmt = null;
try {
c = openDbConnection();
stmt = c.createStatement();
String sql = String.format("DROP TABLE %s;", TABLE_NAME);
if (SHOW_SQL) {
System.out.println("drop table sql=" + sql);
}
return stmt.execute(sql);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
/**
* 没有输入
*
* @return 返回的是解码后的数据
*/
public static Set<UriBean> select() {
String sql = String.format("SELECT * FROM %s;", TABLE_NAME);
if (SHOW_SQL) {
System.out.println("select sql=" + sql);
}
HashSet<UriBean> beanArrayList = new HashSet<>();
Connection c = null;
Statement stmt = null;
ResultSet rs = null;
try {
c = openDbConnection();
c.setAutoCommit(false);
stmt = c.createStatement();
rs = stmt.executeQuery(sql);
//noinspection Duplicates
while (rs.next()) {
String url = rs.getString("URL");
String destPath = rs.getString("DEST_PATH");
UriBean bean = new UriBean(decode(url), decode(destPath));
beanArrayList.add(bean);
}
} catch (Exception e) {
beanArrayList.clear();
throw new RuntimeException(e);
} finally {
try {
if (rs != null) {
rs.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (stmt != null) {
stmt.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (c != null) {
c.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
return beanArrayList;
}
/**
* 拿到的是一个未加密的 url
*
* @param key url
* @return 未加密的 destPath
*/
@Nullable
public static String select(String key) {
if (!Base64.isBase64(key)) {
key = encode(key);
}
HashSet<UriBean> beanArrayList = new HashSet<>();
Connection c = null;
Statement stmt = null;
ResultSet rs = null;
try {
c = openDbConnection();
c.setAutoCommit(false);
stmt = c.createStatement();
String sql = String.format("SELECT * FROM %s WHERE %s = \"%s\";", TABLE_NAME, COLUMN_URL, key);
if (SHOW_SQL) {
System.out.println("select sql:" + sql);
}
rs = stmt.executeQuery(sql);
//noinspection Duplicates
while (rs.next()) {
String url = rs.getString("URL");
String destPath = rs.getString("DEST_PATH");
if (Base64.isBase64(url)) {
url = decode(url);
}
if (Base64.isBase64(destPath)) {
destPath = decode(destPath);
}
UriBean bean = new UriBean(url, destPath);
beanArrayList.add(bean);
}
if (beanArrayList.size() == 1) {
return beanArrayList.stream().findFirst().get().getDestPah();
} else {
return null;
}
} catch (Exception e) {
System.err.println(e.getClass().getName() + ": " + e.getMessage());
throw new RuntimeException(e);
} finally {
try {
if (rs != null) {
rs.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (stmt != null) {
stmt.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (c != null) {
c.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
/**
* 拿到 url, 会进行内部转码
*
* @param url URL
* @param destPath path
* @return insert
*/
public static int insert(String url, String destPath) {
return insert(new UriBean(url, destPath));
}
public static int insert(UriBean bean) {
createTable();
String key = bean.getUrl();
String value = bean.getDestPah();
if (!Base64.isBase64(key)) {
key = encode(key);
}
if (!Base64.isBase64(value)) {
value = encode(value);
}
String sql = String.format("INSERT INTO %s (%s,%s) VALUES(\"%s\",\"%s\");", TABLE_NAME, COLUMN_URL, COLUMN_DEST_PATH,
key, value);
if (SHOW_SQL) {
System.out.println("insert sqlOrigin=" + String.format("INSERT INTO %s (%s,%s) VALUES(\"%s\",\"%s\");", TABLE_NAME, COLUMN_URL, COLUMN_DEST_PATH,
decode(key), decode(value)));
System.out.println("insert sql=" + sql);
}
String select = select(key);
if (select != null) {
if (SHOW_WARING) {
System.err.println("this key has already insert: " + bean);
}
return -1;
}
Connection c = null;
Statement stmt = null;
int ret = -1;
try {
c = openDbConnection();
c.setAutoCommit(false);
stmt = c.createStatement();
ret = stmt.executeUpdate(sql);
c.commit();
} catch (Exception e) {
System.err.println(e.getClass().getName() + ": " + e.getMessage());
throw new RuntimeException(e);
} finally {
try {
if (stmt != null) {
stmt.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (c != null) {
c.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
return ret;
}
public static int update(String key, String value) {
if (!Base64.isBase64(key)) {
key = encode(key);
}
if (!Base64.isBase64(value)) {
value = encode(value);
}
Connection c = null;
Statement stmt = null;
int ret = -1;
try {
c = openDbConnection();
c.setAutoCommit(false);
stmt = c.createStatement();
String sql = String.format("UPDATE %s set %s=%s where %s=%s;",
TABLE_NAME, COLUMN_DEST_PATH, value, COLUMN_URL, key);
if (SHOW_SQL) {
System.out.println("update sql==" + sql);
}
ret = stmt.executeUpdate(sql);
c.commit();
} catch (Exception e) {
System.err.println(e.getClass().getName() + ": " + e.getMessage());
System.exit(0);
} finally {
try {
if (stmt != null) {
stmt.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (c != null) {
c.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
return ret;
}
public static int delete(String key) {
if (!Base64.isBase64(key)) {
key = encode(key);
}
Connection c = null;
Statement stmt = null;
int ret = -1;
try {
c = openDbConnection();
c.setAutoCommit(false);
stmt = c.createStatement();
String sql = String.format("DELETE from %s where %s=\"%s\";", TABLE_NAME, COLUMN_URL, key);
if (SHOW_SQL) {
System.out.println("delete sql=" + sql);
}
ret = stmt.executeUpdate(sql);
c.commit();
String select = select(key);
if (ret > 0 && select != null) {
boolean delete = new File(select).delete();
System.err.println(delete + "删除 索引时,对应删除关联的文件:" + select);
}
} catch (Exception e) {
System.err.println(e.getClass().getName() + ": " + e.getMessage());
throw new RuntimeException(e);
} finally {
try {
if (stmt != null) {
stmt.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (c != null) {
c.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
return ret;
}
/**
* uri 必须转码 https:// 这个中间的 : 会导致sql 语法错误。
*
* @param src uri
* @return normal str
*/
private static String encode(String src) {
if (Base64.isBase64(src)) {
return src;
}
return Base64.encodeBase64URLSafeString(src.getBytes());
}
private static String decode(String src) {
if (Base64.isBase64(src)) {
return new String(org.apache.commons.codec.binary.Base64.decodeBase64(src));
} else {
return src;
}
}
public static void show() {
Set<UriBean> select = select();
System.out.println("### show ---> start");
for (UriBean bean : select) {
System.out.println(bean);
}
System.out.println("### show <--- end##");
}
}