/** * 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 java.net.InetAddress; import org.jboss.modcluster.container.Connector; import org.wildfly.extension.undertow.AjpListenerService; import org.wildfly.extension.undertow.HttpListenerService; import org.wildfly.extension.undertow.UndertowListener; import org.wildfly.mod_cluster.undertow.metric.BytesReceivedStreamSourceConduit; import org.wildfly.mod_cluster.undertow.metric.BytesSentStreamSinkConduit; import org.wildfly.mod_cluster.undertow.metric.RequestCountHttpHandler; import org.wildfly.mod_cluster.undertow.metric.RunningRequestsHttpHandler; /** * Adapts {@link UndertowListener} to a {@link Connector}. * * @author Radoslav Husar * @version Aug 2013 * @since 8.0 */ public class UndertowConnector implements Connector { private final UndertowListener listener; private InetAddress address; public UndertowConnector(UndertowListener listener) { this.listener = listener; } @Override public boolean isReverse() { return false; } @Override public Type getType() { if (this.listener instanceof AjpListenerService) { return Type.AJP; } else if (this.listener instanceof HttpListenerService) { if (this.listener.isSecure()) { return Type.HTTPS; } else { return Type.HTTP; } } return null; } @Override public InetAddress getAddress() { return address == null ? this.listener.getSocketBinding().getAddress() : address; } @Override public void setAddress(InetAddress address) { this.address = address; } @Override public int getPort() { return this.listener.getSocketBinding().getAbsolutePort(); } @Override public boolean isAvailable() { return !this.listener.isShutdown(); } /** * @return int value "-1" to indicate this connector does not maintain corresponding maximum number of threads; capacity * needs to be defined instead */ @Override public int getMaxThreads() { return -1; } /** * @return int number of <em>running requests</em> on all connectors as opposed to busy threads */ @Override public int getBusyThreads() { return RunningRequestsHttpHandler.getRunningRequestCount(); } /** * @return long number of bytes sent on all connectors */ @Override public long getBytesSent() { return BytesSentStreamSinkConduit.getBytesSent(); } /** * @return long number of bytes received on all listeners without HTTP request size itself */ @Override public long getBytesReceived() { return BytesReceivedStreamSourceConduit.getBytesReceived(); } /** * @return long number of requests on all listeners as opposed to only this 'connector' */ @Override public long getRequestCount() { return RequestCountHttpHandler.getRequestCount(); } @Override public String toString() { return this.listener.getName(); } @Override public boolean equals(Object object) { if (!(object instanceof UndertowConnector)) return false; UndertowConnector connector = (UndertowConnector) object; return this.listener.getName().equals(connector.listener.getName()); } @Override public int hashCode() { return this.listener.getName().hashCode(); } }