// IDisposable implementation

        /// <summary>
        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
        /// </summary>
        public void Dispose()
        {
            if (isDisposed)
            {
                return;
            }
            try {
                OrmLog.Debug(Strings.LogSessionXDisposing, this);

                SystemEvents.NotifyDisposing();
                Events.NotifyDisposing();

                Services.DisposeSafely();
                Handler.DisposeSafely();
                CommandProcessorContextProvider.DisposeSafely();

                Domain.ReleaseSingleConnection();

                disposableSet.DisposeSafely();
                disposableSet = null;

                EntityChangeRegistry.Clear();
                EntitySetChangeRegistry.Clear();
                EntityStateCache.Clear();
                ReferenceFieldsChangesRegistry.Clear();
                NonPairedReferencesRegistry.Clear();
            }
            finally {
                isDisposed = true;
            }
        }
 internal void RollbackTransaction(Transaction transaction)
 {
     try {
         OrmLog.Debug(Strings.LogSessionXRollingBackTransaction, this);
         SystemEvents.NotifyTransactionRollbacking(transaction);
         Events.NotifyTransactionRollbacking(transaction);
     }
     finally {
         try {
             Handler.CompletingTransaction(transaction);
         }
         finally {
             try {
                 if (Configuration.Supports(SessionOptions.SuppressRollbackExceptions))
                 {
                     RollbackWithSuppression(transaction);
                 }
                 else
                 {
                     Rollback(transaction);
                 }
             }
             finally {
                 if (!persistingIsFailed || !Configuration.Supports(SessionOptions.NonTransactionalReads))
                 {
                     CancelEntitySetsChanges();
                     ClearChangeRegistry();
                     NonPairedReferencesRegistry.Clear();
                     EntitySetChangeRegistry.Clear();
                 }
                 persistingIsFailed = false;
             }
         }
     }
 }
        /// <summary>
        /// Cancels all changes and resets modified entities to their original state.
        /// </summary>
        /// <exception cref="ObjectDisposedException">Session is already disposed.</exception>
        /// <exception cref="NotSupportedException">Unable to cancel changes for non-disconnected session. Use transaction boundaries to control the state.</exception>
        public void CancelChanges()
        {
            SystemEvents.NotifyChangesCanceling();
            Events.NotifyChangesCanceling();

            CancelEntitySetsChanges();
            CancelEntitiesChanges();
            NonPairedReferencesRegistry.Clear();

            SystemEvents.NotifyChangesCanceled();
            Events.NotifyChangesCanceled();
        }
Beispiel #4
0
        internal async ValueTask RollbackTransaction(Transaction transaction, bool isAsync)
        {
            try {
                if (IsDebugEventLoggingEnabled)
                {
                    OrmLog.Debug(Strings.LogSessionXRollingBackTransaction, this);
                }

                SystemEvents.NotifyTransactionRollbacking(transaction);
                Events.NotifyTransactionRollbacking(transaction);
            }
            finally {
                try {
                    Handler.CompletingTransaction(transaction);
                }
                finally {
                    try {
                        if (Configuration.Supports(SessionOptions.SuppressRollbackExceptions))
                        {
                            await RollbackWithSuppression(transaction, isAsync).ConfigureAwait(false);
                        }
                        else
                        {
                            if (isAsync)
                            {
                                await RollbackAsync(transaction).ConfigureAwait(false);
                            }
                            else
                            {
                                Rollback(transaction);
                            }
                        }
                    }
                    finally {
                        if (!persistingIsFailed || !Configuration.Supports(SessionOptions.NonTransactionalReads))
                        {
                            CancelEntitySetsChanges();
                            ClearChangeRegistry();
                            NonPairedReferencesRegistry.Clear();
                            EntitySetChangeRegistry.Clear();
                        }
                        persistingIsFailed = false;
                    }
                }
            }
        }
Beispiel #5
0
        private async ValueTask DisposeImpl(bool isAsync)
        {
            if (isDisposed)
            {
                return;
            }

            sessionLifetimeToken.Expire();

            try {
                if (IsDebugEventLoggingEnabled)
                {
                    OrmLog.Debug(Strings.LogSessionXDisposing, this);
                }

                SystemEvents.NotifyDisposing();
                Events.NotifyDisposing();

                Services.DisposeSafely();
                if (isAsync)
                {
                    await Handler.DisposeSafelyAsync().ConfigureAwait(false);
                }
                else
                {
                    Handler.DisposeSafely();
                }
                CommandProcessorContextProvider.DisposeSafely();

                Domain.ReleaseSingleConnection();

                disposableSet.DisposeSafely();
                disposableSet = null;

                EntityChangeRegistry.Clear();
                EntitySetChangeRegistry.Clear();
                EntityStateCache.Clear();
                ReferenceFieldsChangesRegistry.Clear();
                NonPairedReferencesRegistry.Clear();
                Extensions.Clear();
            }
            finally {
                isDisposed = true;
            }
        }
        private void CancelEntitiesChanges()
        {
            foreach (var newEntity in EntityChangeRegistry.GetItems(PersistenceState.New).ToList())
            {
                newEntity.Update(null);
                newEntity.PersistenceState = PersistenceState.Removed;
            }

            foreach (var modifiedEntity in EntityChangeRegistry.GetItems(PersistenceState.Modified))
            {
                modifiedEntity.RollbackDifference();
                modifiedEntity.PersistenceState = PersistenceState.Synchronized;
            }

            foreach (var removedEntity in EntityChangeRegistry.GetItems(PersistenceState.Removed))
            {
                removedEntity.RollbackDifference();
                removedEntity.PersistenceState = PersistenceState.Synchronized;
            }
            EntityChangeRegistry.Clear();
            NonPairedReferencesRegistry.Clear();
        }
        internal void Persist(PersistReason reason)
        {
            EnsureNotDisposed();
            if (IsPersisting || EntityChangeRegistry.Count == 0)
            {
                return;
            }
            EnsureAllAsyncQueriesFinished();

            var performPinning = pinner.RootCount > 0;

            if (performPinning || (disableAutoSaveChanges && !Configuration.Supports(SessionOptions.NonTransactionalEntityStates)))
            {
                switch (reason)
                {
                case PersistReason.NestedTransaction:
                case PersistReason.Commit:
                    throw new InvalidOperationException(Strings.ExCanNotPersistThereArePinnedEntities);
                }
            }

            if (disableAutoSaveChanges && reason != PersistReason.Manual)
            {
                return;
            }

            using (var ts = OpenTransaction(TransactionOpenMode.Default, IsolationLevel.Unspecified, false)) {
                IsPersisting       = true;
                persistingIsFailed = false;
                SystemEvents.NotifyPersisting();
                Events.NotifyPersisting();
                try {
                    using (this.OpenSystemLogicOnlyRegion()) {
                        DemandTransaction();
                        if (IsDebugEventLoggingEnabled)
                        {
                            OrmLog.Debug(Strings.LogSessionXPersistingReasonY, this, reason);
                        }

                        EntityChangeRegistry itemsToPersist;
                        if (performPinning)
                        {
                            pinner.Process(EntityChangeRegistry);
                            itemsToPersist = pinner.PersistableItems;
                        }
                        else
                        {
                            itemsToPersist = EntityChangeRegistry;
                        }

                        if (LazyKeyGenerationIsEnabled)
                        {
                            RemapEntityKeys(remapper.Remap(itemsToPersist));
                        }
                        ApplyEntitySetsChanges();
                        var persistIsSuccessfull = false;
                        try {
                            Handler.Persist(itemsToPersist, reason == PersistReason.Query);
                            persistIsSuccessfull = true;
                        }
                        catch (Exception) {
                            persistingIsFailed = true;
                            RollbackChangesOfEntitySets();
                            RestoreEntityChangesAfterPersistFailed();
                            throw;
                        }
                        finally {
                            if (persistIsSuccessfull || !Configuration.Supports(SessionOptions.NonTransactionalEntityStates))
                            {
                                DropDifferenceBackup();
                                foreach (var item in itemsToPersist.GetItems(PersistenceState.New))
                                {
                                    item.PersistenceState = PersistenceState.Synchronized;
                                }
                                foreach (var item in itemsToPersist.GetItems(PersistenceState.Modified))
                                {
                                    item.PersistenceState = PersistenceState.Synchronized;
                                }
                                foreach (var item in itemsToPersist.GetItems(PersistenceState.Removed))
                                {
                                    item.Update(null);
                                }

                                if (performPinning)
                                {
                                    EntityChangeRegistry = pinner.PinnedItems;
                                    pinner.Reset();
                                }
                                else
                                {
                                    EntityChangeRegistry.Clear();
                                }
                                EntitySetChangeRegistry.Clear();
                                NonPairedReferencesRegistry.Clear();
                            }
                            if (IsDebugEventLoggingEnabled)
                            {
                                OrmLog.Debug(Strings.LogSessionXPersistCompleted, this);
                            }
                        }
                    }
                    SystemEvents.NotifyPersisted();
                    Events.NotifyPersisted();
                }
                finally {
                    IsPersisting = false;
                }
            }
        }
 /// <summary>
 /// Cancels all changes and resets modified entities to their original state.
 /// </summary>
 /// <exception cref="ObjectDisposedException">Session is already disposed.</exception>
 /// <exception cref="NotSupportedException">Unable to cancel changes for non-disconnected session. Use transaction boundaries to control the state.</exception>
 public void CancelChanges()
 {
     CancelEntitySetsChanges();
     CancelEntitiesChanges();
     NonPairedReferencesRegistry.Clear();
 }