ws.argo.responder.plugin.configfile.ServiceListConfiguration.java Source code

Java tutorial

Introduction

Here is the source code for ws.argo.responder.plugin.configfile.ServiceListConfiguration.java

Source

/*
 * Copyright 2015 Jeff Simpson.
 *
 * Licensed under the MIT License, (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://opensource.org/licenses/MIT
 *
 * 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 ws.argo.responder.plugin.configfile;

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

import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.HierarchicalConfiguration;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import ws.argo.common.config.ResolvingXMLConfiguration;
import ws.argo.wireline.response.ServiceWrapper;

/**
 * This class encapsulated the Service list for the ConfigFile Probe Handler.
 * 
 * @author jmsimpson
 *
 */
public class ServiceListConfiguration extends ResolvingXMLConfiguration {

    private static final Logger LOGGER = LogManager.getLogger(ServiceListConfiguration.class.getName());

    private ArrayList<ServiceWrapper> _serviceList;

    public ServiceListConfiguration() {
    }

    public ServiceListConfiguration(String filename) throws ConfigurationException {
        super(filename);
    }

    public ArrayList<ServiceWrapper> getServiceList() {
        return _serviceList;
    }

    @Override
    protected void initializeConfiguration() {

        _serviceList = new ArrayList<ServiceWrapper>();

        List<HierarchicalConfiguration> services = _config.configurationsAt("service");

        for (HierarchicalConfiguration service : services) {
            ServiceWrapper serviceBean = new ServiceWrapper(service.getString("[@id]"));
            serviceBean.setServiceContractID(service.getString("[@contractID]"));

            serviceBean.setServiceName(service.getString("serviceName"));
            serviceBean.setDescription(service.getString("description"));
            serviceBean.setContractDescription(service.getString("contractDescription"));
            serviceBean.setConsumability(service.getString("consumability"));
            serviceBean.setTtl(service.getString("ttl"));

            List<HierarchicalConfiguration> apList = service.configurationsAt("accessPoints.accessPoint");

            for (HierarchicalConfiguration ap : apList) {
                String xmlData = ap.getString("data");
                String dataType = ap.getString("data[@type]");

                String label = ap.getString("[@label]");
                String ipAddr = ap.getString("ipAddress");
                String port = ap.getString("port");
                String url = ap.getString("url");

                serviceBean.addAccessPoint(label, ipAddr, port, url, dataType, xmlData);
            }

            _serviceList.add(serviceBean);

        }

    }

    @Override
    protected void warn(String msg) {
        LOGGER.warn(msg);
    }

    @Override
    protected void info(String msg) {
        LOGGER.info(msg);
    }

    @Override
    protected void error(String msg) {
        LOGGER.error(msg);
    }

    @Override
    protected void error(String msg, Throwable e) {
        LOGGER.error(msg, e);
    }

}