/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.wildfly.mod_cluster.undertow; import io.undertow.servlet.api.Deployment; import java.util.ArrayList; import java.util.List; import java.util.Set; import org.jboss.modcluster.container.Context; import org.jboss.modcluster.container.Engine; import org.jboss.modcluster.container.Host; /** * Adapts {@link org.wildfly.extension.undertow.Host} to an {@link Host}. * * @author Radoslav Husar * @since 8.0 */ public class UndertowHost implements Host { private org.wildfly.extension.undertow.Host host; private Engine engine; public UndertowHost(org.wildfly.extension.undertow.Host host, Engine engine) { this.engine = engine; this.host = host; } @Override public String getName() { return this.host.getName(); } @Override public Engine getEngine() { return this.engine; } @Override public Iterable<Context> getContexts() { List<Context> contexts = new ArrayList<>(); this.host.getDeployments().forEach(deployment -> contexts.add(new UndertowContext(deployment, this))); this.host.getLocations().forEach(path -> contexts.add(new LocationContext(path, this))); return contexts; } @Override public Set<String> getAliases() { return this.host.getAllAliases(); } @Override public Context findContext(String path) { String findPath = "".equals(path) ? "/" : path; for (Deployment deployment : this.host.getDeployments()) { if (deployment.getDeploymentInfo().getContextPath().equals(findPath)) { return new UndertowContext(deployment, this); } } return null; } @Override public boolean equals(Object object) { if (!(object instanceof UndertowHost)) return false; UndertowHost host = (UndertowHost) object; return this.getName().equals(host.getName()); } @Override public int hashCode() { return this.host.getName().hashCode(); } @Override public String toString() { return this.host.getName(); } }