/* * JBoss, Home of Professional Open Source. * Copyright 2012, 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.jboss.as.controller.interfaces; import java.net.InetAddress; import java.net.NetworkInterface; import java.net.SocketException; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.wildfly.common.Assert; /** * {@link InterfaceCriteria} that tests whether a given network interface and * address satisfy <i>any</i> of a contained set of {@link InterfaceCriteria}. * * @author Brian Stansberry */ public class AnyInterfaceCriteria implements InterfaceCriteria { private static final long serialVersionUID = 3384500068401101329L; private final Set<InterfaceCriteria> criteria = new HashSet<InterfaceCriteria>(); /** * Creates a new AnyInterfaceCriteria * * @param criteria the criteria to check to see if any are satisfied. * Cannot be <code>null</code> * * @throws IllegalArgumentException if <code>criteria</code> is <code>null</code> */ public AnyInterfaceCriteria(Set<InterfaceCriteria> criteria) { Assert.checkNotNullParam("criteria", criteria); this.criteria.addAll(criteria); } @Override public Map<NetworkInterface, Set<InetAddress>> getAcceptableAddresses(Map<NetworkInterface, Set<InetAddress>> candidates) throws SocketException { final Map<NetworkInterface, Set<InetAddress>> result = new HashMap<NetworkInterface, Set<InetAddress>>(); for (InterfaceCriteria ic : criteria) { final Map<NetworkInterface, Set<InetAddress>> testee = AbstractInterfaceCriteria.cloneCandidates(candidates); final Map<NetworkInterface, Set<InetAddress>> accepted = ic.getAcceptableAddresses(testee); addAccepted(accepted, result); } return result; } @Override public int hashCode() { return criteria.hashCode(); } @Override public boolean equals(Object o) { if (!(o instanceof AnyInterfaceCriteria)) { return false; } return criteria.equals(((AnyInterfaceCriteria)o).criteria); } private void addAccepted(Map<NetworkInterface, Set<InetAddress>> accepted, Map<NetworkInterface, Set<InetAddress>> result) { for (Map.Entry<NetworkInterface, Set<InetAddress>> entry : accepted.entrySet()) { Set<InetAddress> addresses = result.get(entry.getKey()); if (addresses == null) { result.put(entry.getKey(), new HashSet<InetAddress>(entry.getValue())); } else { addresses.addAll(entry.getValue()); } } } }