
org.apache.rocketmq.remoting.protocol.RequestHeaderRegistry Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.rocketmq.remoting.protocol;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.apache.rocketmq.common.action.RocketMQAction;
import org.apache.rocketmq.remoting.CommandCustomHeader;
import org.reflections.Reflections;
import org.reflections.scanners.SubTypesScanner;
import org.reflections.util.ClasspathHelper;
import org.reflections.util.ConfigurationBuilder;
public class RequestHeaderRegistry {
private static final String PACKAGE_NAME = "org.apache.rocketmq.remoting.protocol.header";
private final Map> requestHeaderMap = new HashMap<>();
public static RequestHeaderRegistry getInstance() {
return RequestHeaderRegistryHolder.INSTANCE;
}
public void initialize() {
Reflections reflections = new Reflections(new ConfigurationBuilder()
.setUrls(ClasspathHelper.forPackage(PACKAGE_NAME))
.setScanners(new SubTypesScanner(false)));
Set> classes = reflections.getSubTypesOf(CommandCustomHeader.class);
classes.forEach(this::registerHeader);
}
public Class extends CommandCustomHeader> getRequestHeader(int requestCode) {
return this.requestHeaderMap.get(requestCode);
}
private void registerHeader(Class extends CommandCustomHeader> clazz) {
if (!clazz.isAnnotationPresent(RocketMQAction.class)) {
return;
}
RocketMQAction action = clazz.getAnnotation(RocketMQAction.class);
this.requestHeaderMap.putIfAbsent(action.value(), clazz);
}
private static class RequestHeaderRegistryHolder {
private static final RequestHeaderRegistry INSTANCE = new RequestHeaderRegistry();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy