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

org.switchyard.rhq.plugin.ServiceBindingResourceComponent Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * http://www.apache.org/licenses/LICENSE-2.0
 * 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 org.switchyard.rhq.plugin;

import static org.switchyard.rhq.plugin.SwitchYardConstants.DMR_START_GATEWAY;
import static org.switchyard.rhq.plugin.SwitchYardConstants.DMR_STOP_GATEWAY;
import static org.switchyard.rhq.plugin.SwitchYardConstants.DMR_RESET_METRICS;
import static org.switchyard.rhq.plugin.SwitchYardConstants.METRIC_STATE;
import static org.switchyard.rhq.plugin.SwitchYardConstants.OPERATION_START;
import static org.switchyard.rhq.plugin.SwitchYardConstants.OPERATION_STOP;
import static org.switchyard.rhq.plugin.SwitchYardConstants.PARAM_APPLICATION_NAME;
import static org.switchyard.rhq.plugin.SwitchYardConstants.PARAM_NAME;
import static org.switchyard.rhq.plugin.SwitchYardConstants.PARAM_SERVICE_NAME;
import static org.switchyard.rhq.plugin.SwitchYardConstants.PARAM_TYPE;

import java.util.Set;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.rhq.core.domain.configuration.Configuration;
import org.rhq.core.domain.measurement.AvailabilityType;
import org.rhq.core.domain.measurement.MeasurementDataNumeric;
import org.rhq.core.domain.measurement.MeasurementDataTrait;
import org.rhq.core.domain.measurement.MeasurementReport;
import org.rhq.core.domain.measurement.MeasurementScheduleRequest;
import org.rhq.core.pluginapi.measurement.MeasurementFacet;
import org.rhq.core.pluginapi.operation.OperationFacet;
import org.rhq.core.pluginapi.operation.OperationResult;
import org.rhq.modules.plugins.jbossas7.BaseComponent;
import org.rhq.modules.plugins.jbossas7.ManagedASComponent;
import org.rhq.modules.plugins.jbossas7.json.Address;
import org.rhq.modules.plugins.jbossas7.json.Operation;
import org.switchyard.rhq.plugin.model.Application;
import org.switchyard.rhq.plugin.model.Gateway;
import org.switchyard.rhq.plugin.model.GatewayMetrics;
import org.switchyard.rhq.plugin.model.Service;
import org.switchyard.rhq.plugin.operations.ResetServiceMetrics;
import org.switchyard.rhq.plugin.operations.StartGateway;
import org.switchyard.rhq.plugin.operations.StopGateway;

/**
 * SwitchYard Service Binding Resource Component
 */
public class ServiceBindingResourceComponent extends BaseSwitchYardResourceComponent implements MeasurementFacet, OperationFacet {
    /**
     * The logger instance.
     */
    private static Log LOG = LogFactory.getLog(ServiceBindingResourceComponent.class);
    
    protected Log getLog() {
        return LOG;
    }

    @Override
    public AvailabilityType getAvailability() {
        final Gateway gateway = getGateway();
        return (gateway == null) ? AvailabilityType.DOWN : AvailabilityType.UP;
    }

    public Gateway getGateway() {
        final String gatewayKey = getResourceContext().getResourceKey();
        return getResourceContext().getParentResourceComponent().getGateways().get(gatewayKey);
    }

    public Service getService() {
        return getResourceContext().getParentResourceComponent().getService();
    }

    public Application getApplication() {
        return getResourceContext().getParentResourceComponent().getApplication();
    }

    public GatewayMetrics getGatewayMetrics() {
        final String operationKey = getResourceContext().getResourceKey();
        return getResourceContext().getParentResourceComponent().getGatewayMetrics().get(operationKey);
    }

    public void clearApplications() {
        getResourceContext().getParentResourceComponent().clearApplications();
    }

    @Override
    public void getValues(final MeasurementReport report, final Set requests) throws Exception {
        final GatewayMetrics metrics = getGatewayMetrics();
        final Gateway gateway = getGateway();
        if ((metrics != null) && (gateway != null)) {
            for (MeasurementScheduleRequest request: requests) {
                final MeasurementDataNumeric measurementData = getCommonMetric(request, metrics);
                if (measurementData != null) {
                    report.addData(measurementData);
                } else {
                    final String name = request.getName();
                    if (METRIC_STATE.equals(name)) {
                        report.addData(new MeasurementDataTrait(request, gateway.getState()));
                    } else if (LOG.isDebugEnabled()) {
                        LOG.debug("Unable to collect Service Binding measurement " + request.getName());
                    }
                }
            }
        }
    }

