use of alma.maciErrType.wrappers.AcsJCannotActivateComponentEx in project ACS by ACS-Community.
the class ContainerProxy method activate_component.
/**
* @see com.cosylab.acs.maci.Container#activate_component(int, long, String, String, String)
*/
public ComponentInfo activate_component(int handle, long executionId, String name, String exe, String type) throws AcsJCannotActivateComponentEx {
try {
ComponentInfo retVal = null;
si.ijs.maci.ComponentInfo info;
try {
info = container.activate_component(handle, executionId, name, exe, type);
} catch (CannotActivateComponentEx cannotActivateEx) {
// and thus have to convert it to its JDK-style peer exception
throw AcsJCannotActivateComponentEx.fromCannotActivateComponentEx(cannotActivateEx);
}
if (info != null) {
retVal = new ComponentInfo(info.h, info.name, info.type, info.code, info.reference != null ? new ComponentProxy(info.name, info.reference) : null);
retVal.setContainer(info.container);
retVal.setContainerName(info.container_name);
retVal.setAccessRights(inverseMapAccessRights(info.access));
retVal.setClients(new IntArray(info.clients));
retVal.setInterfaces(info.interfaces);
}
return retVal;
} catch (TIMEOUT tex) {
TimeoutRemoteException re = new TimeoutRemoteException("Timout occured while invoking 'activate_component()' method.", tex);
throw re;
} catch (org.omg.CORBA.MARSHAL marshalEx) {
// see http://jira.alma.cl/browse/COMP-4371. Unclear if a parameter was null, or the returned struct was invalid.
RemoteException re = new RemoteException("Failed to transform the paramters or return value of the container's 'activate_component' method " + "to/from the corba call, using parameters name=" + name + ", exe=" + exe + ", type=" + type, marshalEx);
throw re;
} catch (Exception ex) {
RemoteException re = new RemoteException("Failed to invoke 'activate_component()' method.", ex);
throw re;
}
}
use of alma.maciErrType.wrappers.AcsJCannotActivateComponentEx in project ACS by ACS-Community.
the class AcsContainer method activate_component.
/////////////////////////////////////////////////////////////
// Implementation of ContainerOperations#activate_component
/////////////////////////////////////////////////////////////
/**
* Activates a component so that it's ready to receive functional calls
* after returning from this method. Called by the ACS Manager.
* <p>
* From MACI IDL:
* <i>
* Activate a component whose type (class) and name (instance) are given.
* In the process of activation, component's code-base is loaded into memory if it is not there already.
* The code-base resides in an executable file (usually a dynamic-link library or a shared library -- DLL).
* On platforms that do not automatically load dependent executables (e.g., VxWorks),
* the container identifies the dependencies by querying the executable and loads them automatically.
* Once the code is loaded, it is asked to construct a servant of a given type.
* The servant is then initialized with the Configuration Database (CDB) and Persistance Database (PDB) data.
* The servant is attached to the component, and a reference to it is returned.
* </i>
* <p>
* @param componentHandle handle of the component that is being activated. This handle is used
* by the component when it will present itself to the Manager.
* The component is expected to remember this handle for its entire life-time.
* @param execution_id
* @param compName name of the component to instantiate (instance name, comes from CDB)
* @param exe component helper implementation class; must be a subclass of
* {@link alma.acs.container.ComponentHelper}.
* @param type the type of the component to instantiate (Corba IR id).
* @return Returns the reference to the object that has just been activated.
* If the component could not the activated, a nil reference is returned.
*
* @see si.ijs.maci.ContainerOperations#activate_component(int, String, String, String)
*/
public ComponentInfo activate_component(int componentHandle, long execution_id, String compName, String exe, String type) throws CannotActivateComponentEx {
// reject the call if container is shutting down
if (shuttingDown.get()) {
String msg = "activate_component() rejected because of container shutdown.";
m_logger.fine(msg);
AcsJCannotActivateComponentEx ex = new AcsJCannotActivateComponentEx();
ex.setCURL(compName);
ex.setDetailedReason(msg);
throw ex.toCannotActivateComponentEx();
}
ComponentInfo componentInfo = null;
StopWatch activationWatch = new StopWatch(m_logger);
// to make component activations stick out in the log list
m_logger.finer("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
m_logger.fine("activate_component: handle=" + componentHandle + " name=" + compName + " helperClass=" + exe + " type=" + type);
// if the container is still starting up, then hold the request until the container is ready
boolean contInitWaitSuccess = false;
try {
contInitWaitSuccess = containerStartOrbThreadGate.await(30, TimeUnit.SECONDS);
} catch (InterruptedException ex1) {
// just leave contInitWaitSuccess == false
}
if (!contInitWaitSuccess) {
String msg = "Activation of component " + compName + " timed out after 30 s waiting for the container to finish its initialization.";
m_logger.warning(msg);
AcsJCannotActivateComponentEx ex = new AcsJCannotActivateComponentEx();
ex.setCURL(compName);
ex.setDetailedReason(msg);
throw ex.toCannotActivateComponentEx();
}
ComponentAdapter compAdapter = null;
try {
synchronized (m_activeComponentMap) {
ComponentAdapter existingCompAdapter = getExistingComponent(componentHandle, compName, type);
if (existingCompAdapter != null) {
return existingCompAdapter.getComponentInfo();
} else if (!m_activeComponentMap.reserveComponent(componentHandle)) {
AcsJContainerEx ex = new AcsJContainerEx();
ex.setContextInfo("Component with handle '" + componentHandle + "' is already being activated by this container. Manager should have prevented double activation.");
throw ex;
}
}
ClassLoader compCL = null;
// the property 'acs.components.classpath.jardirs' is set by the script acsStartContainer
// to a list of all relevant 'lib/ACScomponents/' directories
String compJarDirs = System.getProperty(AcsComponentClassLoader.PROPERTY_JARDIRS);
if (compJarDirs != null) {
compCL = new AcsComponentClassLoader(Thread.currentThread().getContextClassLoader(), m_logger, compName);
} else {
// fallback: load component impl classes in the global class loader
compCL = Thread.currentThread().getContextClassLoader();
}
// Create component helper using component classloader.
// Note that the base class alma.acs.container.ComponentHelper will still be loaded by the container CL,
// although the current subclassing design is a bit dirtier than it could be in the sense that a mean
// component could deploy modified container classes (e.g. in method getInterfaceTranslator).
// Nothing big to worry about though...
ComponentHelper compHelper = createComponentHelper(compName, exe, compCL);
// Creates component implementation and connects it with the Corba-generated POATie object.
// Objects for container interception ("tight container") and for automatic xml binding class
// de-/serialization are chained up and inserted here. End-to-end they have to translate between the
// operations interface derived from corba IDL and the component's declared internalInterface.
StopWatch compStopWatch = new StopWatch();
ComponentLifecycle compImpl = compHelper.getComponentImpl();
LOG_CompAct_Instance_OK.log(m_logger, compName, compStopWatch.getLapTimeMillis());
//m_logger.finest(compName + " component impl created, with classloader " + compImpl.getClass().getClassLoader().getClass().getName());
Class<? extends ACSComponentOperations> operationsIFClass = compHelper.getOperationsInterface();
Constructor<? extends Servant> poaTieCtor = compHelper.getPOATieClass().getConstructor(new Class[] { operationsIFClass });
Object operationsIFImpl = null;
// translations for some methods only...
if (operationsIFClass.isInstance(compImpl)) {
m_logger.finer("component " + compName + " implements operations interface directly; no dynamic translator proxy used.");
operationsIFImpl = compImpl;
} else {
m_logger.finer("creating dynamic proxy to map corba interface calls to component " + compName + ".");
operationsIFImpl = compHelper.getInterfaceTranslator();
if (!Proxy.isProxyClass(operationsIFImpl.getClass()) && !(operationsIFImpl instanceof ExternalInterfaceTranslator))
m_logger.log(AcsLogLevel.NOTICE, "interface translator proxy for component " + compName + " isn't " + "the default one, and doesn't expose the default as one either. This may cause problem when invoking " + "xml-aware offshoot getters");
}
// make it a tight container (one that intercepts functional method calls)
String[] methodsExcludedFromInvocationLogging = compHelper.getComponentMethodsExcludedFromInvocationLogging();
Object poaDelegate = ContainerSealant.createContainerSealant(operationsIFClass, operationsIFImpl, compName, false, m_logger, compCL, methodsExcludedFromInvocationLogging);
// construct the POATie skeleton with operationsIFImpl as the delegate object
Servant servant = null;
try {
servant = poaTieCtor.newInstance(new Object[] { poaDelegate });
} catch (Throwable thr) {
AcsJContainerEx ex = new AcsJContainerEx(thr);
ex.setContextInfo("failed to instantiate the servant object for component " + compName + " of type " + compImpl.getClass().getName());
throw ex;
}
//
// administrate the new component
//
compAdapter = new ComponentAdapter(compName, type, exe, componentHandle, m_containerName, compImpl, m_managerProxy, sharedCdbRef, compCL, m_logger, m_acsCorba);
// to support automatic offshoot translation for xml-binded offshoots, we need to pass the dynamic adaptor
if (!operationsIFClass.isInstance(compImpl)) {
// if an external interface translator was given by the user, get the default interface translator
if (operationsIFImpl instanceof ExternalInterfaceTranslator)
operationsIFImpl = ((ExternalInterfaceTranslator) operationsIFImpl).getDefaultInterfaceTranslator();
compAdapter.setComponentXmlTranslatorProxy(operationsIFImpl);
}
// for future offshoots created by this component we must pass on the no-auto-logging info
compAdapter.setMethodsExcludedFromInvocationLogging(methodsExcludedFromInvocationLogging);
compStopWatch.reset();
compAdapter.activateComponent(servant);
LOG_CompAct_Corba_OK.log(m_logger, compName, compStopWatch.getLapTimeMillis());
// now it's time to turn off ORB logging if the new component is requesting this
if (compHelper.requiresOrbCentralLogSuppression()) {
ClientLogManager.getAcsLogManager().suppressCorbaRemoteLogging();
}
// even though the component is now an activated Corba object already,
// it won't be called yet since the maciManager will only pass around
// access information after we've returned from this activate_component method.
// Therefore it's not too late to call initialize and execute, which are
// guaranteed to be called before incoming functional calls must be expected.
// At the moment we have to call these two methods one after the other;
// if the Manager supports new calling semantics, we could separate the two
// as described in ComponentLifecycle
m_logger.fine("about to initialize component " + compName);
compStopWatch.reset();
compAdapter.initializeComponent();
compAdapter.executeComponent();
LOG_CompAct_Init_OK.log(m_logger, compName, compStopWatch.getLapTimeMillis());
// we've deferred storing the component in the map until after it's been initialized successfully
m_activeComponentMap.put(componentHandle, compAdapter);
long activTime = activationWatch.getLapTimeMillis();
m_logger.info("component " + compName + " activated and initialized in " + activTime + " ms.");
componentInfo = compAdapter.getComponentInfo();
} catch (Throwable thr) {
m_logger.log(Level.SEVERE, "Failed to activate component " + compName + ", problem was: ", thr);
if (compAdapter != null) {
try {
compAdapter.deactivateComponent();
} catch (Exception ex) {
m_logger.log(Level.FINE, ex.getMessage(), ex);
}
}
m_activeComponentMap.remove(componentHandle);
AcsJCannotActivateComponentEx ex = new AcsJCannotActivateComponentEx(thr);
throw ex.toCannotActivateComponentEx();
} finally {
// to make (possibly nested) component activations stick out in the log list
m_logger.finer(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
}
return componentInfo;
}
use of alma.maciErrType.wrappers.AcsJCannotActivateComponentEx in project ACS by ACS-Community.
the class AcsContainer method activate_component_async.
/* (non-Javadoc)
* @see si.ijs.maci.ContainerOperations#activate_component_async(int, long, java.lang.String, java.lang.String, java.lang.String, si.ijs.maci.CBComponentInfo, alma.ACS.CBDescIn)
*/
public void activate_component_async(final int h, final long execution_id, final String name, final String exe, final String type, final CBComponentInfo callback, final CBDescIn desc) {
m_logger.finer("activate_component_async request received for '" + name + "', enqueueing (taskCount: " + threadPoolExecutor.getTaskCount() + ", active threads: " + threadPoolExecutor.getActiveCount() + ", maxPoolSize: " + threadPoolExecutor.getMaximumPoolSize() + ").");
threadPoolExecutor.execute(new Runnable() {
@Override
public void run() {
m_logger.finer("activate_component_async request for '" + name + "' is being processed now.");
CBDescOut descOut = new CBDescOut(0, desc.id_tag);
ComponentInfo componentInfo = null;
try {
componentInfo = activate_component(h, execution_id, name, exe, type);
} catch (CannotActivateComponentEx ae) {
AcsJCannotActivateComponentEx aae = AcsJCannotActivateComponentEx.fromCannotActivateComponentEx(ae);
ComponentInfo dummyComponentInfo = new ComponentInfo(type, exe, null, name, new int[0], 0, m_containerName, h, 0, new String[0]);
callback.done(dummyComponentInfo, aae.toAcsJCompletion().toCorbaCompletion(), descOut);
} catch (Throwable th) {
AcsJException ae = new AcsJUnknownEx(th);
ComponentInfo dummyComponentInfo = new ComponentInfo(type, exe, null, name, new int[0], 0, m_containerName, h, 0, new String[0]);
callback.done(dummyComponentInfo, ae.toAcsJCompletion().toCorbaCompletion(), descOut);
}
// Try to invoke the callback several times before giving up
int retry = 0;
boolean notified = false;
while (retry < 3 && !notified) {
try {
m_logger.log(AcsLogLevel.DELOUSE, "Calling maci::CBComponentInfo::done with descOut.id_tag = %d." + descOut.id_tag + " for '" + name + "'");
callback.done(componentInfo, new alma.ACSErrTypeOK.wrappers.ACSErrOKAcsJCompletion().toCorbaCompletion(), descOut);
notified = true;
m_logger.log(AcsLogLevel.DELOUSE, "Call to maci::CBComponentInfo::done with descOut.id_tag = %d." + descOut.id_tag + " for '" + name + "' completed");
} catch (Throwable t) {
retry++;
m_logger.log(AcsLogLevel.DELOUSE, "Call to maci::CBComponentInfo::done with descOut.id_tag = %d." + descOut.id_tag + " for '" + name + "' failed, retrying...", t);
try {
Thread.sleep(1000);
} catch (InterruptedException ie) {
}
}
}
if (!notified) {
m_logger.log(AcsLogLevel.ERROR, "Call to maci::CBComponentInfo::done with descOut.id_tag = %d." + descOut.id_tag + " for '" + name + "' failed, deactivating the component.");
try {
deactivate_component(h);
} catch (ComponentDeactivationUncleanEx e) {
m_logger.log(AcsLogLevel.WARNING, "UNclean deactivation of component descOut.id_tag = %d." + descOut.id_tag + " for '" + name + "'", e);
} catch (ComponentDeactivationFailedEx e) {
m_logger.log(AcsLogLevel.WARNING, "Deactivation of component failed descOut.id_tag = %d." + descOut.id_tag + " for '" + name + "'", e);
} catch (Throwable t) {
m_logger.log(AcsLogLevel.WARNING, "Deactivation of component failed descOut.id_tag = %d." + descOut.id_tag + " for '" + name + "'", t);
}
}
}
});
}
Aggregations