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

org.switchyard.console.client.ui.metrics.ServiceDetailsWidget Maven / Gradle / Ivy

/*
 * 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.console.client.ui.metrics;

import org.jboss.as.console.client.layout.OneToOneLayout;
import org.switchyard.console.client.Singleton;
import org.switchyard.console.client.model.MessageMetrics;
import org.switchyard.console.client.model.ServiceMetrics;

import com.google.gwt.user.client.ui.Widget;

/**
 * ServiceDetailsWidget
 * 
 * Provides a widget for displaying a {@link ServiceMetrics}.
 */
public class ServiceDetailsWidget implements MetricsDetailsWidget {

    private MessageMetricsViewer _serviceMetricsViewer;
    private ServiceReferenceMetricsList _serviceReferenceMetricsList;
    private ServiceOperationMetricsList _serviceOperationMetricsList;
    private GatewayMetricsList _gatewayMetricsList;

    /**
     * Create a new ServiceDetailsWidget.
     */
    public ServiceDetailsWidget() {
    }

    /**
     * @return the widget
     */
    @Override
    public Widget asWidget() {
        _serviceMetricsViewer = new MessageMetricsViewer(true);
        _serviceOperationMetricsList = new ServiceOperationMetricsList();
        _serviceReferenceMetricsList = new ServiceReferenceMetricsList();
        _gatewayMetricsList = new GatewayMetricsList();

        OneToOneLayout serviceMetricsLayout = new OneToOneLayout().setPlain(true).setHeadline(Singleton.MESSAGES.label_serviceMetrics())
                .setDescription(Singleton.MESSAGES.description_serviceMetrics())
                .setMaster(null, _serviceMetricsViewer.asWidget())
                .addDetail(Singleton.MESSAGES.label_gatewayMetrics(), _gatewayMetricsList.asWidget())
                .addDetail(Singleton.MESSAGES.label_operationMetrics(), _serviceOperationMetricsList.asWidget())
                .addDetail(Singleton.MESSAGES.label_referenceMetrics(), _serviceReferenceMetricsList.asWidget());
        return serviceMetricsLayout.build();
    }

    /**
     * Updates the widget with the information for the specified service.
     * 
     * @param metrics the metrics for the selected service.
     * @param systemMetrics the metrics for the overall system.
     */
    @Override
    public void setMetrics(ServiceMetrics metrics, MessageMetrics systemMetrics) {
        if (metrics == null) {
            _serviceMetricsViewer.clear();
            _serviceReferenceMetricsList.setServiceMetrics(null);
            _serviceOperationMetricsList.setServiceMetrics(null);
            _gatewayMetricsList.setServiceMetrics(null);
            return;
        }
        if (systemMetrics == null) {
            _serviceMetricsViewer.setMessageMetrics(metrics);
        } else {
            _serviceMetricsViewer.setMessageMetrics(metrics, systemMetrics.getTotalCount(),
                    systemMetrics.getTotalProcessingTime());
        }
        _serviceReferenceMetricsList.setServiceMetrics(metrics);
        _serviceOperationMetricsList.setServiceMetrics(metrics);
        _gatewayMetricsList.setServiceMetrics(metrics);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy