use of com.arjuna.orbportability.internal.utils.PostInitLoader in project narayana by jbosstm.
the class ORB method initORB.
/**
* Initialise the ORB.
*/
public synchronized void initORB(Applet a, Properties p) throws SystemException {
if (opLogger.logger.isTraceEnabled()) {
opLogger.logger.trace("ORB::initORB (Applet, Properties)");
}
if (!_orb.initialised()) {
loadProperties(p);
/**
* Perform pre-initialisation classes for all ORBs
*/
PreInitLoader preInit = new PreInitLoader(PreInitLoader.generateORBPropertyName(ORB_INITIALISER_NS), this);
/**
* Perform pre-initialisation classes for this ORB only
*/
preInit = new PreInitLoader(PreInitLoader.generateORBPropertyName(ORB_INITIALISER_NS, _orbName), this);
preInit = null;
parseProperties(null, false);
_orb.init(a, p);
parseProperties(null, true);
/**
* Perform post-initialisation classes for all ORBs
*/
PostInitLoader postInit = new PostInitLoader(PostInitLoader.generateORBPropertyName(ORB_INITIALISER_NS), this);
/**
* Perform post-initialisation classes for this ORB only
*/
postInit = new PostInitLoader(PostInitLoader.generateORBPropertyName(ORB_INITIALISER_NS, _orbName), this);
postInit = null;
}
}
use of com.arjuna.orbportability.internal.utils.PostInitLoader in project narayana by jbosstm.
the class ORB method initORB.
/**
* Initialise the ORB.
*/
public synchronized void initORB(String[] s, Properties p) throws SystemException {
if (opLogger.logger.isTraceEnabled()) {
opLogger.logger.trace("ORB::initORB (String[], Properties)");
}
if (!_orb.initialised()) {
loadProperties(p);
/**
* Perform pre-initialisation classes for all ORBs
*/
PreInitLoader preInit = new PreInitLoader(PreInitLoader.generateORBPropertyName(ORB_INITIALISER_NS), this);
/**
* Perform pre-initialisation classes for this ORB only
*/
preInit = new PreInitLoader(PreInitLoader.generateORBPropertyName(ORB_INITIALISER_NS, _orbName), this);
preInit = null;
parseProperties(s, false);
_orb.init(s, p);
parseProperties(s, true);
/**
* Perform post-initialisation classes for all ORBs
*/
PostInitLoader postInit = new PostInitLoader(PostInitLoader.generateORBPropertyName(ORB_INITIALISER_NS), this);
/**
* Perform post-initialisation classes for this ORB only
*/
postInit = new PostInitLoader(PostInitLoader.generateORBPropertyName(ORB_INITIALISER_NS, _orbName), this);
postInit = null;
}
}
use of com.arjuna.orbportability.internal.utils.PostInitLoader in project narayana by jbosstm.
the class ORB method initORB.
/**
* Initialise the default ORB.
*/
public synchronized void initORB() throws SystemException {
if (opLogger.logger.isTraceEnabled()) {
opLogger.logger.trace("ORB::initORB ()");
}
if (!_orb.initialised()) {
// null op - just skip it loadProperties(null);
/**
* Perform pre-initialisation classes for all ORBs
*/
PreInitLoader preInit = new PreInitLoader(PreInitLoader.generateORBPropertyName(ORB_INITIALISER_NS), this);
/**
* Perform pre-initialisation classes for this ORB only
*/
preInit = new PreInitLoader(PreInitLoader.generateORBPropertyName(ORB_INITIALISER_NS, _orbName), this);
preInit = null;
parseProperties(null, false);
_orb.init();
parseProperties(null, true);
/**
* Perform post-initialisation classes for all ORBs
*/
PostInitLoader postInit = new PostInitLoader(PostInitLoader.generateORBPropertyName(ORB_INITIALISER_NS), this);
/**
* Perform post-initialisation classes for this ORB only
*/
postInit = new PostInitLoader(PostInitLoader.generateORBPropertyName(ORB_INITIALISER_NS, _orbName), this);
postInit = null;
}
}
use of com.arjuna.orbportability.internal.utils.PostInitLoader in project narayana by jbosstm.
the class OA method performPostInit.
/**
* Loads and runs the configured post-initialisation classes
*/
protected void performPostInit(String oaName) {
/**
* Perform post-initialisation classes for all OAs
*/
PostInitLoader postInit = new PostInitLoader(PostInitLoader.generateOAPropertyName(ORB.ORB_INITIALISER_NS), this);
/**
* Perform post-initialisation classes for all OAs
*/
postInit = new PostInitLoader(PostInitLoader.generateOAPropertyName(ORB.ORB_INITIALISER_NS, _associatedORB.getName()), this);
/**
* Perform post-initialisation classes for this OA only
*/
postInit = new PostInitLoader(PostInitLoader.generateOAPropertyName(ORB.ORB_INITIALISER_NS, _associatedORB.getName(), oaName), this);
postInit = null;
}
use of com.arjuna.orbportability.internal.utils.PostInitLoader in project wildfly by wildfly.
the class ArjunaRecoveryManagerService method start.
public synchronized void start(StartContext context) throws StartException {
// Recovery env bean
final RecoveryEnvironmentBean recoveryEnvironmentBean = recoveryPropertyManager.getRecoveryEnvironmentBean();
final SocketBinding recoveryBinding = recoveryBindingInjector.getValue();
recoveryEnvironmentBean.setRecoveryInetAddress(recoveryBinding.getSocketAddress().getAddress());
recoveryEnvironmentBean.setRecoveryPort(recoveryBinding.getSocketAddress().getPort());
final SocketBinding statusBinding = statusBindingInjector.getValue();
recoveryEnvironmentBean.setTransactionStatusManagerInetAddress(statusBinding.getSocketAddress().getAddress());
recoveryEnvironmentBean.setTransactionStatusManagerPort(statusBinding.getSocketAddress().getPort());
recoveryEnvironmentBean.setRecoveryListener(recoveryListener);
if (recoveryListener) {
ManagedBinding binding = ManagedBinding.Factory.createSimpleManagedBinding(recoveryBinding);
bindingManager.getValue().getNamedRegistry().registerBinding(binding);
}
final List<String> recoveryExtensions = new ArrayList<String>();
// must be first
recoveryExtensions.add(CommitMarkableResourceRecordRecoveryModule.class.getName());
recoveryExtensions.add(AtomicActionRecoveryModule.class.getName());
recoveryExtensions.add(TORecoveryModule.class.getName());
recoveryExtensions.add(SubordinateAtomicActionRecoveryModule.class.getName());
final List<String> expiryScanners;
if (System.getProperty("RecoveryEnvironmentBean.expiryScannerClassNames") != null || System.getProperty("com.arjuna.ats.arjuna.common.RecoveryEnvironmentBean.expiryScannerClassNames") != null) {
expiryScanners = recoveryEnvironmentBean.getExpiryScannerClassNames();
} else {
expiryScanners = new ArrayList<String>();
expiryScanners.add(ExpiredTransactionStatusManagerScanner.class.getName());
}
if (!jts) {
recoveryExtensions.add(com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule.class.getName());
recoveryEnvironmentBean.setRecoveryModuleClassNames(recoveryExtensions);
recoveryEnvironmentBean.setExpiryScannerClassNames(expiryScanners);
recoveryEnvironmentBean.setRecoveryActivators(null);
final RecoveryManagerService recoveryManagerService = new RecoveryManagerService();
try {
recoveryManagerService.create();
} catch (Exception e) {
throw TransactionLogger.ROOT_LOGGER.managerStartFailure(e, "Recovery");
}
recoveryManagerService.start();
this.recoveryManagerService = recoveryManagerService;
} else {
final ORB orb = orbInjector.getValue();
new PostInitLoader(PostInitLoader.generateORBPropertyName("com.arjuna.orbportability.orb"), orb);
recoveryExtensions.add(TopLevelTransactionRecoveryModule.class.getName());
recoveryExtensions.add(ServerTransactionRecoveryModule.class.getName());
recoveryExtensions.add(JCAServerTransactionRecoveryModule.class.getName());
recoveryExtensions.add(com.arjuna.ats.internal.jta.recovery.jts.XARecoveryModule.class.getName());
expiryScanners.add(ExpiredContactScanner.class.getName());
expiryScanners.add(ExpiredToplevelScanner.class.getName());
expiryScanners.add(ExpiredServerScanner.class.getName());
recoveryEnvironmentBean.setRecoveryModuleClassNames(recoveryExtensions);
recoveryEnvironmentBean.setExpiryScannerClassNames(expiryScanners);
recoveryEnvironmentBean.setRecoveryActivatorClassNames(Collections.singletonList(com.arjuna.ats.internal.jts.orbspecific.recovery.RecoveryEnablement.class.getName()));
try {
final RecoveryManagerService recoveryManagerService = new com.arjuna.ats.jbossatx.jts.RecoveryManagerService(orb);
recoveryManagerService.create();
recoveryManagerService.start();
this.recoveryManagerService = recoveryManagerService;
} catch (Exception e) {
throw TransactionLogger.ROOT_LOGGER.managerStartFailure(e, "Recovery");
}
}
recoverySuspendController = new RecoverySuspendController(recoveryManagerService);
processStateInjector.getValue().addPropertyChangeListener(recoverySuspendController);
suspendControllerInjector.getValue().registerActivity(recoverySuspendController);
}
Aggregations