All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rhq.plugins.apache.util.VHostSpec Maven / Gradle / Ivy

There is a newer version: 4.13.0
Show newest version
/*
 * RHQ Management Platform
 * Copyright (C) 2005-2011 Red Hat, Inc.
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation version 2 of the License.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

package org.rhq.plugins.apache.util;

import java.util.ArrayList;
import java.util.List;

import org.rhq.plugins.apache.ApacheVirtualHostServiceDiscoveryComponent;
import org.rhq.plugins.apache.parser.ApacheDirective;
import org.rhq.plugins.apache.parser.ApacheDirectiveTree;

public class VHostSpec {
    public String serverName;
    public List hosts;

    public static List detect(ApacheDirectiveTree config) {
        List virtualHosts = config.search("/ ret = new ArrayList(virtualHosts.size());

        for (ApacheDirective dir : virtualHosts) {
            ret.add(new VHostSpec(dir));
        }

        return ret;
    }

    public VHostSpec() {

    }

    public VHostSpec(ApacheDirective vhostDirective) {
        hosts = new ArrayList(vhostDirective.getValues());

        List serverNames = vhostDirective.getChildByName("ServerName");
        serverName = null;
        if (serverNames.size() > 0) {
            serverName = serverNames.get(serverNames.size() - 1).getValuesAsString();
        }
    }

    @Override
    public String toString() {
        return ApacheVirtualHostServiceDiscoveryComponent.createResourceKey(serverName, hosts);
    }

    @Override
    public int hashCode() {
        int ret = serverName != null ? serverName.hashCode() : 1;
        for (String host : hosts) {
            ret = 31 * ret * host.hashCode();
        }

        return ret;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }

        if (!(o instanceof VHostSpec)) {
            return false;
        }

        VHostSpec other = (VHostSpec) o;

        boolean serverNameEqual = serverName == null ? other.serverName == null : serverName.equals(other.serverName);

        if (!serverNameEqual) {
            return false;
        }

        return hosts.equals(other.hosts);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy