use of com.swiftmq.impl.queue.standard.jobs.JobRegistrar in project swiftmq-ce by iitsoftware.
the class QueueManagerImpl method startup.
/**
* Startup the swiftlet. Check if all required properties are defined and all other
* startup conditions are met. Do startup work (i. e. start working thread, get/open resources).
* If any condition prevends from startup fire a SwiftletException.
*
* @throws com.swiftmq.swiftlet.SwiftletException
*/
protected void startup(Configuration config) throws SwiftletException {
startupTime = System.currentTimeMillis();
ctx = createSwiftletContext(config);
if (ctx.traceSpace.enabled)
ctx.traceSpace.trace(getName(), "startup ...");
ctx.usageList.getCommandRegistry().addCommand(new Activate(ctx).createCommand());
ctx.usageList.getCommandRegistry().addCommand(new Viewer(ctx).createCommand());
ctx.usageList.getCommandRegistry().addCommand(new Exporter(ctx).createCommand());
ctx.usageList.getCommandRegistry().addCommand(new Importer(ctx).createCommand());
ctx.usageList.getCommandRegistry().addCommand(new Remover(ctx).createCommand());
ctx.usageList.getCommandRegistry().addCommand(new Copier(ctx).createCommand());
ctx.usageList.getCommandRegistry().addCommand(new Mover(ctx).createCommand());
ctx.usageList.getCommandRegistry().addCommand(new Resetter(ctx).createCommand());
if (ctx.smartTree)
ctx.usageList.getTemplate().removeEntities();
Property prop = ctx.root.getProperty(PROP_MAX_FLOWCONTROL_DELAY);
maxFlowControlDelay = ((Long) prop.getValue()).longValue();
queueControllerList = (EntityList) ctx.root.getEntity("queue-controllers");
ctx.messageQueueFactory = createMessageQueueFactory();
ctx.messageGroupDispatchPolicyFactory = createMessaageGroupDispatchPolicyFactory();
ctx.cacheTableFactory = createCacheTableFactory();
ctx.dispatchPolicyRegistry = new DispatchPolicyRegistry(ctx);
ctx.redispatcherController = new RedispatcherController(ctx);
regularQueueFactory = createRegularQueueFactory();
tempQueueFactory = createTempQueueFactory();
systemQueueFactory = createSystemQueueFactory();
tempQueueController = getQueueController(PREFIX_TEMP_QUEUE + "000");
if (tempQueueController == null)
throw new SwiftletException("No Queue Controller for temporary Queues defined!");
if (ctx.traceSpace.enabled)
ctx.traceSpace.trace(getName(), "Queue Controller for temp queues: " + tempQueueController.getName());
localRouterName = SwiftletManager.getInstance().getRouterName();
queueTable = new HashMap();
inboundRedirectors = new HashMap();
outboundRedirectors = new HashMap();
// Create DLQ
try {
createQueue(DLQ, (ActiveLogin) null);
((MessageQueue) getQueueForInternalUse(DLQ)).setAlwaysDeliverExpired(true);
} catch (Exception e) {
e.printStackTrace();
throw new SwiftletException(e.toString());
}
createQueues((EntityList) ctx.root.getEntity("queues"));
SwiftletManager.getInstance().addSwiftletManagerListener("sys$jndi", new SwiftletManagerAdapter() {
public void swiftletStarted(SwiftletManagerEvent evt) {
try {
ctx.jndiSwiftlet = (JNDISwiftlet) SwiftletManager.getInstance().getSwiftlet("sys$jndi");
ctx.jndiAliasList = (EntityList) SwiftletManager.getInstance().getConfiguration("sys$jndi").getEntity("aliases");
registerJNDIQueues();
} catch (Exception e) {
if (ctx.traceSpace.enabled)
ctx.traceSpace.trace(getName(), "swiftletStartet, exception=" + e);
}
}
public void swiftletStopped(SwiftletManagerEvent swiftletManagerEvent) {
ctx.jndiSwiftlet = null;
ctx.jndiAliasList = null;
}
});
SwiftletManager.getInstance().addSwiftletManagerListener("sys$mgmt", new SwiftletManagerAdapter() {
public void swiftletStarted(SwiftletManagerEvent evt) {
try {
ctx.mgmtSwiftlet = (MgmtSwiftlet) SwiftletManager.getInstance().getSwiftlet("sys$mgmt");
if (ctx.traceSpace.enabled)
ctx.traceSpace.trace(getName(), "registering MgmtListener ...");
ctx.mgmtSwiftlet.addMgmtListener(new MgmtListener() {
public void adminToolActivated() {
collectOn = true;
collectChanged(-1, collectInterval);
}
public void adminToolDeactivated() {
collectChanged(collectInterval, -1);
collectOn = false;
}
});
} catch (Exception e) {
if (ctx.traceSpace.enabled)
ctx.traceSpace.trace(getName(), "swiftletStartet, exception=" + e);
}
}
});
prop = ctx.root.getProperty(PROP_LOG_DUPLICATES);
prop.setPropertyChangeListener(new PropertyChangeAdapter(null) {
public void propertyChanged(Property property, Object oldValue, Object newValue) throws PropertyChangeException {
logDuplicates = ((Boolean) newValue).booleanValue();
}
});
logDuplicates = ((Boolean) prop.getValue()).booleanValue();
prop = ctx.root.getProperty(PROP_LOG_EXPIRED);
prop.setPropertyChangeListener(new PropertyChangeAdapter(null) {
public void propertyChanged(Property property, Object oldValue, Object newValue) throws PropertyChangeException {
logExpired = ((Boolean) newValue).booleanValue();
}
});
logExpired = ((Boolean) prop.getValue()).booleanValue();
prop = ctx.root.getProperty(PROP_DELIVER_EXPIRED);
prop.setPropertyChangeListener(new PropertyChangeAdapter(null) {
public void propertyChanged(Property property, Object oldValue, Object newValue) throws PropertyChangeException {
deliverExpired = ((Boolean) newValue).booleanValue();
}
});
deliverExpired = ((Boolean) prop.getValue()).booleanValue();
prop = ctx.root.getProperty(PROP_COLLECT_INTERVAL);
prop.setPropertyChangeListener(new PropertyChangeAdapter(null) {
public void propertyChanged(Property property, Object oldValue, Object newValue) throws PropertyChangeException {
collectInterval = ((Long) newValue).longValue();
collectChanged(((Long) oldValue).longValue(), collectInterval);
}
});
collectInterval = ((Long) prop.getValue()).longValue();
if (collectOn) {
if (collectInterval > 0) {
if (ctx.traceSpace.enabled)
ctx.traceSpace.trace(getName(), "startup: registering message count collector");
ctx.timerSwiftlet.addTimerListener(collectInterval, this);
} else if (ctx.traceSpace.enabled)
ctx.traceSpace.trace(getName(), "startup: collect interval <= 0; no message count collector");
}
prop = ctx.root.getProperty(PROP_MULTI_QUEUE_TX_GLOBAL_LOCK);
if (prop != null) {
prop.setPropertyChangeListener(new PropertyChangeAdapter(null) {
public void propertyChanged(Property property, Object oldValue, Object newValue) throws PropertyChangeException {
setUseGlobalLocking(((Boolean) newValue).booleanValue());
}
});
setUseGlobalLocking(((Boolean) prop.getValue()).booleanValue());
}
SwiftletManager.getInstance().addSwiftletManagerListener("sys$scheduler", new SwiftletManagerAdapter() {
public void swiftletStarted(SwiftletManagerEvent event) {
ctx.schedulerSwiftlet = (SchedulerSwiftlet) SwiftletManager.getInstance().getSwiftlet("sys$scheduler");
jobRegistrar = new JobRegistrar(ctx);
jobRegistrar.register();
}
public void swiftletStopInitiated(SwiftletManagerEvent event) {
jobRegistrar.unregister();
}
});
SwiftletManager.getInstance().addSwiftletManagerListener("sys$routing", new SwiftletManagerAdapter() {
public void swiftletStarted(SwiftletManagerEvent event) {
try {
startCluster();
startCompositeQueues();
} catch (Exception e) {
e.printStackTrace();
}
ctx.routingSwiftlet = (RoutingSwiftlet) SwiftletManager.getInstance().getSwiftlet("sys$routing");
routingListener = new ClusterRoutingListener();
ctx.routingSwiftlet.addRoutingListener(routingListener);
}
public void swiftletStopInitiated(SwiftletManagerEvent event) {
ctx.routingSwiftlet.removeRoutingListener(routingListener);
try {
stopCluster();
stopCompositeQueues();
} catch (Exception e) {
e.printStackTrace();
}
}
});
if (ctx.traceSpace.enabled)
ctx.traceSpace.trace(getName(), "startup: done.");
}
Aggregations