Search in sources :

Example 1 with UnitOfWork

use of jp.ossc.nimbus.ioc.UnitOfWork 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)

Example 2 with UnitOfWork

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

the class UnitOfWorkJournalEditorService method processBlock.

protected boolean processBlock(EditorFinder finder, Object key, Object value, StringBuilder buf) {
    final UnitOfWork unitOfWork = (UnitOfWork) value;
    boolean isMake = false;
    if (isOutputStatus()) {
        makeStatusFormat(finder, key, unitOfWork, buf);
        isMake = true;
    }
    if (isOutputUnitOfWorkSize()) {
        if (isMake) {
            buf.append(getLineSeparator());
        }
        makeUnitOfWorkSizeFormat(finder, key, unitOfWork, buf);
        isMake = true;
    }
    if (isOutputUnitOfWorkExecuteSize()) {
        if (isMake) {
            buf.append(getLineSeparator());
        }
        makeUnitOfWorkExecuteSizeFormat(finder, key, unitOfWork, buf);
        isMake = true;
    }
    if (isOutputCommandSize()) {
        if (isMake) {
            buf.append(getLineSeparator());
        }
        makeCommandSizeFormat(finder, key, unitOfWork, buf);
        isMake = true;
    }
    if (isOutputCommandExecuteSize()) {
        if (isMake) {
            buf.append(getLineSeparator());
        }
        makeCommandExecuteSizeFormat(finder, key, unitOfWork, buf);
        isMake = true;
    }
    if (isOutputExceptionCount()) {
        if (isMake) {
            buf.append(getLineSeparator());
        }
        makeExceptionCountFormat(finder, key, unitOfWork, buf);
        isMake = true;
    }
    if (isOutputExceptions()) {
        if (isMake) {
            buf.append(getLineSeparator());
        }
        makeExceptionsFormat(finder, key, unitOfWork, buf);
        isMake = true;
    }
    if (isOutputCommandBases()) {
        if (isMake) {
            buf.append(getLineSeparator());
        }
        makeCommandBasesFormat(finder, key, unitOfWork, buf);
        isMake = true;
    }
    return isMake;
}
Also used : UnitOfWork(jp.ossc.nimbus.ioc.UnitOfWork)

Aggregations

UnitOfWork (jp.ossc.nimbus.ioc.UnitOfWork)2 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 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