Skip to content
This repository was archived by the owner on Jan 24, 2024. It is now read-only.

Commit 45bd29c

Browse files
gaoran10eolivelli
andauthored
[improvement] Remove expensive useless String.format() in canConsumeAsync (#1893)
(cherry picked from commit fa63a4a) This PR is used to cherry-pick the commit datastax/starlight-for-kafka@fa63a4a. ### Motivation The String.format() is an expensive operation in the method canConsumeAsync. ### Modifications Remove the String.format() operation. Co-authored-by: Enrico Olivelli <enrico.olivelli@datastax.com>
1 parent 8287e60 commit 45bd29c

File tree

1 file changed

+17
-26
lines changed

1 file changed

+17
-26
lines changed

kafka-impl/src/main/java/io/streamnative/pulsar/handlers/kop/security/auth/SimpleAclAuthorizer.java

+17-26
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
*/
1414
package io.streamnative.pulsar.handlers.kop.security.auth;
1515

16-
17-
import static com.google.common.base.Preconditions.checkArgument;
18-
1916
import io.streamnative.pulsar.handlers.kop.security.KafkaPrincipal;
2017
import java.util.concurrent.CompletableFuture;
2118
import lombok.extern.slf4j.Slf4j;
@@ -70,9 +67,7 @@ private CompletableFuture<Boolean> authorizeTenantPermission(KafkaPrincipal prin
7067

7168
@Override
7269
public CompletableFuture<Boolean> canAccessTenantAsync(KafkaPrincipal principal, Resource resource) {
73-
checkArgument(resource.getResourceType() == ResourceType.TENANT,
74-
String.format("Expected resource type is TENANT, but have [%s]", resource.getResourceType()));
75-
70+
checkResourceType(resource, ResourceType.TENANT);
7671
CompletableFuture<Boolean> canAccessFuture = new CompletableFuture<>();
7772
authorizeTenantPermission(principal, resource).whenComplete((hasPermission, ex) -> {
7873
if (ex != null) {
@@ -92,9 +87,7 @@ public CompletableFuture<Boolean> canAccessTenantAsync(KafkaPrincipal principal,
9287

9388
@Override
9489
public CompletableFuture<Boolean> canCreateTopicAsync(KafkaPrincipal principal, Resource resource) {
95-
checkArgument(resource.getResourceType() == ResourceType.TOPIC,
96-
String.format("Expected resource type is TOPIC, but have [%s]", resource.getResourceType()));
97-
90+
checkResourceType(resource, ResourceType.TOPIC);
9891
TopicName topicName = TopicName.get(resource.getName());
9992
return authorizationService.allowNamespaceOperationAsync(
10093
topicName.getNamespaceObject(),
@@ -105,9 +98,7 @@ public CompletableFuture<Boolean> canCreateTopicAsync(KafkaPrincipal principal,
10598

10699
@Override
107100
public CompletableFuture<Boolean> canDeleteTopicAsync(KafkaPrincipal principal, Resource resource) {
108-
checkArgument(resource.getResourceType() == ResourceType.TOPIC,
109-
String.format("Expected resource type is TOPIC, but have [%s]", resource.getResourceType()));
110-
101+
checkResourceType(resource, ResourceType.TOPIC);
111102
TopicName topicName = TopicName.get(resource.getName());
112103
return authorizationService.allowNamespaceOperationAsync(
113104
topicName.getNamespaceObject(),
@@ -118,9 +109,7 @@ public CompletableFuture<Boolean> canDeleteTopicAsync(KafkaPrincipal principal,
118109

119110
@Override
120111
public CompletableFuture<Boolean> canAlterTopicAsync(KafkaPrincipal principal, Resource resource) {
121-
checkArgument(resource.getResourceType() == ResourceType.TOPIC,
122-
String.format("Expected resource type is TOPIC, but have [%s]", resource.getResourceType()));
123-
112+
checkResourceType(resource, ResourceType.TOPIC);
124113
TopicName topicName = TopicName.get(resource.getName());
125114
return authorizationService.allowTopicPolicyOperationAsync(
126115
topicName, PolicyName.PARTITION, PolicyOperation.WRITE,
@@ -129,26 +118,22 @@ public CompletableFuture<Boolean> canAlterTopicAsync(KafkaPrincipal principal, R
129118

130119
@Override
131120
public CompletableFuture<Boolean> canManageTenantAsync(KafkaPrincipal principal, Resource resource) {
132-
checkArgument(resource.getResourceType() == ResourceType.TOPIC,
133-
String.format("Expected resource type is TOPIC, but have [%s]", resource.getResourceType()));
134-
121+
checkResourceType(resource, ResourceType.TOPIC);
135122
TopicName topicName = TopicName.get(resource.getName());
136123
return authorizationService.allowTopicOperationAsync(
137124
topicName, TopicOperation.LOOKUP, principal.getName(), principal.getAuthenticationData());
138125
}
139126

140127
@Override
141128
public CompletableFuture<Boolean> canLookupAsync(KafkaPrincipal principal, Resource resource) {
142-
checkArgument(resource.getResourceType() == ResourceType.TOPIC,
143-
String.format("Expected resource type is TOPIC, but have [%s]", resource.getResourceType()));
129+
checkResourceType(resource, ResourceType.TOPIC);
144130
TopicName topicName = TopicName.get(resource.getName());
145131
return authorizationService.canLookupAsync(topicName, principal.getName(), principal.getAuthenticationData());
146132
}
147133

148134
@Override
149135
public CompletableFuture<Boolean> canGetTopicList(KafkaPrincipal principal, Resource resource) {
150-
checkArgument(resource.getResourceType() == ResourceType.NAMESPACE,
151-
String.format("Expected resource type is NAMESPACE, but have [%s]", resource.getResourceType()));
136+
checkResourceType(resource, ResourceType.NAMESPACE);
152137
return authorizationService.allowNamespaceOperationAsync(
153138
NamespaceName.get(resource.getName()),
154139
NamespaceOperation.GET_TOPICS,
@@ -158,19 +143,25 @@ public CompletableFuture<Boolean> canGetTopicList(KafkaPrincipal principal, Reso
158143

159144
@Override
160145
public CompletableFuture<Boolean> canProduceAsync(KafkaPrincipal principal, Resource resource) {
161-
checkArgument(resource.getResourceType() == ResourceType.TOPIC,
162-
String.format("Expected resource type is TOPIC, but have [%s]", resource.getResourceType()));
146+
checkResourceType(resource, ResourceType.TOPIC);
163147
TopicName topicName = TopicName.get(resource.getName());
164148
return authorizationService.canProduceAsync(topicName, principal.getName(), principal.getAuthenticationData());
165149
}
166150

167151
@Override
168152
public CompletableFuture<Boolean> canConsumeAsync(KafkaPrincipal principal, Resource resource) {
169-
checkArgument(resource.getResourceType() == ResourceType.TOPIC,
170-
String.format("Expected resource type is TOPIC, but have [%s]", resource.getResourceType()));
153+
checkResourceType(resource, ResourceType.TOPIC);
171154
TopicName topicName = TopicName.get(resource.getName());
172155
return authorizationService.canConsumeAsync(
173156
topicName, principal.getName(), principal.getAuthenticationData(), "");
174157
}
175158

159+
private void checkResourceType(Resource actual, ResourceType expected) {
160+
if (actual.getResourceType() != expected) {
161+
throw new IllegalArgumentException(
162+
String.format("Expected resource type is [%s], but have [%s]",
163+
expected, actual.getResourceType()));
164+
}
165+
}
166+
176167
}

0 commit comments

Comments
 (0)