@@ -25,15 +25,15 @@ public class BucketList implements IDataSource {
25
25
private String secretKey ;
26
26
private Configuration configuration ;
27
27
private String bucket ;
28
- private Map <String , String > indexMap ;
29
28
private List <String > antiPrefixes ;
30
29
private Map <String , String []> prefixesMap ;
31
30
private List <String > prefixes ;
32
31
private boolean prefixLeft ;
33
32
private boolean prefixRight ;
33
+ private Map <String , String > indexMap ;
34
34
private int unitLen ;
35
- private int retryTimes = 5 ;
36
35
private int threads ;
36
+ private int retryTimes = 5 ;
37
37
private String savePath ;
38
38
private boolean saveTotal ;
39
39
private String saveFormat ;
@@ -45,19 +45,19 @@ public class BucketList implements IDataSource {
45
45
private ILineProcess <Map <String , String >> processor ; // 定义的资源处理器
46
46
47
47
public BucketList (String accessKey , String secretKey , Configuration configuration , String bucket ,
48
- Map <String , String > indexMap , int unitLen , Map <String , String []> prefixesMap ,
49
- List <String > antiPrefixes , boolean prefixLeft , boolean prefixRight , int threads , String savePath ) {
48
+ List <String > antiPrefixes , Map <String , String []> prefixesMap , boolean prefixLeft , boolean prefixRight ,
49
+ Map <String , String > indexMap , int unitLen , int threads , String savePath ) {
50
50
this .accessKey = accessKey ;
51
51
this .secretKey = secretKey ;
52
52
this .configuration = configuration ;
53
53
this .bucket = bucket ;
54
- setIndexMapWithDefault (indexMap );
55
54
// 先设置 antiPrefixes 后再设置 prefixes,因为可能需要从 prefixes 中去除 antiPrefixes 含有的元素
56
55
this .antiPrefixes = antiPrefixes == null ? new ArrayList <>() : antiPrefixes ;
57
56
this .prefixesMap = prefixesMap == null ? new HashMap <>() : prefixesMap ;
58
57
setPrefixes ();
59
58
this .prefixLeft = prefixLeft ;
60
59
this .prefixRight = prefixRight ;
60
+ setIndexMapWithDefault (indexMap );
61
61
this .unitLen = unitLen ;
62
62
this .threads = threads ;
63
63
this .savePath = savePath ;
@@ -94,12 +94,12 @@ private void setIndexMapWithDefault(Map<String, String> indexMap) {
94
94
// 通过 commonParams 来更新基本参数
95
95
public void updateSettings (CommonParams commonParams ) {
96
96
this .bucket = commonParams .getBucket ();
97
- setIndexMapWithDefault (commonParams .getIndexMap ());
98
97
this .antiPrefixes = commonParams .getAntiPrefixes ();
99
98
this .prefixesMap = commonParams .getPrefixesMap ();
100
99
setPrefixes ();
101
100
this .prefixLeft = commonParams .getPrefixLeft ();
102
101
this .prefixRight = commonParams .getPrefixRight ();
102
+ setIndexMapWithDefault (commonParams .getIndexMap ());
103
103
this .unitLen = commonParams .getUnitLen ();
104
104
this .retryTimes = commonParams .getRetryTimes ();
105
105
this .threads = commonParams .getThreads ();
0 commit comments