Search in sources :

Example 1 with LockNotSupported

use of io.jmix.core.pessimisticlocking.LockNotSupported in project jmix by jmix-framework.

the class EntityCombinedScreen method lockIfNeeded.

/**
 * Pessimistic lock before start of editing, if it is configured for the entity.
 */
protected boolean lockIfNeeded(Entity entity) {
    MetaClass metaClass = getMetaClassForLocking(entity);
    LockInfo lockInfo = getApplicationContext().getBean(LockService.class).lock(metaClass.getName(), EntityValues.getId(entity).toString());
    if (lockInfo == null) {
        justLocked = true;
    } else if (!(lockInfo instanceof LockNotSupported)) {
        showNotification(messages.getMainMessage("entityLocked.msg"), String.format(messages.getMainMessage("entityLocked.desc"), lockInfo.getUsername(), getApplicationContext().getBean(DatatypeFormatter.class).formatDateTime(lockInfo.getSince())), NotificationType.HUMANIZED);
        return false;
    }
    return true;
}
Also used : MetaClass(io.jmix.core.metamodel.model.MetaClass) LockService(com.haulmont.cuba.core.app.LockService) LockNotSupported(io.jmix.core.pessimisticlocking.LockNotSupported) LockInfo(io.jmix.core.pessimisticlocking.LockInfo)

Example 2 with LockNotSupported

use of io.jmix.core.pessimisticlocking.LockNotSupported in project jmix by jmix-framework.

the class AbstractEditor method setItemInternal.

