Package info.archinnov.achilles.internal.persistence.operations

Source Code of info.archinnov.achilles.internal.persistence.operations.EntityUpdater

/*
* Copyright (C) 2012-2014 DuyHai DOAN
*
*  Licensed under the Apache License, Version 2.0 (the "License");
*  you may not use this file except in compliance with the License.
*  You may obtain a copy of the License at
*
*  http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*  See the License for the specific language governing permissions and
*  limitations under the License.
*/
package info.archinnov.achilles.internal.persistence.operations;

import static com.google.common.collect.FluentIterable.from;
import static info.archinnov.achilles.internal.proxy.dirtycheck.DirtyChecker.COLLECTION_AND_MAP_FIELD;
import static info.archinnov.achilles.internal.proxy.dirtycheck.DirtyChecker.EXTRACT_META;
import static info.archinnov.achilles.internal.proxy.dirtycheck.DirtyChecker.SIMPLE_FIELD;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import info.archinnov.achilles.internal.context.facade.EntityOperations;
import info.archinnov.achilles.internal.metadata.holder.EntityMeta;
import info.archinnov.achilles.internal.metadata.holder.PropertyMeta;
import info.archinnov.achilles.internal.proxy.ProxyInterceptor;
import info.archinnov.achilles.internal.proxy.dirtycheck.DirtyCheckChangeSet;
import info.archinnov.achilles.internal.proxy.dirtycheck.DirtyChecker;
import info.archinnov.achilles.internal.validation.Validator;

public class EntityUpdater {

    private static final Logger log = LoggerFactory.getLogger(EntityUpdater.class);

    private PropertyMetaComparator comparator = new PropertyMetaComparator();
    private CounterPersister counterPersister = CounterPersister.Singleton.INSTANCE.get();
    private EntityProxifier proxifier = EntityProxifier.Singleton.INSTANCE.get();

    public void update(EntityOperations context, Object entity) {
        log.debug("Merging entity of class {} with primary key {}", context.getEntityClass().getCanonicalName(),
                context.getPrimaryKey());

        EntityMeta entityMeta = context.getEntityMeta();

        Validator.validateNotNull(entity, "Proxy object should not be null for update");
        Validator.validateNotNull(entityMeta, "entityMeta should not be null for update");

        log.debug("Checking for dirty fields before merging");

        Object realObject = proxifier.getRealObject(entity);
        context.setEntity(realObject);

        ProxyInterceptor<Object> interceptor = proxifier.getInterceptor(entity);
        Map<Method, DirtyChecker> dirtyMap = interceptor.getDirtyMap();
        List<DirtyChecker> dirtyCheckers = new ArrayList<>(dirtyMap.values());

        if (dirtyCheckers.size() > 0) {
            pushDirtySimpleFields(context, dirtyCheckers);
            pushCollectionAndMapUpdates(context, dirtyCheckers);
            dirtyMap.clear();
        }

        if (context.isClusteredCounter()) {
            counterPersister.persistClusteredCounters(context);
        } else {
            counterPersister.persistCounters(context, entityMeta.getAllCounterMetas());
        }
        interceptor.setEntityOperations(context);
        interceptor.setTarget(realObject);
    }

    private void pushCollectionAndMapUpdates(EntityOperations context, List<DirtyChecker> dirtyCheckers) {
        final List<DirtyChecker> collectionsAndMaps = from(dirtyCheckers)
                .filter(COLLECTION_AND_MAP_FIELD)
                .toList();

        for (DirtyChecker dirtyChecker : collectionsAndMaps) {
            for (DirtyCheckChangeSet changeSet : dirtyChecker.getChangeSets()) {
                context.pushCollectionAndMapUpdateStatements(changeSet);
            }
        }
    }

    private void pushDirtySimpleFields(EntityOperations context, List<DirtyChecker> dirtyCheckers) {
        final List<PropertyMeta> sortedSimpleMetas = new ArrayList<>(from(dirtyCheckers)
                .filter(SIMPLE_FIELD)
                .transform(EXTRACT_META)
                .toList());
        if (sortedSimpleMetas.size() > 0) {
            Collections.sort(sortedSimpleMetas, comparator);
            context.pushUpdateStatement(sortedSimpleMetas);
        }
    }

    public static class PropertyMetaComparator implements Comparator<PropertyMeta> {
        @Override
        public int compare(PropertyMeta arg0, PropertyMeta arg1) {
            return arg0.getCQL3ColumnName().compareTo(arg1.getCQL3ColumnName());
        }

    }

    public static enum Singleton {
        INSTANCE;

        private final EntityUpdater instance = new EntityUpdater();

        public EntityUpdater get() {
            return instance;
        }
    }
}
TOP

Related Classes of info.archinnov.achilles.internal.persistence.operations.EntityUpdater

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.