001/**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.camel.management.mbean;
018
019import java.util.Map;
020
021import javax.management.openmbean.CompositeData;
022import javax.management.openmbean.CompositeDataSupport;
023import javax.management.openmbean.CompositeType;
024import javax.management.openmbean.TabularData;
025import javax.management.openmbean.TabularDataSupport;
026
027import org.apache.camel.CamelContext;
028import org.apache.camel.RuntimeCamelException;
029import org.apache.camel.api.management.ManagedResource;
030import org.apache.camel.api.management.mbean.CamelOpenMBeanTypes;
031import org.apache.camel.api.management.mbean.ManagedSendDynamicProcessorMBean;
032import org.apache.camel.model.ProcessorDefinition;
033import org.apache.camel.processor.SendDynamicProcessor;
034import org.apache.camel.spi.EndpointUtilizationStatistics;
035import org.apache.camel.spi.ManagementStrategy;
036import org.apache.camel.util.URISupport;
037
038@ManagedResource(description = "Managed SendDynamicProcessor")
039public class ManagedSendDynamicProcessor extends ManagedProcessor implements ManagedSendDynamicProcessorMBean {
040    private final SendDynamicProcessor processor;
041    private String uri;
042    private boolean sanitize;
043
044    public ManagedSendDynamicProcessor(CamelContext context, SendDynamicProcessor processor, ProcessorDefinition<?> definition) {
045        super(context, processor, definition);
046        this.processor = processor;
047    }
048
049    public void init(ManagementStrategy strategy) {
050        super.init(strategy);
051        this.sanitize = strategy.getManagementAgent().getMask() != null ? strategy.getManagementAgent().getMask() : false;
052        if (sanitize) {
053            uri = URISupport.sanitizeUri(processor.getUri());
054        } else {
055            uri = processor.getUri();
056        }
057    }
058
059    @Override
060    public void reset() {
061        super.reset();
062        if (processor.getEndpointUtilizationStatistics() != null) {
063            processor.getEndpointUtilizationStatistics().clear();
064        }
065    }
066
067    @Override
068    public Boolean getSupportExtendedInformation() {
069        return true;
070    }
071
072    public SendDynamicProcessor getProcessor() {
073        return processor;
074    }
075
076    public String getUri() {
077        return uri;
078    }
079
080    public String getMessageExchangePattern() {
081        if (processor.getPattern() != null) {
082            return processor.getPattern().name();
083        } else {
084            return null;
085        }
086    }
087
088    public Integer getCacheSize() {
089        return processor.getCacheSize();
090    }
091
092    public Boolean isIgnoreInvalidEndpoint() {
093        return processor.isIgnoreInvalidEndpoint();
094    }
095
096    public Boolean isAllowOptimisedComponents() {
097        return processor.isAllowOptimisedComponents();
098    }
099
100    public Boolean isOptimised() {
101        return processor.getDynamicAware() != null;
102    }
103
104    @Override
105    public TabularData extendedInformation() {
106        try {
107            TabularData answer = new TabularDataSupport(CamelOpenMBeanTypes.endpointsUtilizationTabularType());
108
109            EndpointUtilizationStatistics stats = processor.getEndpointUtilizationStatistics();
110            if (stats != null) {
111                for (Map.Entry<String, Long> entry : stats.getStatistics().entrySet()) {
112                    CompositeType ct = CamelOpenMBeanTypes.endpointsUtilizationCompositeType();
113                    String url = entry.getKey();
114                    if (sanitize) {
115                        url = URISupport.sanitizeUri(url);
116                    }
117
118                    Long hits = entry.getValue();
119                    if (hits == null) {
120                        hits = 0L;
121                    }
122
123                    CompositeData data = new CompositeDataSupport(ct, new String[]{"url", "hits"}, new Object[]{url, hits});
124                    answer.put(data);
125                }
126            }
127            return answer;
128        } catch (Exception e) {
129            throw RuntimeCamelException.wrapRuntimeCamelException(e);
130        }
131    }
132
133}