1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.jk.common;
import org.apache.jk.core.JkHandler;
import javax.management.MBeanServer;
import javax.management.ObjectName;
import javax.management.Attribute;
import javax.management.MBeanServerFactory;
import java.io.IOException;
/**
* Load the HTTP or RMI adapters for MX4J and JMXRI.
*
* Add "mx.enabled=true" in jk2.properties to enable it.
* You could also select http and/or jrmp protocol,
* with mx.httpPort, mx.httpHost, mxjrmpPort and mx.jrmpPort.
* <p />
* If you run into an error message like
* "SystemId Unknown; Line #12; Column #81; Cannot add attribute name after
* child nodes or before an element is produced. Attribute will be ignored."
* after setting mx.enabled to true, you probably need a newer version
* of Xalan. See the RELEASE-NOTES document section on XML Parsers for
* more information.
*
*/
public class JkMX extends JkHandler
{
MBeanServer mserver;
private boolean enabled=false;
private boolean log4jEnabled=true;
private int httpport=-1;
private String httphost="localhost";
private String authmode="none";
private String authuser=null;
private String authpassword=null;
private int jrmpport=-1;
private String jrmphost="localhost";
private boolean useXSLTProcessor = true;
public JkMX() {
}
/* -------------------- Public methods -------------------- */
/** Enable the MX4J adapters (new way)
*/
public void setEnabled(boolean b) {
enabled=b;
}
public boolean getEnabled() {
return enabled;
}
/** Enable the Log4j MBean)
*/
public void setLog4jEnabled(boolean b) {
log4jEnabled=b;
}
public boolean getLog4jEnabled() {
return log4jEnabled;
}
/** Enable the MX4J adapters (old way, compatible)
*/
public void setPort(int i) {
enabled=(i != -1);
}
public int getPort() {
return ((httpport != -1) ? httpport : jrmpport);
}
/** Enable the MX4J HTTP internal adapter
*/
public void setHttpPort( int i ) {
httpport=i;
}
public int getHttpPort() {
return httpport;
}
public void setHttpHost(String host ) {
this.httphost=host;
}
public String getHttpHost() {
return httphost;
}
public void setAuthMode(String mode) {
authmode=mode;
}
public String getAuthMode() {
return authmode;
}
public void setAuthUser(String user) {
authuser=user;
}
public String getAuthUser() {
return authuser;
}
public void setAuthPassword(String password) {
authpassword=password;
}
public String getAuthPassword() {
return authpassword;
}
/** Enable the MX4J JRMP internal adapter
*/
public void setJrmpPort( int i ) {
jrmpport=i;
}
public int getJrmpPort() {
return jrmpport;
}
public void setJrmpHost(String host ) {
this.jrmphost=host;
}
public String getJrmpHost() {
return jrmphost;
}
public boolean getUseXSLTProcessor() {
return useXSLTProcessor;
}
public void setUseXSLTProcessor(boolean uxsltp) {
useXSLTProcessor = uxsltp;
}
/* ==================== Start/stop ==================== */
ObjectName httpServerName=null;
ObjectName jrmpServerName=null;
/** Initialize the worker. After this call the worker will be
* ready to accept new requests.
*/
public void loadAdapter() throws IOException {
boolean httpAdapterLoaded = false;
boolean jrmpAdapterLoaded = false;
if ((httpport != -1) && classExists("mx4j.adaptor.http.HttpAdaptor")) {
try {
httpServerName = registerObject("mx4j.adaptor.http.HttpAdaptor",
"Http:name=HttpAdaptor");
if( httphost!=null )
mserver.setAttribute(httpServerName, new Attribute("Host", httphost));
mserver.setAttribute(httpServerName, new Attribute("Port", new Integer(httpport)));
if( "none".equals(authmode) || "basic".equals(authmode) || "digest".equals(authmode) )
mserver.setAttribute(httpServerName, new Attribute("AuthenticationMethod", authmode));
if( authuser!=null && authpassword!=null )
mserver.invoke(httpServerName, "addAuthorization",
new Object[] {
authuser,
authpassword},
new String[] { "java.lang.String", "java.lang.String" });
if(useXSLTProcessor) {
ObjectName processorName = registerObject("mx4j.adaptor.http.XSLTProcessor",
"Http:name=XSLTProcessor");
mserver.setAttribute(httpServerName, new Attribute("ProcessorName", processorName));
}
// starts the server
mserver.invoke(httpServerName, "start", null, null);
log.info( "Started MX4J console on host " + httphost + " at port " + httpport);
httpAdapterLoaded = true;
} catch( Throwable t ) {
httpServerName=null;
log.error( "Can't load the MX4J http adapter ", t );
}
}
if ((httpport != -1) && (!httpAdapterLoaded) && classExists("mx4j.tools.adaptor.http.HttpAdaptor")) {
try {
httpServerName = registerObject("mx4j.tools.adaptor.http.HttpAdaptor",
"Http:name=HttpAdaptor");
if( httphost!=null )
mserver.setAttribute(httpServerName, new Attribute("Host", httphost));
mserver.setAttribute(httpServerName, new Attribute("Port", new Integer(httpport)));
if( "none".equals(authmode) || "basic".equals(authmode) || "digest".equals(authmode) )
mserver.setAttribute(httpServerName, new Attribute("AuthenticationMethod", authmode));
if( authuser!=null && authpassword!=null )
mserver.invoke(httpServerName, "addAuthorization",
new Object[] {
authuser,
authpassword},
new String[] { "java.lang.String", "java.lang.String" });
if(useXSLTProcessor) {
ObjectName processorName = registerObject("mx4j.tools.adaptor.http.XSLTProcessor",
"Http:name=XSLTProcessor");
mserver.setAttribute(httpServerName, new Attribute("ProcessorName", processorName));
}
// starts the server
mserver.invoke(httpServerName, "start", null, null);
if(log.isInfoEnabled())
log.info( "Started MX4J console on host " + httphost + " at port " + httpport);
httpAdapterLoaded = true;
} catch( Throwable t ) {
httpServerName=null;
log.error( "Can't load the MX4J http adapter ", t );
}
}
if ((jrmpport != -1) && classExists("mx4j.tools.naming.NamingService")) {
try {
jrmpServerName = registerObject("mx4j.tools.naming.NamingService",
"Naming:name=rmiregistry");
mserver.setAttribute(jrmpServerName, new Attribute("Port",
new Integer(jrmpport)));
mserver.invoke(jrmpServerName, "start", null, null);
if(log.isInfoEnabled())
log.info( "Creating " + jrmpServerName );
// Create the JRMP adaptor
ObjectName adaptor = registerObject("mx4j.adaptor.rmi.jrmp.JRMPAdaptor",
"Adaptor:protocol=jrmp");
mserver.setAttribute(adaptor, new Attribute("JNDIName", "jrmp"));
mserver.invoke( adaptor, "putNamingProperty",
new Object[] {
javax.naming.Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.rmi.registry.RegistryContextFactory"},
new String[] { "java.lang.Object", "java.lang.Object" });
String jrpmurl = "rmi://" + jrmphost + ":" + Integer.toString(jrmpport) ;
mserver.invoke( adaptor, "putNamingProperty",
new Object[] {
javax.naming.Context.PROVIDER_URL,
jrpmurl},
new String[] { "java.lang.Object", "java.lang.Object" });
// Registers the JRMP adaptor in JNDI and starts it
mserver.invoke(adaptor, "start", null, null);
if(log.isInfoEnabled())
log.info( "Creating " + adaptor + " on host " + jrmphost + " at port " + jrmpport);
jrmpAdapterLoaded = true;
} catch( Exception ex ) {
jrmpServerName = null;
log.error( "MX4j RMI adapter not loaded: " + ex.toString());
}
}
if ((httpport != -1) && (! httpAdapterLoaded) && classExists("com.sun.jdmk.comm.HtmlAdaptorServer")) {
try {
httpServerName=registerObject("com.sun.jdmk.comm.HtmlAdaptorServer",
"Adaptor:name=html,port=" + httpport);
if(log.isInfoEnabled())
log.info("Registering the JMX_RI html adapter " + httpServerName + " at port " + httpport);
mserver.setAttribute(httpServerName,
new Attribute("Port", new Integer(httpport)));
mserver.invoke(httpServerName, "start", null, null);
httpAdapterLoaded = true;
} catch( Throwable t ) {
httpServerName = null;
log.error( "Can't load the JMX_RI http adapter " + t.toString() );
}
}
if ((!httpAdapterLoaded) && (!jrmpAdapterLoaded))
log.warn( "No adaptors were loaded but mx.enabled was defined.");
}
public void destroy() {
try {
if(log.isInfoEnabled())
log.info("Stoping JMX ");
if( httpServerName!=null ) {
mserver.invoke(httpServerName, "stop", null, null);
}
if( jrmpServerName!=null ) {
mserver.invoke(jrmpServerName, "stop", null, null);
}
} catch( Throwable t ) {
log.error( "Destroy error" + t );
}
}
public void init() throws IOException {
try {
mserver = getMBeanServer();
if( enabled ) {
loadAdapter();
}
if( log4jEnabled) {
try {
registerObject("org.apache.log4j.jmx.HierarchyDynamicMBean" ,
"log4j:hierarchy=default");
if(log.isInfoEnabled())
log.info("Registering the JMX hierarchy for Log4J ");
} catch( Throwable t ) {
if(log.isInfoEnabled())
log.info("Can't enable log4j mx: ",t);
}
}
} catch( Throwable t ) {
log.error( "Init error", t );
}
}
public void addHandlerCallback( JkHandler w ) {
}
MBeanServer getMBeanServer() {
MBeanServer server;
if( MBeanServerFactory.findMBeanServer(null).size() > 0 ) {
server=(MBeanServer)MBeanServerFactory.findMBeanServer(null).get(0);
} else {
server=MBeanServerFactory.createMBeanServer();
}
return (server);
}
private static boolean classExists(String className) {
try {
Thread.currentThread().getContextClassLoader().loadClass(className);
return true;
} catch(Throwable e) {
if (log.isInfoEnabled())
log.info( "className [" + className + "] does not exist");
return false;
}
}
private ObjectName registerObject(String className, String oName)
throws Exception {
Class c = Class.forName(className);
Object o = c.newInstance();
ObjectName objN = new ObjectName(oName);
mserver.registerMBean(o, objN);
return objN;
}
private static org.apache.juli.logging.Log log=
org.apache.juli.logging.LogFactory.getLog( JkMX.class );
}
|