@SuppressWarnings("unchecked")
protected void setItemInternal(Entity item) {
    Datasource ds = getDatasourceInternal();
    DataSupplier dataservice = ds.getDataSupplier();
    DatasourceImplementation parentDs = (DatasourceImplementation) ((DatasourceImplementation) ds).getParent();
    DynamicAttributesGuiTools dynamicAttributesGuiTools = (DynamicAttributesGuiTools) getApplicationContext().getBean(DynamicAttributesGuiTools.NAME);
    if (dynamicAttributesGuiTools.screenContainsDynamicAttributes(ds.getView(), getFrame().getId())) {
        ds.setLoadDynamicAttributes(true);
    }
    Class<? extends Entity> entityClass = item.getClass();
    Object entityId = EntityValues.getId(item);
    EntityStates entityStates = getApplicationContext().getBean(EntityStates.class);
    if (parentDs != null) {
        if (!PersistenceHelper.isNew(item) && !parentDs.getItemsToCreate().contains(item) && !parentDs.getItemsToUpdate().contains(item) && parentDs instanceof CollectionDatasource && ((CollectionDatasource) parentDs).containsItem(EntityValues.getId(item)) && !entityStates.isLoadedWithFetchPlan(item, ds.getView())) {
            item = dataservice.reload(item, ds.getView(), ds.getMetaClass(), ds.getLoadDynamicAttributes());
            if (parentDs instanceof CollectionPropertyDatasourceImpl) {
                ((CollectionPropertyDatasourceImpl) parentDs).replaceItem(item);
            } else {
                ((CollectionDatasource) parentDs).updateItem(item);
            }
        }
        item = EntityCopyUtils.copyCompositions(item);
        handlePreviouslyDeletedCompositionItems(item, parentDs);
    } else if (!PersistenceHelper.isNew(item)) {
        item = dataservice.reload(item, ds.getView(), ds.getMetaClass(), ds.getLoadDynamicAttributes());
    }
    if (item == null) {
        throw new EntityAccessException(metadata.getClassNN(entityClass), entityId);
    }
    if (PersistenceHelper.isNew(item) && !ds.getMetaClass().equals(metadata.getClass(item))) {
        Entity newItem = ds.getDataSupplier().newInstance(ds.getMetaClass());
        MetadataTools metadataTools = (MetadataTools) getApplicationContext().getBean(MetadataTools.class);
        metadataTools.copy(item, newItem);
        item = newItem;
    }
    if (ds.getLoadDynamicAttributes()) {
        if (PersistenceHelper.isNew(item)) {
            dynamicAttributesGuiTools.initDefaultAttributeValues(item, metadata.getClass(item));
        }
        if (item instanceof Categorized) {
            dynamicAttributesGuiTools.listenCategoryChanges(ds);
        }
    }
    ds.setItem(item);
    if (PersistenceHelper.isNew(item)) {
        // make sure that they will be saved on commit.
        for (Datasource datasource : ds.getDsContext().getAll()) {
            if (datasource instanceof NestedDatasource && ((NestedDatasource) datasource).getMaster() == ds) {
                if (datasource.getItem() != null && PersistenceHelper.isNew(datasource.getItem()))
                    ((DatasourceImplementation) datasource).modified(datasource.getItem());
            }
        }
    }
    ((DatasourceImplementation) ds).setModified(false);
    Security security = (Security) getApplicationContext().getBean(Security.NAME);
    if (!PersistenceHelper.isNew(item)) {
        if (security.isEntityOpPermitted(ds.getMetaClass(), EntityOp.UPDATE)) {
            readOnlyDueToLock = false;
            LockService lockService = (LockService) getApplicationContext().getBean(LockService.NAME);
            LockInfo lockInfo = lockService.lock(getMetaClassForLocking(ds).getName(), EntityValues.getId(item).toString());
            if (lockInfo == null) {
                justLocked = true;
                addAfterDetachListener(afterCloseEvent -> {
                    releaseLock();
                });
            } else if (!(lockInfo instanceof LockNotSupported)) {
                UserSessionSource userSessionSource = (UserSessionSource) getApplicationContext().getBean(UserSessionSource.NAME);
                Frame frame = (Frame) getFrame();
                frame.getWindowManager().showNotification(messages.getMainMessage("entityLocked.msg"), String.format(messages.getMainMessage("entityLocked.desc"), lockInfo.getUsername(), Datatypes.getNN(Date.class).format(lockInfo.getSince(), userSessionSource.getLocale())), Frame.NotificationType.HUMANIZED);
                readOnlyDueToLock = true;
                showEnableEditingBtn = false;
                setReadOnly(true);
            }
        } else {
            showEnableEditingBtn = false;
            setReadOnly(true);
        }
    }
}
Also used : Categorized(io.jmix.dynattr.model.Categorized) Entity(io.jmix.core.Entity) MetadataTools(io.jmix.core.MetadataTools) UserSessionSource(com.haulmont.cuba.core.global.UserSessionSource) LockService(com.haulmont.cuba.core.app.LockService) LockNotSupported(io.jmix.core.pessimisticlocking.LockNotSupported) EntityStates(io.jmix.core.EntityStates) DatasourceImplementation(com.haulmont.cuba.gui.data.impl.DatasourceImplementation) Security(com.haulmont.cuba.core.global.Security) DynamicAttributesGuiTools(com.haulmont.cuba.gui.dynamicattributes.DynamicAttributesGuiTools) EntityAccessException(io.jmix.core.EntityAccessException) LockInfo(io.jmix.core.pessimisticlocking.LockInfo) CollectionPropertyDatasourceImpl(com.haulmont.cuba.gui.data.impl.CollectionPropertyDatasourceImpl)

Aggregations

LockService (com.haulmont.cuba.core.app.LockService)2 LockInfo (io.jmix.core.pessimisticlocking.LockInfo)2 LockNotSupported (io.jmix.core.pessimisticlocking.LockNotSupported)2 Security (com.haulmont.cuba.core.global.Security)1 UserSessionSource (com.haulmont.cuba.core.global.UserSessionSource)1 CollectionPropertyDatasourceImpl (com.haulmont.cuba.gui.data.impl.CollectionPropertyDatasourceImpl)1 DatasourceImplementation (com.haulmont.cuba.gui.data.impl.DatasourceImplementation)1 DynamicAttributesGuiTools (com.haulmont.cuba.gui.dynamicattributes.DynamicAttributesGuiTools)1 Entity (io.jmix.core.Entity)1 EntityAccessException (io.jmix.core.EntityAccessException)1 EntityStates (io.jmix.core.EntityStates)1 MetadataTools (io.jmix.core.MetadataTools)1 MetaClass (io.jmix.core.metamodel.model.MetaClass)1 Categorized (io.jmix.dynattr.model.Categorized)1