EntityEntry.java in  » Database-ORM » hibernate » org » hibernate » engine » Java Source Code / Java Documentation Java Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » Database ORM » hibernate » org.hibernate.engine 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


        /*
         * Hibernate, Relational Persistence for Idiomatic Java
         *
         * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
         * indicated by the @author tags or express copyright attribution
         * statements applied by the authors.  All third-party contributions are
         * distributed under license by Red Hat Inc.
         *
         * This copyrighted material is made available to anyone wishing to use, modify,
         * copy, or redistribute it subject to the terms and conditions of the GNU
         * Lesser General Public License, as published by the Free Software Foundation.
         *
         * This program is distributed in the hope that it will be useful,
         * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
         * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
         * for more details.
         *
         * You should have received a copy of the GNU Lesser General Public License
         * along with this distribution; if not, write to:
         * Free Software Foundation, Inc.
         * 51 Franklin Street, Fifth Floor
         * Boston, MA  02110-1301  USA
         */
        package org.hibernate.engine;

        import java.io.Serializable;
        import java.io.ObjectOutputStream;
        import java.io.IOException;
        import java.io.ObjectInputStream;

        import org.hibernate.EntityMode;
        import org.hibernate.HibernateException;
        import org.hibernate.LockMode;
        import org.hibernate.intercept.FieldInterceptionHelper;
        import org.hibernate.persister.entity.EntityPersister;
        import org.hibernate.persister.entity.UniqueKeyLoadable;
        import org.hibernate.pretty.MessageHelper;

        /**
         * We need an entry to tell us all about the current state
         * of an object with respect to its persistent state
         * 
         * @author Gavin King
         */
        public final class EntityEntry implements  Serializable {

            private LockMode lockMode;
            private Status status;
            private final Serializable id;
            private Object[] loadedState;
            private Object[] deletedState;
            private boolean existsInDatabase;
            private Object version;
            private transient EntityPersister persister; // for convenience to save some lookups
            private final EntityMode entityMode;
            private final String entityName;
            private transient EntityKey cachedEntityKey; // cached EntityKey (lazy-initialized)
            private boolean isBeingReplicated;
            private boolean loadedWithLazyPropertiesUnfetched; //NOTE: this is not updated when properties are fetched lazily!
            private final transient Object rowId;

            EntityEntry(final Status status, final Object[] loadedState,
                    final Object rowId, final Serializable id,
                    final Object version, final LockMode lockMode,
                    final boolean existsInDatabase,
                    final EntityPersister persister,
                    final EntityMode entityMode,
                    final boolean disableVersionIncrement,
                    final boolean lazyPropertiesAreUnfetched) {
                this .status = status;
                this .loadedState = loadedState;
                this .id = id;
                this .rowId = rowId;
                this .existsInDatabase = existsInDatabase;
                this .version = version;
                this .lockMode = lockMode;
                this .isBeingReplicated = disableVersionIncrement;
                this .loadedWithLazyPropertiesUnfetched = lazyPropertiesAreUnfetched;
                this .persister = persister;
                this .entityMode = entityMode;
                this .entityName = persister == null ? null : persister
                        .getEntityName();
            }

            private EntityEntry(final SessionFactoryImplementor factory,
                    final String entityName, final Serializable id,
                    final EntityMode entityMode, final Status status,
                    final Object[] loadedState, final Object[] deletedState,
                    final Object version, final LockMode lockMode,
                    final boolean existsInDatabase,
                    final boolean isBeingReplicated,
                    final boolean loadedWithLazyPropertiesUnfetched) {
                // Used during custom deserialization
                this .entityName = entityName;
                this .persister = (factory == null ? null : factory
                        .getEntityPersister(entityName));
                this .id = id;
                this .entityMode = entityMode;
                this .status = status;
                this .loadedState = loadedState;
                this .deletedState = deletedState;
                this .version = version;
                this .lockMode = lockMode;
                this .existsInDatabase = existsInDatabase;
                this .isBeingReplicated = isBeingReplicated;
                this .loadedWithLazyPropertiesUnfetched = loadedWithLazyPropertiesUnfetched;
                this .rowId = null; // this is equivalent to the old behavior...
            }

            public LockMode getLockMode() {
                return lockMode;
            }

            public void setLockMode(LockMode lockMode) {
                this .lockMode = lockMode;
            }

            public Status getStatus() {
                return status;
            }

            public void setStatus(Status status) {
                if (status == Status.READ_ONLY) {
                    loadedState = null; //memory optimization
                }
                this .status = status;
            }

            public Serializable getId() {
                return id;
            }

            public Object[] getLoadedState() {
                return loadedState;
            }

            public Object[] getDeletedState() {
                return deletedState;
            }

            public void setDeletedState(Object[] deletedState) {
                this .deletedState = deletedState;
            }

            public boolean isExistsInDatabase() {
                return existsInDatabase;
            }

            public Object getVersion() {
                return version;
            }

            public EntityPersister getPersister() {
                return persister;
            }

            /**
             * Get the EntityKey based on this EntityEntry.
             * @return the EntityKey
             * @throws  IllegalStateException if getId() is null
             */
            public EntityKey getEntityKey() {
                if (cachedEntityKey == null) {
                    if (getId() == null) {
                        throw new IllegalStateException(
                                "cannot generate an EntityKey when id is null.");
                    }
                    cachedEntityKey = new EntityKey(getId(), getPersister(),
                            entityMode);
                }
                return cachedEntityKey;
            }

            public String getEntityName() {
                return entityName;
            }

            public boolean isBeingReplicated() {
                return isBeingReplicated;
            }

            public Object getRowId() {
                return rowId;
            }

            /**
             * Handle updating the internal state of the entry after actually performing
             * the database update.  Specifically we update the snapshot information and
             * escalate the lock mode
             *
             * @param entity The entity instance
             * @param updatedState The state calculated after the update (becomes the
             * new {@link #getLoadedState() loaded state}.
             * @param nextVersion The new version.
             */
            public void postUpdate(Object entity, Object[] updatedState,
                    Object nextVersion) {
                this .loadedState = updatedState;
                setLockMode(LockMode.WRITE);

                if (getPersister().isVersioned()) {
                    this .version = nextVersion;
                    getPersister().setPropertyValue(entity,
                            getPersister().getVersionProperty(), nextVersion,
                            entityMode);
                }

                FieldInterceptionHelper.clearDirty(entity);
            }

            /**
             * After actually deleting a row, record the fact that the instance no longer
             * exists in the database
             */
            public void postDelete() {
                status = Status.GONE;
                existsInDatabase = false;
            }

            /**
             * After actually inserting a row, record the fact that the instance exists on the 
             * database (needed for identity-column key generation)
             */
            public void postInsert() {
                existsInDatabase = true;
            }

            public boolean isNullifiable(boolean earlyInsert,
                    SessionImplementor session) {
                return getStatus() == Status.SAVING
                        || (earlyInsert ? !isExistsInDatabase() : session
                                .getPersistenceContext()
                                .getNullifiableEntityKeys().contains(
                                        getEntityKey()));
            }

            public Object getLoadedValue(String propertyName) {
                int propertyIndex = ((UniqueKeyLoadable) persister)
                        .getPropertyIndex(propertyName);
                return loadedState[propertyIndex];
            }

            public boolean requiresDirtyCheck(Object entity) {

                boolean isMutableInstance = status != Status.READ_ONLY
                        && persister.isMutable();

                return isMutableInstance
                        && (getPersister().hasMutableProperties()
                                || !FieldInterceptionHelper
                                        .isInstrumented(entity) || FieldInterceptionHelper
                                .extractFieldInterceptor(entity).isDirty());

            }

            public void forceLocked(Object entity, Object nextVersion) {
                version = nextVersion;
                loadedState[persister.getVersionProperty()] = version;
                //noinspection deprecation
                setLockMode(LockMode.FORCE); // TODO:  use LockMode.PESSIMISTIC_FORCE_INCREMENT
                persister.setPropertyValue(entity, getPersister()
                        .getVersionProperty(), nextVersion, entityMode);
            }

            public boolean isReadOnly() {
                if (status != Status.MANAGED && status != Status.READ_ONLY) {
                    throw new HibernateException(
                            "instance was not in a valid state");
                }
                return status == Status.READ_ONLY;
            }

            public void setReadOnly(boolean readOnly, Object entity) {
                if (readOnly == isReadOnly()) {
                    // simply return since the status is not being changed
                    return;
                }
                if (readOnly) {
                    setStatus(Status.READ_ONLY);
                    loadedState = null;
                } else {
                    setStatus(Status.MANAGED);
                    loadedState = getPersister().getPropertyValues(entity,
                            entityMode);
                }
            }

            public String toString() {
                return "EntityEntry" + MessageHelper.infoString(entityName, id)
                        + '(' + status + ')';
            }

            public boolean isLoadedWithLazyPropertiesUnfetched() {
                return loadedWithLazyPropertiesUnfetched;
            }

            /**
             * Custom serialization routine used during serialization of a
             * Session/PersistenceContext for increased performance.
             *
             * @param oos The stream to which we should write the serial data.
             *
             * @throws IOException If a stream error occurs
             */
            void serialize(ObjectOutputStream oos) throws IOException {
                oos.writeObject(entityName);
                oos.writeObject(id);
                oos.writeObject(entityMode.toString());
                oos.writeObject(status.toString());
                // todo : potentially look at optimizing these two arrays
                oos.writeObject(loadedState);
                oos.writeObject(deletedState);
                oos.writeObject(version);
                oos.writeObject(lockMode.toString());
                oos.writeBoolean(existsInDatabase);
                oos.writeBoolean(isBeingReplicated);
                oos.writeBoolean(loadedWithLazyPropertiesUnfetched);
            }

            /**
             * Custom deserialization routine used during deserialization of a
             * Session/PersistenceContext for increased performance.
             *
             * @param ois The stream from which to read the entry.
             * @param session The session being deserialized.
             *
             * @return The deserialized EntityEntry
             *
             * @throws IOException If a stream error occurs
             * @throws ClassNotFoundException If any of the classes declared in the stream
             * cannot be found
             */
            static EntityEntry deserialize(ObjectInputStream ois,
                    SessionImplementor session) throws IOException,
                    ClassNotFoundException {
                return new EntityEntry((session == null ? null : session
                        .getFactory()), (String) ois.readObject(),
                        (Serializable) ois.readObject(), EntityMode
                                .parse((String) ois.readObject()), Status
                                .parse((String) ois.readObject()),
                        (Object[]) ois.readObject(), (Object[]) ois
                                .readObject(), ois.readObject(), LockMode
                                .parse((String) ois.readObject()), ois
                                .readBoolean(), ois.readBoolean(), ois
                                .readBoolean());
            }
        }
w__w_w__.__j___a__v__a__2___s_.__c_o__m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.