All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.schematic.internal.SchematicEntryWholeDelta Maven / Gradle / Ivy

/*
 * ModeShape (http://www.modeshape.org)
 *
 * 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 org.infinispan.schematic.internal;

import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Set;
import org.infinispan.atomic.Delta;
import org.infinispan.atomic.DeltaAware;
import org.infinispan.commons.marshall.SerializeWith;
import org.infinispan.commons.util.Util;
import org.infinispan.schematic.SchematicEntry;
import org.infinispan.schematic.document.Document;
import org.infinispan.schematic.internal.delta.Operation;
import org.infinispan.schematic.internal.document.MutableDocument;
import org.infinispan.schematic.internal.marshall.Ids;
import org.infinispan.util.logging.Log;
import org.infinispan.util.logging.LogFactory;

/**
 * An implementation of the {@link Delta} for a {@link SchematicEntry}.
 * 
 * @author Randall Hauch  (C) 2011 Red Hat Inc.
 * @since 5.1
 * @see org.infinispan.atomic.AtomicHashMapDelta
 */
@SerializeWith( SchematicEntryWholeDelta.Externalizer.class )
public class SchematicEntryWholeDelta implements SchematicDelta {
    private static final Log LOG = LogFactory.getLog(SchematicEntryWholeDelta.class);
    private static final boolean TRACE = LOG.isTraceEnabled();

    private final Document document;

    protected SchematicEntryWholeDelta( Document document ) {
        this.document = document;
    }

    @Override
    public DeltaAware merge( DeltaAware d ) {
        SchematicEntryLiteral other = null;
        try {
            if (d != null && (d instanceof SchematicEntryLiteral)) {
                other = (SchematicEntryLiteral)d;
                other.setDocument(document);
                LOG.trace("Merging whole doc delta into existing literal, resulting in " + other);
            } else {
                other = new SchematicEntryLiteral((MutableDocument)document);
                LOG.trace("Merging whole doc delta into new " + other);
            }
        } catch (RuntimeException e) {
            LOG.debug("Exception while merging delta " + this + " onto " + d, e);
            throw e;
        } finally {
            if (other != null) other.commit();
        }
        return other;
    }

    @Override
    public boolean isRecordingOperations() {
        return false;
    }

    @Override
    public void addOperation( Operation o ) {
        // do nothing
    }

    @Override
    public String toString() {
        return "SchematicEntryWholeDelta" + document;
    }

    @Override
    public int hashCode() {
        return document.hashCode();
    }

    @Override
    public boolean equals( Object obj ) {
        if (obj instanceof SchematicEntryWholeDelta) {
            SchematicEntryWholeDelta other = (SchematicEntryWholeDelta)obj;
            return document.equals(other.document);
        }
        return false;
    }

    public static class Externalizer extends SchematicExternalizer {
        private static final long serialVersionUID = 1L;

        @SuppressWarnings( "synthetic-access" )
        @Override
        public void writeObject( ObjectOutput output,
                                 SchematicEntryWholeDelta delta ) throws IOException {
            if (TRACE) LOG.tracef("Serializing delta as document %s", delta.document);
            output.writeObject(delta.document);
        }

        @SuppressWarnings( "synthetic-access" )
        @Override
        public SchematicEntryWholeDelta readObject( ObjectInput input ) throws IOException, ClassNotFoundException {
            Document document = (Document)input.readObject();
            SchematicEntryWholeDelta delta = new SchematicEntryWholeDelta(document);
            if (TRACE) LOG.tracef("Deserialized delta as document %s", delta.document);
            return delta;
        }

        @Override
        public Integer getId() {
            return Ids.SCHEMATIC_VALUE_DELTA_DOCUMENT;
        }

        @Override
        @SuppressWarnings( "unchecked" )
        public Set> getTypeClasses() {
            return Util.>asSet(SchematicEntryWholeDelta.class);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy