com.jetbrains.teamsys.dnq.database.ReadOnlyTransientChangesTrackerImpl Maven / Gradle / Ivy
/**
* Copyright 2006 - 2017 JetBrains s.r.o.
*
* 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 com.jetbrains.teamsys.dnq.database;
import jetbrains.exodus.database.LinkChange;
import jetbrains.exodus.database.TransientChangesTracker;
import jetbrains.exodus.database.TransientEntity;
import jetbrains.exodus.database.TransientEntityChange;
import jetbrains.exodus.entitystore.Entity;
import jetbrains.exodus.entitystore.PersistentStoreTransaction;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Collections;
import java.util.Map;
import java.util.Set;
@SuppressWarnings("unchecked")
public class ReadOnlyTransientChangesTrackerImpl implements TransientChangesTracker {
private PersistentStoreTransaction snapshot;
ReadOnlyTransientChangesTrackerImpl(PersistentStoreTransaction snapshot) {
this.snapshot = snapshot;
}
@NotNull
@Override
public Set getChangesDescription() {
return Collections.EMPTY_SET;
}
@Override
public TransientEntityChange getChangeDescription(TransientEntity e) {
throw new UnsupportedOperationException();
}
@Override
public int getChangesDescriptionCount() {
return 0;
}
@Nullable
@Override
public Map getChangedLinksDetailed(@NotNull TransientEntity e) {
return Collections.EMPTY_MAP;
}
@Nullable
@Override
public Set getChangedProperties(@NotNull TransientEntity e) {
return Collections.EMPTY_SET;
}
@Override
public PersistentStoreTransaction getSnapshot() {
return snapshot;
}
@Override
public TransientEntity getSnapshotEntity(TransientEntity e) {
throw new UnsupportedOperationException();
}
@Override
public Set getChangedEntities() {
return Collections.EMPTY_SET;
}
@Override
public Set getRemovedEntities() {
return Collections.EMPTY_SET;
}
@Override
public Set getAffectedEntityTypes() {
return Collections.EMPTY_SET;
}
@Override
public boolean isNew(TransientEntity e) {
return false;
}
@Override
public boolean isSaved(TransientEntity transientEntity) {
return true;
}
@Override
public boolean isRemoved(TransientEntity transientEntity) {
return false;
}
@Override
public void linkChanged(TransientEntity source, String linkName, TransientEntity target, TransientEntity oldTarget, boolean add) {
throw new UnsupportedOperationException();
}
@Override
public void linksRemoved(TransientEntity source, String linkName, Iterable links) {
throw new UnsupportedOperationException();
}
@Override
public void propertyChanged(TransientEntity e, String propertyName) {
throw new UnsupportedOperationException();
}
@Override
public void removePropertyChanged(TransientEntity e, String propertyName) {
throw new UnsupportedOperationException();
}
@Override
public void entityAdded(TransientEntity e) {
throw new UnsupportedOperationException();
}
@Override
public void entityRemoved(TransientEntity e) {
throw new UnsupportedOperationException();
}
@Override
public TransientChangesTracker upgrade() {
return new TransientChangesTrackerImpl(snapshot);
}
@Override
public void dispose() {
if (snapshot != null) {
snapshot.abort();
snapshot = null;
}
}
}