Kafka代码写法总结4Java
文章发布较早,内容可能过时,阅读注意甄别。
# 总结4
# AbstractConfig配置
public class AbstractConfig {
private final Logger log = LoggerFactory.getLogger(getClass());
/**
* Configs for which values have been requested, used to detect unused configs.
* This set must be concurrent modifiable and iterable. It will be modified
* when directly accessed or as a result of RecordingMap access.
*/
private final Set<String> used = ConcurrentHashMap.newKeySet();
/* the original values passed in by the user */
private final Map<String, ?> originals;
/* the parsed values */
private final Map<String, Object> values;
private final ConfigDef definition;
public static final String CONFIG_PROVIDERS_CONFIG = "config.providers";
private static final String CONFIG_PROVIDERS_PARAM = ".param.";
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Metadata
public class Metadata implements Closeable {
private final Logger log;
private final long refreshBackoffMs;
private final long metadataExpireMs;
private int updateVersion; // bumped on every metadata response
private int requestVersion; // bumped on every new topic addition
private long lastRefreshMs;
private long lastSuccessfulRefreshMs;
private KafkaException fatalException;
private Set<String> invalidTopics;
private Set<String> unauthorizedTopics;
private MetadataCache cache = MetadataCache.empty();
private boolean needFullUpdate;
private boolean needPartialUpdate;
private final ClusterResourceListeners clusterResourceListeners;
private boolean isClosed;
private final Map<TopicPartition, Integer> lastSeenLeaderEpochs;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# KafkaFutureImpl任务
/**
* A flexible future which supports call chaining and other asynchronous programming patterns.
*/
public class KafkaFutureImpl<T> extends KafkaFuture<T> {
private final KafkaCompletableFuture<T> completableFuture;
private final boolean isDependant;
public KafkaFutureImpl() {
this(false, new KafkaCompletableFuture<>());
}
private KafkaFutureImpl(boolean isDependant, KafkaCompletableFuture<T> completableFuture) {
this.isDependant = isDependant;
this.completableFuture = completableFuture;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# DataInputStreamReadable数据输入流
public class DataInputStreamReadable implements Readable, Closeable {
protected final DataInputStream input;
public DataInputStreamReadable(DataInputStream input) {
this.input = input;
}
@Override
public byte readByte() {
try {
return input.readByte();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public short readShort() {
try {
return input.readShort();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public int readInt() {
try {
return input.readInt();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public long readLong() {
try {
return input.readLong();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public double readDouble() {
try {
return input.readDouble();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public void readArray(byte[] arr) {
try {
input.readFully(arr);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public int readUnsignedVarint() {
try {
return ByteUtils.readUnsignedVarint(input);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public ByteBuffer readByteBuffer(int length) {
byte[] arr = new byte[length];
readArray(arr);
return ByteBuffer.wrap(arr);
}
@Override
public int readVarint() {
try {
return ByteUtils.readVarint(input);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public long readVarlong() {
try {
return ByteUtils.readVarlong(input);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public int remaining() {
try {
return input.available();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public void close() {
try {
input.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
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
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