org.apache.camel.component.undertow.handlers.CamelPathTemplateHandler 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.camel.component.undertow.handlers;
import java.util.HashMap;
import java.util.Map;
import io.undertow.server.HttpHandler;
import io.undertow.server.HttpServerExchange;
import io.undertow.server.handlers.PathTemplateHandler;
/**
* Extended PathTemplateHandler to monitor add/remove handlers. Also this enables hot swapping a default handler.
*/
public class CamelPathTemplateHandler implements HttpHandler {
private final Map handlers = new HashMap<>();
private final Wrapper defaultHandlerWrapper = new Wrapper();
private final PathTemplateHandler delegate;
private String handlerString;
public CamelPathTemplateHandler(CamelMethodHandler defaultHandler) {
defaultHandlerWrapper.set(defaultHandler);
delegate = new PathTemplateHandler(defaultHandlerWrapper);
}
@Override
public void handleRequest(HttpServerExchange exchange) throws Exception {
delegate.handleRequest(exchange);
}
public synchronized CamelPathTemplateHandler add(final String uriTemplate, final CamelMethodHandler handler) {
delegate.add(uriTemplate, handler);
handlers.put(uriTemplate, handler);
handlerString = null;
return this;
}
public synchronized CamelPathTemplateHandler remove(final String uriTemplate) {
delegate.remove(uriTemplate);
handlers.remove(uriTemplate);
handlerString = null;
return this;
}
public CamelMethodHandler get(final String uriTemplate) {
return handlers.get(uriTemplate);
}
public boolean isEmpty() {
return handlers.isEmpty();
}
public synchronized CamelMethodHandler getDefault() {
return this.defaultHandlerWrapper.get();
}
public synchronized void setDefault(final CamelMethodHandler defaultHandler) {
this.defaultHandlerWrapper.set(defaultHandler);
handlerString = null;
}
@Override
public String toString() {
if (handlerString == null) {
handlerString = "CamelPathTemplateHandler[default=" + defaultHandlerWrapper.get() + ", " + handlers + "]";
}
return handlerString;
}
static class Wrapper implements HttpHandler {
private CamelMethodHandler handler;
public void set(CamelMethodHandler handler) {
this.handler = handler;
}
public CamelMethodHandler get() {
return this.handler;
}
@Override
public void handleRequest(HttpServerExchange exchange) throws Exception {
handler.handleRequest(exchange);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy