public static ServiceInfo getServiceInfo(String name) {
ServiceManager sm = Globals.getServiceManager();
ConnectionManager cm = Globals.getConnectionManager();
MetricManager mm = Globals.getMetricManager();
/* XXX REVISIT dipol 10/17/00 we should probably put this logic
* into the ServiceManager so knowledge of property names
* is encapsulated there.
*/
String proto = props.getProperty(SERVICE_PREFIX +
name + ".protocoltype");
// Fill in admin service info object
ServiceInfo si = new com.sun.messaging.jmq.util.admin.ServiceInfo();
si.name = name;
si.protocol = proto;
// strange kludge here ...
// if protocol is tcp or tls, it defaults to 0
int default_value=-1;
if (si.protocol != null) {
if (si.protocol.equals("tcp") || si.protocol.equals("tls"))
default_value = 0;
}
si.port = props.getIntProperty(SERVICE_PREFIX +
name + "." + proto + ".port", default_value);
if (si.port == 0) {
si.dynamicPort = true;
} else {
si.dynamicPort = false;
}
si.minThreads = props.getIntProperty(SERVICE_PREFIX + name + ".min_threads");
si.maxThreads = props.getIntProperty(SERVICE_PREFIX + name + ".max_threads");
si.type = sm.getServiceType(name);
Service service = sm.getService(name);
if (service != null) {
si.nConnections = cm.getNumConnections(service);
si.state = service.getState();
if (service instanceof IMQService) {
IMQService ss = (IMQService)service;
si.currentThreads = ss.getActiveThreadpool();
si.minThreads = ss.getMinThreadpool();
si.maxThreads = ss.getMaxThreadpool();
// If we were configured to use dynamic ports, get the
// port number that is acutally being used
if (si.port == 0 && ss.getProtocol() != null) {
si.port = ss.getProtocol().getLocalPort();
}
}
if (mm != null) {
si.metrics = mm.getMetricCounters(name);
} else {
si.metrics = null;
}
} else {
// Service is not intitialized