/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.jackrabbit.spi2dav;
import org.apache.jackrabbit.spi.Event;
import org.apache.jackrabbit.spi.ItemId;
import org.apache.jackrabbit.spi.Name;
import org.apache.jackrabbit.spi.NameFactory;
import org.apache.jackrabbit.spi.NodeId;
import org.apache.jackrabbit.spi.Path;
import org.apache.jackrabbit.spi.QValue;
import org.apache.jackrabbit.spi.QValueFactory;
import org.apache.jackrabbit.spi.commons.conversion.NamePathResolver;
import org.apache.jackrabbit.spi.commons.name.NameFactoryImpl;
import org.apache.jackrabbit.spi.commons.value.ValueFormat;
import org.apache.jackrabbit.webdav.observation.ObservationConstants;
import org.apache.jackrabbit.webdav.xml.DomUtil;
import org.apache.jackrabbit.webdav.xml.ElementIterator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.w3c.dom.Element;
import javax.jcr.PropertyType;
import javax.jcr.RepositoryException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
/**
* <code>EventImpl</code>...
*/
public class EventImpl
extends org.apache.jackrabbit.spi.commons.EventImpl
implements ObservationConstants {
private static Logger log = LoggerFactory.getLogger(EventImpl.class);
private static final NameFactory N_FACTORY = NameFactoryImpl.getInstance();
public EventImpl(ItemId eventId, Path eventPath, NodeId parentId, int eventType,
Element eventElement, NamePathResolver resolver, QValueFactory qvFactory) {
super(getSpiEventType(eventType), eventPath, eventId, parentId,
null, // TODO not available from XML_EVENT element
null, // TODO not available from XML_EVENT element
DomUtil.getChildTextTrim(eventElement, XML_EVENTUSERID, NAMESPACE),
DomUtil.getChildTextTrim(eventElement, XML_EVENTUSERDATA, NAMESPACE),
Long.parseLong(DomUtil.getChildTextTrim(eventElement, XML_EVENTDATE, NAMESPACE)),
getEventInfo(DomUtil.getChildElement(eventElement, XML_EVENTINFO, NAMESPACE), resolver, qvFactory));
}
//--------------------------------------------------------------------------
private static int getSpiEventType(int jcrEventType) {
switch (jcrEventType) {
case javax.jcr.observation.Event.NODE_ADDED:
return Event.NODE_ADDED;
case javax.jcr.observation.Event.NODE_REMOVED:
return Event.NODE_REMOVED;
case javax.jcr.observation.Event.PROPERTY_ADDED:
return Event.PROPERTY_ADDED;
case javax.jcr.observation.Event.PROPERTY_CHANGED:
return Event.PROPERTY_CHANGED;
case javax.jcr.observation.Event.PROPERTY_REMOVED:
return Event.PROPERTY_REMOVED;
case javax.jcr.observation.Event.NODE_MOVED:
return Event.NODE_MOVED;
case javax.jcr.observation.Event.PERSIST:
return Event.PERSIST;
default:
throw new IllegalArgumentException("Invalid event type: " + jcrEventType);
}
}
private static Map<Name, QValue> getEventInfo(Element infoElement,
NamePathResolver resolver,
QValueFactory qvFactory) {
if (infoElement == null) {
return Collections.EMPTY_MAP;
}
Map<Name, QValue> info = new HashMap();
ElementIterator it = DomUtil.getChildren(infoElement);
while (it.hasNext()) {
Element el = it.nextElement();
String uri = el.getNamespaceURI();
String localName = el.getLocalName();
String value = DomUtil.getTextTrim(el);
try {
Name n = N_FACTORY.create(uri, localName);
QValue qv = null;
if (value != null) {
qv = ValueFormat.getQValue(value, PropertyType.PATH, resolver, qvFactory);
}
info.put(n, qv);
} catch (RepositoryException e) {
log.error("Internal Error: ", e.getMessage());
}
}
return info;
}
}
|