use of org.hibernate.event.spi.PreCollectionUpdateEvent in project hibernate-orm by hibernate.
the class CollectionUpdateAction method preUpdate.
private void preUpdate() {
final EventListenerGroup<PreCollectionUpdateEventListener> listenerGroup = listenerGroup(EventType.PRE_COLLECTION_UPDATE);
if (listenerGroup.isEmpty()) {
return;
}
final PreCollectionUpdateEvent event = new PreCollectionUpdateEvent(getPersister(), getCollection(), eventSource());
for (PreCollectionUpdateEventListener listener : listenerGroup.listeners()) {
listener.onPreUpdateCollection(event);
}
}
use of org.hibernate.event.spi.PreCollectionUpdateEvent in project hibernate-orm by hibernate.
the class DetachedMultipleCollectionChangeTest method checkListener.
protected void checkListener(MultipleCollectionListeners listeners, MultipleCollectionListeners.Listener listenerExpected, org.hibernate.test.event.collection.Entity ownerExpected, List<? extends org.hibernate.test.event.collection.Entity> expectedCollectionEntrySnapshot, int index) {
AbstractCollectionEvent event = listeners.getEvents().get(index);
assertSame(listenerExpected, listeners.getListenersCalled().get(index));
assertEquals(ownerExpected, event.getAffectedOwnerOrNull());
assertEquals(ownerExpected.getId(), event.getAffectedOwnerIdOrNull());
assertEquals(ownerExpected.getClass().getName(), event.getAffectedOwnerEntityName());
if (event instanceof PreCollectionUpdateEvent) {
Serializable snapshot = listeners.getSnapshots().get(index);
assertEquals(expectedCollectionEntrySnapshot, snapshot);
}
if (event instanceof PreCollectionRemoveEvent) {
Serializable snapshot = listeners.getSnapshots().get(index);
assertEquals(expectedCollectionEntrySnapshot, snapshot);
}
if (event instanceof PostCollectionRecreateEvent) {
Serializable snapshot = listeners.getSnapshots().get(index);
assertEquals(expectedCollectionEntrySnapshot, snapshot);
}
}
use of org.hibernate.event.spi.PreCollectionUpdateEvent in project hibernate-orm by hibernate.
the class DetachedMultipleCollectionChangeTest method checkListener.
protected void checkListener(MultipleCollectionListeners listeners, MultipleCollectionListeners.Listener listenerExpected, Entity ownerExpected, List<? extends Entity> expectedCollectionEntrySnapshot, int index) {
AbstractCollectionEvent event = listeners.getEvents().get(index);
assertSame(listenerExpected, listeners.getListenersCalled().get(index));
assertEquals(ownerExpected, event.getAffectedOwnerOrNull());
assertEquals(ownerExpected.getId(), event.getAffectedOwnerIdOrNull());
assertEquals(ownerExpected.getClass().getName(), event.getAffectedOwnerEntityName());
if (event instanceof PreCollectionUpdateEvent) {
Serializable snapshot = listeners.getSnapshots().get(index);
assertEquals(expectedCollectionEntrySnapshot, snapshot);
}
if (event instanceof PreCollectionRemoveEvent) {
Serializable snapshot = listeners.getSnapshots().get(index);
assertEquals(expectedCollectionEntrySnapshot, snapshot);
}
if (event instanceof PostCollectionRecreateEvent) {
Serializable snapshot = listeners.getSnapshots().get(index);
assertEquals(expectedCollectionEntrySnapshot, snapshot);
}
}
use of org.hibernate.event.spi.PreCollectionUpdateEvent in project hibernate-orm by hibernate.
the class MergeCollectionEventTest method checkListener.
protected void checkListener(int eventIndex, Class<? extends AbstractCollectionEvent> expectedEventType, Identifiable expectedOwner, List<? extends Identifiable> expectedCollectionEntrySnapshot) {
final AggregatedCollectionEventListener.EventEntry eventEntry = collectionListenerIntegrator.getListener().getEventEntryList().get(eventIndex);
final AbstractCollectionEvent event = eventEntry.getEvent();
assertTyping(expectedEventType, event);
// because of the merge graphs, the instances are likely different. just base check on type and id
// assertEquals( expectedOwner, event.getAffectedOwnerOrNull() );
assertEquals(expectedOwner.getClass().getName(), event.getAffectedOwnerEntityName());
assertEquals(expectedOwner.getId(), event.getAffectedOwnerIdOrNull());
if (event instanceof PreCollectionUpdateEvent || event instanceof PreCollectionRemoveEvent || event instanceof PostCollectionRecreateEvent) {
List<Identifiable> snapshot = (List) eventEntry.getSnapshotAtTimeOfEventHandling();
assertEquals(expectedCollectionEntrySnapshot.size(), snapshot.size());
for (int i = 0; i < expectedCollectionEntrySnapshot.size(); i++) {
Identifiable expected = expectedCollectionEntrySnapshot.get(i);
Identifiable found = snapshot.get(i);
assertEquals(expected.getClass().getName(), found.getClass().getName());
assertEquals(expected.getId(), found.getId());
}
}
}
use of org.hibernate.event.spi.PreCollectionUpdateEvent in project hibernate-reactive by hibernate.
the class ReactiveCollectionUpdateAction method preUpdate.
private void preUpdate() {
final EventListenerGroup<PreCollectionUpdateEventListener> listenerGroup = listenerGroup(EventType.PRE_COLLECTION_UPDATE);
if (listenerGroup.isEmpty()) {
return;
}
final PreCollectionUpdateEvent event = new PreCollectionUpdateEvent(getPersister(), getCollection(), eventSource());
for (PreCollectionUpdateEventListener listener : listenerGroup.listeners()) {
listener.onPreUpdateCollection(event);
}
}
Aggregations