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.ManagedEnricherMBean; 032import org.apache.camel.model.EnrichDefinition; 033import org.apache.camel.processor.Enricher; 034import org.apache.camel.spi.EndpointUtilizationStatistics; 035import org.apache.camel.spi.ManagementStrategy; 036import org.apache.camel.util.URISupport; 037 038@ManagedResource(description = "Managed Enricher") 039public class ManagedEnricher extends ManagedProcessor implements ManagedEnricherMBean { 040 private final Enricher processor; 041 private String uri; 042 private boolean sanitize; 043 044 public ManagedEnricher(CamelContext context, Enricher processor, EnrichDefinition definition) { 045 super(context, processor, definition); 046 this.processor = processor; 047 } 048 049 public void init(ManagementStrategy strategy) { 050 super.init(strategy); 051 sanitize = strategy.getManagementAgent().getMask() != null ? strategy.getManagementAgent().getMask() : false; 052 uri = getDefinition().getExpression().getExpression(); 053 if (sanitize) { 054 uri = URISupport.sanitizeUri(uri); 055 } 056 } 057 058 @Override 059 public void reset() { 060 super.reset(); 061 if (processor.getEndpointUtilizationStatistics() != null) { 062 processor.getEndpointUtilizationStatistics().clear(); 063 } 064 } 065 066 @Override 067 public Boolean getSupportExtendedInformation() { 068 return true; 069 } 070 071 @Override 072 public EnrichDefinition getDefinition() { 073 return (EnrichDefinition) super.getDefinition(); 074 } 075 076 @Override 077 public Enricher getProcessor() { 078 return processor; 079 } 080 081 @Override 082 public String getExpressionLanguage() { 083 return getDefinition().getExpression().getLanguage(); 084 } 085 086 @Override 087 public String getExpression() { 088 return uri; 089 } 090 091 @Override 092 public Integer getCacheSize() { 093 return processor.getCacheSize(); 094 } 095 096 @Override 097 public Boolean isIgnoreInvalidEndpoint() { 098 return processor.isIgnoreInvalidEndpoint(); 099 } 100 101 @Override 102 public Boolean isShareUnitOfWork() { 103 return processor.isShareUnitOfWork(); 104 } 105 106 @Override 107 public Boolean isAggregateOnException() { 108 return processor.isAggregateOnException(); 109 } 110 111 @Override 112 public TabularData extendedInformation() { 113 try { 114 TabularData answer = new TabularDataSupport(CamelOpenMBeanTypes.endpointsUtilizationTabularType()); 115 116 EndpointUtilizationStatistics stats = processor.getEndpointUtilizationStatistics(); 117 if (stats != null) { 118 for (Map.Entry<String, Long> entry : stats.getStatistics().entrySet()) { 119 CompositeType ct = CamelOpenMBeanTypes.endpointsUtilizationCompositeType(); 120 String url = entry.getKey(); 121 if (sanitize) { 122 url = URISupport.sanitizeUri(url); 123 } 124 125 Long hits = entry.getValue(); 126 if (hits == null) { 127 hits = 0L; 128 } 129 130 CompositeData data = new CompositeDataSupport(ct, new String[]{"url", "hits"}, new Object[]{url, hits}); 131 answer.put(data); 132 } 133 } 134 return answer; 135 } catch (Exception e) { 136 throw RuntimeCamelException.wrapRuntimeCamelException(e); 137 } 138 } 139 140}