    private Address getAddress() {
        BaseComponent component = null;
        ServiceResourceComponent src = this.getResourceContext().getParentResourceComponent();
        if (src != null && src.getResourceContext() != null && src.getResourceContext().getParentResourceComponent() != null) {
            ApplicationResourceComponent arc = src.getResourceContext().getParentResourceComponent();
            if (arc != null && arc.getResourceContext() != null && arc.getResourceContext().getParentResourceComponent() != null) {
                SwitchYardResourceComponent syrc = arc.getResourceContext().getParentResourceComponent();
                if (syrc != null && syrc.getResourceContext() != null && syrc.getResourceContext().getParentResourceComponent() != null) {
                    component = syrc.getResourceContext().getParentResourceComponent();
                }
            }
        }

        String path;
        String parentPath = null;
        if (component != null) {
            parentPath = component.getPath();
        }

        if (parentPath == null || parentPath.isEmpty()) {
            parentPath = "";
        }
        path = parentPath;

        if (component instanceof ManagedASComponent) {
            if (path.startsWith("host=")) {
                path = path.replaceAll(",server-config=", ",server=");
                parentPath = parentPath.replaceAll(",server-config=", ",server=");

                Address addr = new Address(parentPath + "," + "subsystem=switchyard");
                return addr;
            } else {
                return null;
            }
        } else {
            return null;
        }
    }

    private Operation getStartGateway(String applicationName, String compositeName, String gatewayName,
            String type) {
        Operation operation = new StartGateway(applicationName, compositeName, gatewayName, type);

        Address addr = getAddress();
        if (addr != null) {
            operation = new Operation(DMR_START_GATEWAY, addr);

            operation.addAdditionalProperty(PARAM_APPLICATION_NAME, applicationName);
            operation.addAdditionalProperty(PARAM_SERVICE_NAME, compositeName);
            operation.addAdditionalProperty(PARAM_NAME, gatewayName);
            operation.addAdditionalProperty(PARAM_TYPE, type);
        }

        return operation;
    }

    private Operation getStopGateway(String applicationName, String compositeName, String gatewayName,
            String type) {
        Operation operation = new StopGateway(applicationName, compositeName, gatewayName, type);

        Address addr = getAddress();
        if (addr != null) {
            operation = new Operation(DMR_STOP_GATEWAY, addr);

            operation.addAdditionalProperty(PARAM_APPLICATION_NAME, applicationName);
            operation.addAdditionalProperty(PARAM_SERVICE_NAME, compositeName);
            operation.addAdditionalProperty(PARAM_NAME, gatewayName);
            operation.addAdditionalProperty(PARAM_TYPE, type);
        }

        return operation;
    }

    @Override
    public OperationResult invokeOperation(final String name, final Configuration parameters) throws InterruptedException, Exception {
        if (OPERATION_START.equals(name)) {
            final String bindingKey = getResourceContext().getResourceKey();
            final Service service = getService();
            if (service != null) {
                final Application application = getApplication();
                if (application != null) {
                    final String serviceName = service.getName().toString();
                    final String applicationName = application.getName().toString();
                    execute(getStartGateway(applicationName, serviceName, bindingKey, "service"), Void.class);
                    clearApplications();
                }
            }
        } else if (OPERATION_STOP.equals(name)) {
            final String bindingKey = getResourceContext().getResourceKey();
            final Service service = getService();
            if (service != null) {
                final Application application = getApplication();
                if (application != null) {
                    final String serviceName = service.getName().toString();
                    final String applicationName = application.getName().toString();
                    execute(getStopGateway(applicationName, serviceName, bindingKey, "service"), Void.class);
                    clearApplications();
                }
            }
        } else if (LOG.isDebugEnabled()) {
            LOG.warn("Unknown Service Binding operation " + name);
        }
        return null;
    }

    public  T execute(final Operation operation, Class clazz) {
        return getResourceContext().getParentResourceComponent().execute(operation, clazz);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy