Search in sources :

Example 1 with CommandBase

use of jp.ossc.nimbus.ioc.CommandBase in project nimbus by nimbus-org.

the class EJBDriveDispatcher method invokeUnitOfWorkBase.

/**
 * ユニットオブワークを実行する
 * @param uow		入力ユニットオブワーク
 * @return	出力ユニットオブワーク
 * @throws Throwable
 */
public UnitOfWork invokeUnitOfWorkBase(UnitOfWork uow) throws Exception {
    UnitOfWork retUow = FacadeValueAccess.createCommandsValue();
    boolean cmdErrFlg = false;
    // 配列分実行する
    if (this.getLogger() != null) {
        this.getLogger().write(IOC__00002);
    }
    for (int rcnt = 0; rcnt < uow.size(); rcnt++) {
        CommandBase tmp = uow.getCommand(rcnt);
        try {
            if (tmp.isCommand()) {
                if (!cmdErrFlg) {
                    if (mCommandInvokerRemote == null) {
                        mCommandInvokerRemote = mCommandInvokerHome.create();
                        if (this.getLogger() != null) {
                            this.getLogger().write(IOC__00001, "SLSBCommandHomeLocal get cmpleted.");
                        }
                    }
                    Command ret = this.mCommandInvokerRemote.invokeCommand((Command) tmp);
                    if (ret.getStatus() == CommandBase.C_STATUS_ERROR) {
                        if (this.getLogger() != null) {
                            this.getLogger().write("IOC__00020");
                        }
                        this.getContext().setRollbackOnly();
                        cmdErrFlg = true;
                    }
                    retUow.addCommand(ret);
                } else {
                    if (this.getLogger() != null) {
                        this.getLogger().write("IOC__00021");
                    }
                    retUow.addCommand((Command) tmp);
                }
            } else {
                if (this.getLogger() != null) {
                    this.getLogger().write("IOC__00015");
                }
                if (mUnitOfWorkInvokerRemote == null) {
                    mUnitOfWorkInvokerRemote = mUnitOfWorkInvokerHome.create();
                    if (this.getLogger() != null) {
                        this.getLogger().write(IOC__00001, "SLSBUnitOfWorkHomeLocal get cmpleted.");
                    }
                }
                UnitOfWork ret = this.mUnitOfWorkInvokerRemote.invokeUnitOfWork((UnitOfWork) tmp);
                retUow.addUnitOfWork(ret);
            }
        } catch (EJBException e) {
            if (this.getLogger() != null) {
                this.getLogger().write("IOC__00017", e.getCausedByException());
            }
            Exception ex = (Exception) e.getCausedByException();
            throw ex;
        } catch (Throwable e) {
            if (this.getLogger() != null) {
                this.getLogger().write("IOC__00017", e);
            }
            IOCException ex = new IOCException("EJBDispatcher#invokeUnitOfWorkBase Unrecognized Error ", e);
            throw ex;
        }
    }
    return retUow;
}
Also used : UnitOfWork(jp.ossc.nimbus.ioc.UnitOfWork) CommandBase(jp.ossc.nimbus.ioc.CommandBase) Command(jp.ossc.nimbus.ioc.Command) IOCException(jp.ossc.nimbus.ioc.IOCException) EJBException(javax.ejb.EJBException) NamingException(javax.naming.NamingException) InterceptorException(jp.ossc.nimbus.service.aspect.interfaces.InterceptorException) TargetUncheckedException(jp.ossc.nimbus.service.aspect.interfaces.TargetUncheckedException) TargetCheckedException(jp.ossc.nimbus.service.aspect.interfaces.TargetCheckedException) IOCException(jp.ossc.nimbus.ioc.IOCException) RemoteException(java.rmi.RemoteException) EJBException(javax.ejb.EJBException) CreateException(javax.ejb.CreateException)

Aggregations

RemoteException (java.rmi.RemoteException)1 CreateException (javax.ejb.CreateException)1 EJBException (javax.ejb.EJBException)1 NamingException (javax.naming.NamingException)1 Command (jp.ossc.nimbus.ioc.Command)1 CommandBase (jp.ossc.nimbus.ioc.CommandBase)1 IOCException (jp.ossc.nimbus.ioc.IOCException)1 UnitOfWork (jp.ossc.nimbus.ioc.UnitOfWork)1 InterceptorException (jp.ossc.nimbus.service.aspect.interfaces.InterceptorException)1 TargetCheckedException (jp.ossc.nimbus.service.aspect.interfaces.TargetCheckedException)1 TargetUncheckedException (jp.ossc.nimbus.service.aspect.interfaces.TargetUncheckedException)1