-
Notifications
You must be signed in to change notification settings - Fork 11
/
ExpireMap.java
1208 lines (990 loc) · 29.5 KB
/
ExpireMap.java
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 org.hy.common;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
/**
* Map.key有生存时间的Map,当生存时间期满时,Map.key就失效了。
*
* 生存时间的精度为:毫秒
*
* 注意:当系统时刻与生存时间(过期时间)相等时,视为有效的Map.key。
* 只有超过生存时间(过期时间)时,才视为失效的Map.key。
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
* v2.0 2017-02-28 添加:元素首次加入集合的创建时间
* v3.0 2017-11-20 添加:getAndKeep()方法,可实现Session机制。
* v4.0 2022-06-22 添加:getExpire()方法,一个方法即可返回所有参数信息,使用它得到多组信息时,性能更高
* 添加:entrySetExpire()方法,为本类转Json 或通过Json序列化提供支持
* 添加:putMilli(K,V,Date,Long) 添加元素,带有创建时间和过期的时间戳
*/
public class ExpireMap<K ,V> implements Map<K ,V> ,java.io.Serializable ,Cloneable
{
private static final long serialVersionUID = 1240278758504986975L;
/** 真实的数据 */
private ConcurrentHashMap<K ,Expire<K ,V>> datas;
/**
* 一样的数据,不同的结构。
* 主要用于 ExpireMap.values() 和 ExpireMap.entrySet() 两个方法。
* 注意:ExpireMap并没有直接继承 Hashtable<K ,V>,而是将 Hashtable<K ,V>作为内部属性。
*/
private ConcurrentHashMap<K ,V> datasSame;
/**
* 最小的过期时间戳。
*
* 它的主要作用是优化检查过期失效的性能
* 1. 0值 不计算在内。
* 2. 但初始化值为 0值。
*/
private long minTime;
public ExpireMap()
{
this.datas = new ConcurrentHashMap<K ,Expire<K ,V>>();
this.datasSame = new ConcurrentHashMap<K ,V>();
this.minTime = 0L;
}
public ExpireMap(int i_InitialCapacity)
{
this.datas = new ConcurrentHashMap<K ,Expire<K ,V>>(i_InitialCapacity);
this.datasSame = new ConcurrentHashMap<K ,V> (i_InitialCapacity);
this.minTime = 0L;
}
public ExpireMap(int i_InitialCapacity, float i_LoadFactor)
{
this.datas = new ConcurrentHashMap<K ,Expire<K ,V>>(i_InitialCapacity ,i_LoadFactor);
this.datasSame = new ConcurrentHashMap<K ,V> (i_InitialCapacity ,i_LoadFactor);
this.minTime = 0L;
}
/**
* 检查所有元素是否过期失效
*
* 当过期失效时,内部会消积删除。
* 并重新计算最小的过期时间戳
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
*/
private synchronized Map<K ,Expire<K ,V>> checkExpires()
{
if ( this.datas.isEmpty() )
{
this.minTime = 0L;
}
else
{
if ( 0L < this.minTime && this.minTime < Date.getNowTime().getTime() )
{
long v_MinTime = 0L;
for (Expire<K ,V> v_Data : this.datas.values())
{
if ( null != ((ExpireElement<K ,V>)v_Data).checkExpire(false) )
{
if ( v_MinTime == 0L || v_Data.getTime() < v_MinTime )
{
v_MinTime = v_Data.getTime();
}
}
}
// 注意:上面的循环,绝对不能使用 this.minTime。
// 否则逻辑异常,并有可能引发死循环的递归检查。
this.minTime = v_MinTime;
}
}
return this.datas;
}
/**
* 设置Map.key的过期时长(单位:秒)
*
* 如果Map.key已过期,将无法设置。
*
* @author ZhengWei(HY)
* @createDate 2016-02-25
* @version v1.0
*
* @param i_Key
* @param i_Second 过期时长(单位:秒)
* @return
*/
public V setExpireTime(K i_Key ,long i_Second)
{
return this.setExpireTimeMilli(i_Key ,i_Second * 1000L);
}
/**
* 设置Map.key的过期时长(单位:毫秒)
*
* 如果Map.key已过期,将无法设置。
*
* @author ZhengWei(HY)
* @createDate 2016-02-25
* @version v1.0
*
* @param i_Key
* @param i_Millisecond 过期时长(单位:毫秒)
* @return 当Map.key已经过期时,返回 null
*/
public synchronized V setExpireTimeMilli(K i_Key ,long i_Millisecond)
{
Expire<K ,V> v_Data = this.datas.get(i_Key);
if ( null == v_Data )
{
return null;
}
else if ( ((ExpireElement<K ,V>)v_Data).checkExpire() == null )
{
return null;
}
long v_Time = Date.getNowTime().getTime() + i_Millisecond;
((ExpireElement<K ,V>)v_Data).time = v_Time;
if ( this.minTime == 0L || v_Time < this.minTime )
{
this.minTime = v_Time;
}
return v_Data.getValue();
}
/**
* 添加元素,带有过期时长功能(单位:秒)
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Key
* @param i_Value
* @param i_Second 过期时长(单位:秒)。指当前时刻过i_Second秒后过期失效。
* 小于 0 时,表示永远不失效。
* @return
*/
public Expire<K ,V> put(K i_Key ,V i_Value ,long i_Second)
{
return this.putMilli(i_Key ,i_Value ,i_Second * 1000L);
}
/**
* 添加元素,带有过期时长功能(单位:毫秒)
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Key
* @param i_Value
* @param i_Millisecond 过期时长(单位:毫秒)。指当前时刻过i_Millisecond毫秒后过期失效。
* 小于 0 时,表示永远不失效。
* @return
*/
public synchronized Expire<K ,V> putMilli(K i_Key ,V i_Value ,long i_Millisecond)
{
ExpireElement<K ,V> v_OldData = (ExpireElement<K ,V>)this.datas.get(i_Key);
ExpireElement<K ,V> v_NewData = null;
if ( v_OldData != null )
{
v_NewData = v_OldData;
v_NewData.setValue(i_Value);
}
else
{
v_NewData = new ExpireElement<K ,V>(i_Key ,i_Value ,i_Millisecond);
this.datas.put(i_Key ,v_NewData);
}
this.datasSame.put(i_Key ,i_Value);
if ( i_Millisecond > 0L )
{
long v_Time = Date.getNowTime().getTime() + i_Millisecond;
v_NewData.time = v_Time;
if ( this.minTime == 0L || v_Time < this.minTime )
{
this.minTime = v_Time;
}
}
return v_NewData;
}
/**
* 添加元素,带有创建时间和过期的时间戳
*
* @author ZhengWei(HY)
* @createDate 2022-06-22
* @version v1.0
*
* @param i_Key
* @param i_Value
* @param i_CreateTime 创建时间
* @param i_ExpireTime 过期的时间戳,与 getExpireTimeLen() 方法返回值同义
* @return
*/
public synchronized Expire<K ,V> putMilli(K i_Key ,V i_Value ,Date i_CreateTime ,long i_ExpireTime)
{
Expire<K ,V> v_OldData = this.datas.get(i_Key);
ExpireElement<K ,V> v_NewData = null;
if ( v_OldData != null )
{
this.datas.remove(i_Key);
}
v_NewData = new ExpireElement<K ,V>(i_Key ,i_Value ,i_ExpireTime ,i_CreateTime);
this.datas.put(i_Key ,v_NewData);
this.datasSame.put(i_Key ,i_Value);
if ( i_ExpireTime > 0L )
{
if ( this.minTime == 0L || i_ExpireTime < this.minTime )
{
this.minTime = i_ExpireTime;
}
}
return v_NewData;
}
/**
* 批量添加元素,带有过期时长功能
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Datas
*/
public synchronized void putAll(ExpireMap<K ,V> i_Datas)
{
if ( Help.isNull(i_Datas) )
{
return;
}
this.datas .putAll(i_Datas.datas);
this.datasSame.putAll(i_Datas.datasSame);
if ( this.minTime == 0L )
{
this.minTime = i_Datas.minTime;
}
else if ( i_Datas.minTime == 0L )
{
// Nothing.
}
else if ( i_Datas.minTime < this.minTime )
{
this.minTime = i_Datas.minTime;
}
}
/**
* 添加元素,永远有效的元素
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Key
* @param i_Value
* @return
*/
@Override
public V put(K i_Key ,V i_Value)
{
return this.putMilli(i_Key ,i_Value ,0L).getValue();
}
/**
* 批量添加元素,永远有效的元素
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Datas
*/
@Override
public synchronized void putAll(Map<? extends K ,? extends V> i_Datas)
{
if ( Help.isNull(i_Datas) )
{
return;
}
for (Map.Entry<? extends K ,? extends V> v_Data : i_Datas.entrySet())
{
this.putMilli(v_Data.getKey() ,v_Data.getValue() ,0L);
}
}
/**
* 获取过期的时间戳。
*
* @author ZhengWei(HY)
* @createDate 2016-02-25
* @version v1.0
*
* @param i_Key
* @return 已过期的Map.key,返回 null
* 返回 0 时,表示永远有效
*/
public synchronized Long getExpireTime(K i_Key)
{
ExpireElement<K ,V> v_Data = (ExpireElement<K ,V>)this.datas.get(i_Key);
if ( null != v_Data )
{
return v_Data.checkExpire() == null ? null : v_Data.getTime();
}
else
{
return null;
}
}
/**
* 获取剩余有效时间的时长(单位:毫秒)。
*
* @author ZhengWei(HY)
* @createDate 2016-02-25
* @version v1.0
*
* @param i_Key
* @return 已过期的Map.key,返回 -1
* 不存在的Map.key,返回 -1
* 永远有效Map.key,返回 Long.MAX_VALUE
*/
public synchronized long getExpireTimeLen(K i_Key)
{
ExpireElement<K ,V> v_Data = (ExpireElement<K ,V>)this.datas.get(i_Key);
if ( null != v_Data )
{
if ( null == v_Data.checkExpire() )
{
return -1L;
}
else if ( v_Data.time == 0L )
{
return Long.MAX_VALUE;
}
else
{
return v_Data.time - Date.getNowTime().getTime();
}
}
else
{
return -1L;
}
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 返回 null
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Key
* @return
*/
@Override
public synchronized V get(Object i_Key)
{
ExpireElement<K ,V> v_Data = (ExpireElement<K ,V>)this.datas.get(i_Key);
if ( null != v_Data )
{
return v_Data.checkExpire() == null ? null : v_Data.getValue();
}
else
{
return null;
}
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 返回 null
*
* @author ZhengWei(HY)
* @createDate 2022-06-22
* @version v1.0
*
* @param i_Key
* @return
*/
public synchronized Expire<K ,V> getExpire(Object i_Key)
{
ExpireElement<K ,V> v_Data = (ExpireElement<K ,V>)this.datas.get(i_Key);
if ( null != v_Data )
{
return v_Data.checkExpire() == null ? null : v_Data;
}
else
{
return null;
}
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 返回 null
*
* 当Map.key在有效期内时,可重新设备过期时长(单位:秒)。
*
* 类似于 get() + setExpireTime() 两方法的组合,但性能更高。
*
* 此方法可用于实现Session机制。
*
* @author ZhengWei(HY)
* @createDate 2017-11-20
* @version v1.0
*
* @param i_Key
* @param i_Second
* @return
*/
public V getAndKeep(Object i_Key ,long i_Second)
{
return this.getAndKeepMilli(i_Key ,i_Second * 1000L);
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 返回 null
*
* 当Map.key在有效期内时,可重新设备过期时长(单位:毫秒)。
*
* 类似于 get() + setExpireTime() 两方法的组合,但性能更高。
*
* 此方法可用于实现Session机制。
*
* @author ZhengWei(HY)
* @createDate 2017-11-20
* @version v1.0
*
* @param i_Key
* @param i_Second
* @return
*/
public synchronized V getAndKeepMilli(Object i_Key ,long i_Millisecond)
{
ExpireElement<K ,V> v_Data = (ExpireElement<K ,V>)this.datas.get(i_Key);
if ( null != v_Data )
{
if ( v_Data.checkExpire() == null )
{
return null;
}
else
{
long v_Time = Date.getNowTime().getTime() + i_Millisecond;
v_Data.time = v_Time;
if ( this.minTime == 0L || v_Time < this.minTime )
{
this.minTime = v_Time;
}
return v_Data.getValue();
}
}
else
{
return null;
}
}
/**
* 只返回 Map.key 在有效期内的 Map.value 的创建时间。
* 过期的 Map.key 返回 null
*
* @author ZhengWei(HY)
* @createDate 2017-02-28
* @version v1.0
*
* @param i_Key
* @return
*/
public synchronized Date getCreateTime(Object i_Key)
{
ExpireElement<K ,V> v_Data = (ExpireElement<K ,V>)this.datas.get(i_Key);
if ( null != v_Data )
{
return v_Data.checkExpire() == null ? null : v_Data.getCreateTime();
}
else
{
return null;
}
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 不在返回之内
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @return
*/
@Override
public synchronized int size()
{
return this.checkExpires().size();
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 不在返回之内
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @return
*/
@Override
public synchronized boolean isEmpty()
{
return this.checkExpires().isEmpty();
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 不在返回之内
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @return
*/
@Override
public synchronized Set<K> keySet()
{
return this.checkExpires().keySet();
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 不在返回之内
*
* @author ZhengWei(HY)
* @createDate 2016-02-25
* @version v1.0
*
* @return
*/
@Override
public synchronized Collection<V> values()
{
this.checkExpires();
return this.datasSame.values();
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 不在返回之内
*
* @author ZhengWei(HY)
* @createDate 2016-02-25
* @version v1.0
*
* @return
*/
@Override
public synchronized Set<Map.Entry<K, V>> entrySet()
{
this.checkExpires();
return this.datasSame.entrySet();
}
/**
* 只返回 Map.key 在有效期内的 Map.value。
* 过期的 Map.key 不在返回之内
*
* @author ZhengWei(HY)
* @createDate 2022-06-22
* @version v1.0
*
* @return
*/
public synchronized Set<Entry<K ,Expire<K ,V>>> entrySetExpire()
{
this.checkExpires();
return this.datas.entrySet();
}
/**
* 只有当 Map.key 在有效期内时,才返回 true。
* 过期的 Map.key 返回 false
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Key
* @return
*/
@Override
public synchronized boolean containsKey(Object i_Key)
{
ExpireElement<K ,V> v_Data = (ExpireElement<K ,V>)this.datas.get(i_Key);
if ( null != v_Data )
{
return v_Data.checkExpire() != null;
}
else
{
return false;
}
}
/**
* 只有当 Map.key 在有效期内时,才返回 true。
* 过期的 Map.key 返回 false
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Key
* @return
*/
@Override
public synchronized boolean containsValue(Object i_Value)
{
if ( null == i_Value )
{
throw new NullPointerException();
}
return this.datas.containsValue(i_Value);
}
/**
* 删除元素
*
* @param i_Key
* @return
*/
@Override
public synchronized V remove(Object i_Key)
{
ExpireElement<K ,V> v_Data = (ExpireElement<K ,V>)this.datas.remove(i_Key);
this.datasSame.remove(i_Key);
if ( null != v_Data )
{
if ( null == v_Data.checkExpire() )
{
return null;
}
else
{
this.checkExpires();
return v_Data.getValue();
}
}
else
{
return null;
}
}
/**
* 清空集合
*/
@Override
public synchronized void clear()
{
this.datas .clear();
this.datasSame.clear();
this.minTime = 0;
}
@Override
@SuppressWarnings("unchecked")
public boolean equals(Object i_Other)
{
if (i_Other == null)
{
return false;
}
else if (this == i_Other)
{
return true;
}
else if (i_Other instanceof ExpireMap)
{
ExpireMap<K ,V> v_Another = (ExpireMap<K ,V>)i_Other;
return this.datas.equals(v_Another.datas);
}
else
{
return false;
}
}
@Override
public int hashCode()
{
return this.datas.hashCode();
}
@Override
public synchronized ExpireMap<K ,V> clone()
{
ExpireMap<K ,V> v_Clone = new ExpireMap<K ,V>(this.size());
for (Expire<K ,V> v_Data : this.datas.values())
{
v_Clone.put(v_Data.getKey() ,v_Data.getValue() ,v_Data.getTime());
}
return v_Clone;
}
/*
ZhengWei(HY) Del 2016-07-30
不能实现这个方法。首先JDK中的Hashtable、ArrayList中也没有实现此方法。
它会在元素还有用,但集合对象本身没有用时,释放元素对象
一些与finalize相关的方法,由于一些致命的缺陷,已经被废弃了
protected void finalize() throws Throwable
{
this.clear();
this.datas = null;
this.datasSame = null;
super.finalize();
}
*/
/**
* 定义此接口后,外界才能有限制的访问。如访问 ExpireMap.put( , , ) 的返回值。
*
* @author ZhengWei(HY)
* @createDate 2016-02-25
* @version v1.0
* v2.0 2017-02-28 添加:创建时间
*/
public interface Expire<K ,V> extends Map.Entry<K ,V> ,java.io.Serializable
{
/**
* 获取:时间戳。保存期满时间。0表示永远有效
*/
public long getTime();
/**
* 创建时间(首次将Key添加到集合时的时间)
*
* @author ZhengWei(HY)
* @createDate 2017-02-28
* @version v1.0
*
* @return
*/
public Date getCreateTime();
}
/**
* ExpireMap集合的元素类,即Map.value的类型 。
*
* 是对外界用户Map.value的封装。所以,比较、相等判断都按外界用户Map.value的为准。
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
* v2.0 2017-02-28 添加:创建时间
* @param <EK> 它是ExpireMap的<K>,只是Java编码时,无法重复定义,所以写成了<EK>,其实就是同一个对象。
* @param <EV> 它是ExpireMap的<V>,只是Java编码时,无法重复定义,所以写成了<EV>,其实就是同一个对象。
*/
class ExpireElement<EK ,EV> implements Expire<EK ,EV> ,Cloneable
{
private static final long serialVersionUID = -7996663565815856686L;
private EK key;
private EV value;
/** 时间戳。保存期满时间。0表示永远有效 */
private long time;
/** 创建时间(首次将Key添加到集合时的时间) */
private Date createTime;
public ExpireElement(EK i_Key ,EV i_Value)
{
this(i_Key ,i_Value ,0L ,new Date());
}
public ExpireElement(EK i_Key ,EV i_Value ,long i_Time)
{
this(i_Key ,i_Value ,i_Time ,new Date());
}
public ExpireElement(EK i_Key ,EV i_Value ,Date i_CreateTime)
{
this(i_Key ,i_Value ,0L ,new Date());
}
public ExpireElement(EK i_Key ,EV i_Value ,long i_Time ,Date i_CreateTime)
{
this.key = i_Key;
this.value = i_Value;
this.time = i_Time;
this.createTime = i_CreateTime;
}
/**
* 检查是否过期失效(会有可能引发递归检查)
*
* 当过期失效时,内部会消积删除
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @return
*/
private ExpireElement<EK ,EV> checkExpire()
{
return this.checkExpire(true);
}
/**
* 检查是否过期失效
*
* 当过期失效时,内部会消积删除
*
* @author ZhengWei(HY)
* @createDate 2016-02-24
* @version v1.0
*
* @param i_Recursive 是否引发递归检查
* @return
*/
private ExpireElement<EK ,EV> checkExpire(boolean i_Recursive)
{
if ( this.time > 0L )
{
if ( Date.getNowTime().getTime() <= this.time )
{
return this;
}
else
{