/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package com.xpn.xwiki.internal.event; import java.util.Arrays; import java.util.Collection; import java.util.List; import javax.inject.Inject; import javax.inject.Named; import javax.inject.Singleton; import org.xwiki.bridge.event.DocumentCreatedEvent; import org.xwiki.bridge.event.DocumentDeletedEvent; import org.xwiki.bridge.event.DocumentUpdatedEvent; import org.xwiki.component.annotation.Component; import org.xwiki.observation.EventListener; import org.xwiki.observation.ObservationManager; import org.xwiki.observation.event.Event; import com.xpn.xwiki.XWikiContext; import com.xpn.xwiki.doc.XWikiDocument; import com.xpn.xwiki.objects.BaseObject; import com.xpn.xwiki.objects.ObjectDiff; import com.xpn.xwiki.objects.PropertyInterface; /** * Produce {@link XObjectEvent} based on document events. * * @version $Id: 3baf932e76b28d20ef0f0baca064faebcab76d25 $ * @since 3.2M1 */ @Component @Singleton @Named("XObjectEventGeneratorListener") public class XObjectEventGeneratorListener implements EventListener { /** * The events to match. */ private static final List<Event> EVENTS = Arrays.<Event>asList(new DocumentDeletedEvent(), new DocumentCreatedEvent(), new DocumentUpdatedEvent()); @Inject private ObservationManager observation; @Override public String getName() { return "XObjectEventGeneratorListener"; } @Override public List<Event> getEvents() { return EVENTS; } @Override public void onEvent(Event event, Object source, Object data) { XWikiDocument doc = (XWikiDocument) source; XWikiDocument originalDoc = doc.getOriginalDocument(); XWikiContext context = (XWikiContext) data; if (event instanceof DocumentUpdatedEvent) { onDocumentUpdatedEvent(originalDoc, doc, context); } else if (event instanceof DocumentDeletedEvent) { onDocumentDeletedEvent(originalDoc, doc, context); } else if (event instanceof DocumentCreatedEvent) { onDocumentCreatedEvent(originalDoc, doc, context); } } /** * @param originalDoc the previous version of the document * @param doc the new version of the document * @param context the XWiki context */ private void onDocumentCreatedEvent(XWikiDocument originalDoc, XWikiDocument doc, XWikiContext context) { for (List<BaseObject> xobjects : doc.getXObjects().values()) { for (BaseObject xobject : xobjects) { if (xobject != null) { this.observation.notify(new XObjectAddedEvent(xobject.getReference()), doc, context); for (PropertyInterface property : (Collection<PropertyInterface>) xobject.getFieldList()) { this.observation.notify(new XObjectPropertyAddedEvent(property.getReference()), doc, context); } } } } } /** * @param originalDoc the previous version of the document * @param doc the new version of the document * @param context the XWiki context */ private void onDocumentDeletedEvent(XWikiDocument originalDoc, XWikiDocument doc, XWikiContext context) { for (List<BaseObject> xobjects : originalDoc.getXObjects().values()) { for (BaseObject xobject : xobjects) { if (xobject != null) { this.observation.notify(new XObjectDeletedEvent(xobject.getReference()), doc, context); for (PropertyInterface property : (Collection<PropertyInterface>) xobject.getFieldList()) { this.observation.notify(new XObjectPropertyDeletedEvent(property.getReference()), doc, context); } } } } } /** * @param originalDoc the previous version of the document * @param doc the new version of the document * @param context the XWiki context */ private void onDocumentUpdatedEvent(XWikiDocument originalDoc, XWikiDocument doc, XWikiContext context) { for (List<ObjectDiff> objectChanges : doc.getObjectDiff(originalDoc, doc, context)) { boolean modified = false; for (ObjectDiff diff : objectChanges) { BaseObject xobject = doc.getXObject(diff.getXClassReference(), diff.getNumber()); BaseObject xobjectOriginal = originalDoc.getXObject(diff.getXClassReference(), diff.getNumber()); if (ObjectDiff.ACTION_OBJECTREMOVED.equals(diff.getAction())) { this.observation.notify(new XObjectDeletedEvent(xobjectOriginal.getReference()), doc, context); } else { if (ObjectDiff.ACTION_OBJECTADDED.equals(diff.getAction())) { this.observation.notify(new XObjectAddedEvent(xobject.getReference()), doc, context); } else { if (!modified && xobject != null && xobjectOriginal != null) { this.observation.notify(new XObjectUpdatedEvent(xobject.getReference()), doc, context); modified = true; } onObjectPropertyModified(doc, diff, context); } } } } } /** * Generate object property related events. * * @param doc the new version of the document * @param diff the diff entry * @param context the XWiki context */ private void onObjectPropertyModified(XWikiDocument doc, ObjectDiff diff, XWikiContext context) { if (ObjectDiff.ACTION_PROPERTYREMOVED.equals(diff.getAction())) { BaseObject object = doc.getOriginalDocument().getXObject(diff.getXClassReference(), diff.getNumber()); PropertyInterface property = object.getField(diff.getPropName()); this.observation.notify(new XObjectPropertyDeletedEvent(property.getReference()), doc, context); } else { BaseObject object = doc.getXObject(diff.getXClassReference(), diff.getNumber()); PropertyInterface property = object.getField(diff.getPropName()); if (ObjectDiff.ACTION_PROPERTYADDED.equals(diff.getAction())) { this.observation.notify(new XObjectPropertyAddedEvent(property.getReference()), doc, context); } else if (ObjectDiff.ACTION_PROPERTYCHANGED.equals(diff.getAction())) { this.observation.notify(new XObjectPropertyUpdatedEvent(property.getReference()), doc, context); } } } }