-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathAbstractRedisExecutor.java
More file actions
1821 lines (1702 loc) · 35.1 KB
/
AbstractRedisExecutor.java
File metadata and controls
1821 lines (1702 loc) · 35.1 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
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
package apijson.demo.redis;
import java.util.List;
import java.util.Map;
import java.util.Set;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.ListPosition;
import redis.clients.jedis.ScanParams;
import redis.clients.jedis.ScanResult;
import redis.clients.jedis.Tuple;
public abstract class AbstractRedisExecutor implements RedisExecutor {
@Override
public void close(Jedis jedis) {
if (jedis != null) {
jedis.close();
}
}
private String ok_returns(RediSQLCommand.ModuleCommand cmd, String... args) {
Jedis jedis = null;
try {
jedis = getJedis(args[0]);
jedis.getClient().sendCommand(cmd, args);
return jedis.getClient().getBulkReply();
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
private List<Object> list_returns(RediSQLCommand.ModuleCommand cmd, String... args) {
Jedis jedis = null;
try {
jedis = getJedis(args[0]);
jedis.getClient().sendCommand(cmd, args);
return jedis.getClient().getObjectMultiBulkReply();
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
@Override
public void delDB(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
jedis.del(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
}
@Override
public String create_db(String db) {
return ok_returns(RediSQLCommand.ModuleCommand.CREATE_DB, db);
}
@Override
public String create_db(String db, String file_path) {
return ok_returns(RediSQLCommand.ModuleCommand.CREATE_DB, db, file_path);
}
@Override
public List<Object> exec(String db, String query) {
return list_returns(RediSQLCommand.ModuleCommand.EXEC, db, query);
}
@Override
public List<Object> exec_now(String db, String query) {
return list_returns(RediSQLCommand.ModuleCommand.EXEC_NOW, db, query);
}
@Override
public List<Object> query(String db, String query) {
return list_returns(RediSQLCommand.ModuleCommand.QUERY, db, query);
}
@Override
public List<Object> query_now(String db, String query) {
return list_returns(RediSQLCommand.ModuleCommand.QUERY_NOW, db, query);
}
@Override
public List<Object> query_into(String stream, String db, String query) {
return list_returns(RediSQLCommand.ModuleCommand.QUERY_INTO, stream, db, query);
}
@Override
public List<Object> query_into_now(String stream, String db, String query) {
return list_returns(RediSQLCommand.ModuleCommand.QUERY_INTO_NOW, stream, db, query);
}
@Override
public String create_statement(String db, String stmt_name, String stmt_query) {
return ok_returns(RediSQLCommand.ModuleCommand.CREATE_STATEMENT, db, stmt_name, stmt_query);
}
@Override
public String create_statement_now(String db, String stmt_name, String stmt_query) {
return ok_returns(RediSQLCommand.ModuleCommand.CREATE_STATEMENT_NOW, db, stmt_name, stmt_query);
}
@Override
public List<Object> exec_statement(String... args) {
return list_returns(RediSQLCommand.ModuleCommand.EXEC_STATEMENT, args);
}
@Override
public List<Object> exec_statement_now(String... args) {
return list_returns(RediSQLCommand.ModuleCommand.EXEC_STATEMENT_NOW, args);
}
@Override
public List<Object> query_statement(String... args) {
return list_returns(RediSQLCommand.ModuleCommand.QUERY_STATEMENT, args);
}
@Override
public List<Object> query_statement_now(String... args) {
return list_returns(RediSQLCommand.ModuleCommand.QUERY_STATEMENT_NOW, args);
}
@Override
public List<Object> query_statement_into(String... args) {
return list_returns(RediSQLCommand.ModuleCommand.QUERY_STATEMENT_INTO, args);
}
@Override
public List<Object> query_statement_into_now(String... args) {
return list_returns(RediSQLCommand.ModuleCommand.QUERY_STATEMENT_INTO_NOW, args);
}
@Override
public String delete_statement(String db, String stmt_name) {
return ok_returns(RediSQLCommand.ModuleCommand.DELETE_STATEMENT, db, stmt_name);
}
@Override
public String delete_statement_now(String db, String stmt_name) {
return ok_returns(RediSQLCommand.ModuleCommand.DELETE_STATEMENT_NOW, db, stmt_name);
}
@Override
public String update_statement(String db, String stmt_name, String stmt_query) {
return ok_returns(RediSQLCommand.ModuleCommand.UPDATE_STATEMENT, db, stmt_name, stmt_query);
}
@Override
public String update_statement_now(String db, String stmt_name, String stmt_query) {
return ok_returns(RediSQLCommand.ModuleCommand.UPDATE_STATEMENT_NOW, db, stmt_name, stmt_query);
}
@Override
public String copy(String db1, String db2) {
return ok_returns(RediSQLCommand.ModuleCommand.COPY, db1, db2);
}
@Override
public String copy_now(String db1, String db2) {
return ok_returns(RediSQLCommand.ModuleCommand.COPY_NOW, db1, db2);
}
@Override
public List<Object> statistics() {
return list_returns(RediSQLCommand.ModuleCommand.STATISTICS);
}
@Override
public String version() {
return ok_returns(RediSQLCommand.ModuleCommand.VERSION);
}
@Override
public List<Object> crudBySearch(String db, String sql) throws Exception {
return exec(db, sql);
}
@Override
public Long crudByUpdate(String db, String sql) throws Exception {
List<Object> retObj = exec(db, sql);
return ParseRediSQLReply.how_many_done(retObj);
}
/* ######################## key的操作 ################################ */
/**
* 根据pattern返回当前库中的key
*
* @param pattern
* @return
*/
@Override
public Set<String> keys(String pattern) {
Jedis jedis = null;
try {
jedis = getJedis(null);
return jedis.keys(pattern);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 删除一个或多个key
*
* @param key 一个或多个key
*/
@Override
public Long del(String... key) {
Jedis jedis = null;
try {
jedis = getJedis(key[0]);
return jedis.del(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 判断某个key是否存在
*
* @param key key
* @return
*/
@Override
public Boolean exists(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.exists(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 设置某个key的过期时间,单位秒
*
* @param key key
* @param seconds 过期时间秒
*/
@Override
public Long expire(String key, Long seconds) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.expire(key, seconds);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/***
* 移除给定 key 的过期时间,使得 key 永不过期
*
* @param key
* @return
*/
@Override
public Long persist(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.persist(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 查看某个key还有几秒过期,-1表示永不过期 ,-2表示已过期
*
* @param key key
* @return
*/
@Override
public Long timeToLive(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.ttl(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
@Override
public String rename(String key, String newKey) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.rename(key, newKey);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 查看某个key对应的value的类型
*
* @param key
* @return
*/
@Override
public String type(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.type(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
@Override
public ScanResult<String> scan(String cursor, ScanParams scanParams) {
Jedis jedis = null;
try {
jedis = getJedis(null);
return jedis.scan(cursor, scanParams);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/* ######################## string(字符串)的操作 #################### */
/**
* 获取某个key的value,类型要对,只能value是string的才能获取
*
* @param key
* @return
*/
@Override
public String get(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.get(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 获取多个key的value,类型要对,只能value是string的才能获取
*
* @param key
* @return
*/
@Override
public List<String> mget(String... key) {
Jedis jedis = null;
try {
jedis = getJedis(key[0]);
return jedis.mget(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 设置某个key的value
*
* @param key
* @param value
*/
@Override
public String set(String key, String value) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.set(key, value);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
@Override
public String mset(String... keysvalues) {
Jedis jedis = null;
try {
jedis = getJedis(keysvalues[0]);
return jedis.mset(keysvalues);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
@Override
public String msetnx(String... keysvalues) {
Jedis jedis = null;
try {
jedis = getJedis(keysvalues[0]);
return jedis.mset(keysvalues);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 字符串后追加内容
*
* @param key key
* @param appendContent 要追加的内容
*/
@Override
public Long append(String key, String appendContent) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.append(key, appendContent);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 返回key的value的长度
*
* @param key
* @return
*/
@Override
public Long strlen(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.strlen(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* value 加1 必 须是字符型数字
*
* @param key
* @return 增加后的值
*/
@Override
public Long incr(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.incr(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* value 减1 必须是字符型数字
*
* @param key
* @return
*/
@Override
public Long decr(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.decr(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* value 加increment
*
* @param key key
* @param increment 加几
* @return
*/
@Override
public Long incrby(String key, int increment) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.incrBy(key, increment);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* value 减increment
*
* @param key
* @param increment
* @return
*/
@Override
public Long decrby(String key, int increment) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.decrBy(key, increment);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 给某个key设置过期时间和value,成功返回OK
*
* @param key key
* @param seconds 过期时间秒
* @param value 设置的值
* @return
*/
@Override
public String setex(String key, int seconds, String value) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.setex(key, seconds, value);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/* ######################## list(列表)的操作 ####################### */
// lpush rpush lpop rpop lrange lindex llen lset lrem
/**
* 从左边向列表中添加值
*
* @param key key
* @param str 要添加的值
*/
@Override
public Long lpush(String key, String... str) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.lpush(key, str);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 从右边向列表中添加值
*
* @param key key
* @param str 要添加的值
*/
@Override
public Long rpush(String key, String... str) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.rpush(key, str);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 从左边取出一个列表中的值
*
* @param key
* @return
*/
@Override
public String lpop(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.lpop(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 从右边取出一个列表中的值
*
* @param key
* @return
*/
@Override
public String rpop(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.rpop(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 取出列表中指定范围内的值,0 到 -1 表示全部
*
* @param key
* @param startIndex
* @param endIndex
* @return
*/
@Override
public List<String> lrange(String key, int startIndex, int endIndex) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.lrange(key, startIndex, endIndex);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 返回某列表指定索引位置的值
*
* @param key 列表key
* @param index 索引位置
* @return
*/
@Override
public String lindex(String key, int index) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.lindex(key, index);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 返回某列表的长度
*
* @param key
* @return
*/
@Override
public Long llen(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.llen(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 给某列表指定位置设置为指定的值
*
* @param key
* @param index
* @param str
*/
@Override
public String lset(String key, Long index, String str) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.lset(key, index, str);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
@Override
public Long linsert(final String key, final ListPosition where, final String pivot, final String value) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.linsert(key, where, pivot, value);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 对列表进行剪裁,保留指定闭区间的元素(索引位置也会重排)
*
* @param key 列表key
* @param startIndex 开始索引位置
* @param endIndex 结束索引位置
*/
@Override
public String ltrim(String key, Integer startIndex, Integer endIndex) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.ltrim(key, startIndex, endIndex);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 从列表的左边阻塞弹出一个元素
*
* @param key 列表的key
* @param timeout 阻塞超时时间,0表示若没有元素就永久阻塞
* @return
*/
@Override
public List<String> blpop(String key, Integer timeout) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.blpop(timeout, key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 从列表的右边阻塞弹出一个元素
*
* @param key 列表的key
* @param timeout 阻塞超时时间,0表示若没有元素就永久阻塞
* @return
*/
@Override
public List<String> brpop(String key, Integer timeout) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.brpop(timeout, key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 移除列表元素
*
* @param key
* @param index
* @param str
*/
@Override
public Long lrem(String key, Long count, String value) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.lrem(key, count, value);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/* ######################## hash(哈希表)的操作 ####################### */
// hset hget hmset hmget hgetall hdel hkeys hvals hexists hincrby
/**
* 给某个hash表设置一个键值对
*
* @param key
* @param field
* @param value
*/
@Override
public Long hset(String key, String field, String value) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.hset(key, field, value);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
@Override
public Long hsetnx(String key, String field, String value) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.hsetnx(key, field, value);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 取出某个hash表中某个field对应的value
*
* @param key key
* @param field field
* @return
*/
@Override
public String hget(String key, String field) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.hget(key, field);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 某个hash表设置一个或多个键值对
*
* @param key
* @param kvMap
*/
@Override
public String hmset(String key, Map<String, String> kvMap) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.hmset(key, kvMap);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 取出某个hash表中任意多个key对应的value的集合
*
* @param key
* @param fields
* @return
*/
@Override
public List<String> hmget(String key, String... fields) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.hmget(key, fields);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 取出某个hash表中所有的键值对
*
* @param key
* @return
*/
@Override
public Map<String, String> hgetall(String key) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.hgetAll(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;
}
/**
* 判断某个hash表中的某个key是否存在
*
* @param key
* @param field
* @return
*/
@Override
public Boolean hexists(String key, String field) {
Jedis jedis = null;
try {
jedis = getJedis(key);
return jedis.hexists(key, field);
} catch (Exception e) {
e.printStackTrace();
} finally {
close(jedis);
}
return null;