package ch.x42.terye; import java.io.InputStream; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.StringTokenizer; import javax.jcr.AccessDeniedException; import javax.jcr.Binary; import javax.jcr.InvalidItemStateException; import javax.jcr.InvalidLifecycleTransitionException; import javax.jcr.Item; import javax.jcr.ItemExistsException; import javax.jcr.ItemNotFoundException; import javax.jcr.MergeException; import javax.jcr.NoSuchWorkspaceException; import javax.jcr.Node; import javax.jcr.NodeIterator; import javax.jcr.PathNotFoundException; import javax.jcr.Property; import javax.jcr.PropertyIterator; import javax.jcr.RepositoryException; import javax.jcr.UnsupportedRepositoryOperationException; import javax.jcr.Value; import javax.jcr.ValueFormatException; import javax.jcr.lock.Lock; import javax.jcr.lock.LockException; import javax.jcr.nodetype.ConstraintViolationException; import javax.jcr.nodetype.NoSuchNodeTypeException; import javax.jcr.nodetype.NodeDefinition; import javax.jcr.nodetype.NodeType; import javax.jcr.version.ActivityViolationException; import javax.jcr.version.Version; import javax.jcr.version.VersionException; import javax.jcr.version.VersionHistory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import ch.x42.terye.iterator.NodeIteratorImpl; import ch.x42.terye.iterator.PropertyIteratorImpl; import ch.x42.terye.nodetype.NodeTypeImpl; import ch.x42.terye.path.Path; import ch.x42.terye.path.PathFactory; import ch.x42.terye.persistence.ItemState; import ch.x42.terye.persistence.NodeState; import ch.x42.terye.persistence.id.NodeId; import ch.x42.terye.value.ValueImpl; public class NodeImpl extends ItemImpl implements Node { private final Logger logger = LoggerFactory.getLogger(getClass()); private NodeTypeImpl primaryType; public NodeImpl(SessionImpl session, NodeState state) throws RepositoryException { super(session, state); setState(state); } @Override protected void setState(ItemState state) throws RepositoryException { super.setState(state); NodeState nodeState = (NodeState) state; primaryType = new NodeTypeImpl(nodeState.getNodeTypeName()); } protected void addChild(ItemImpl child) throws RepositoryException { if (child.isNode()) { getState().getChildNodes().add(child.getName()); } else { getState().getProperties().add(child.getName()); } } protected void removeChild(ItemImpl child) throws RepositoryException { if (child.isNode()) { getState().getChildNodes().remove(child.getName()); } else { getState().getProperties().remove(child.getName()); } } @Override public void addMixin(String mixinName) throws NoSuchNodeTypeException, VersionException, ConstraintViolationException, LockException, RepositoryException { // TODO Auto-generated method stub } @Override public Node addNode(String relPath) throws ItemExistsException, PathNotFoundException, VersionException, ConstraintViolationException, LockException, RepositoryException { return addNode(relPath, "nt:unstructured"); } @Override public Node addNode(String relPath, String primaryNodeTypeName) throws ItemExistsException, PathNotFoundException, NoSuchNodeTypeException, LockException, VersionException, ConstraintViolationException, RepositoryException { Path path = PathFactory.create(getPath(), relPath); NodeImpl node = getItemManager().createNode(path, primaryNodeTypeName); sanityCheck(); // XXX: temporary // add jcr:created to all nodes in order to prevent Sling from throwing // an exception node.setProperty("jcr:created", Calendar.getInstance()); return node; } @Override public boolean canAddMixin(String mixinName) throws NoSuchNodeTypeException, RepositoryException { // TODO Auto-generated method stub return false; } @Override public void cancelMerge(Version version) throws VersionException, InvalidItemStateException, UnsupportedRepositoryOperationException, RepositoryException { // TODO Auto-generated method stub } @Override public Version checkin() throws VersionException, UnsupportedRepositoryOperationException, InvalidItemStateException, LockException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public void checkout() throws UnsupportedRepositoryOperationException, LockException, ActivityViolationException, RepositoryException { // TODO Auto-generated method stub } @Override public void doneMerge(Version version) throws VersionException, InvalidItemStateException, UnsupportedRepositoryOperationException, RepositoryException { // TODO Auto-generated method stub } @Override public void followLifecycleTransition(String transition) throws UnsupportedRepositoryOperationException, InvalidLifecycleTransitionException, RepositoryException { // TODO Auto-generated method stub } @Override public String[] getAllowedLifecycleTransistions() throws UnsupportedRepositoryOperationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public Version getBaseVersion() throws UnsupportedRepositoryOperationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public String getCorrespondingNodePath(String workspaceName) throws ItemNotFoundException, NoSuchWorkspaceException, AccessDeniedException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public NodeDefinition getDefinition() throws RepositoryException { sanityCheck(); return new NodeDefinitionImpl(); } @Override public NodeId getId() { return (NodeId) super.getId(); } @Override public String getIdentifier() throws RepositoryException { // TODO Auto-generated method stub return null; } @Override public int getIndex() throws RepositoryException { // TODO Auto-generated method stub return 0; } @Override public Lock getLock() throws UnsupportedRepositoryOperationException, LockException, AccessDeniedException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public NodeType[] getMixinNodeTypes() throws RepositoryException { // TODO Auto-generated method stub return null; } @Override public Node getNode(String relPath) throws PathNotFoundException, RepositoryException { logger.debug("[{}].getNode({})", getPath(), relPath); sanityCheck(); Path path = PathFactory.create(getPath(), relPath); return getItemManager().getNode(path); } @Override public NodeIterator getNodes() throws RepositoryException { logger.debug("[{}].getNodes()", getPath()); sanityCheck(); return new NodeIteratorImpl(getItemManager(), getPathInternal(), new LinkedList<String>(getState().getChildNodes())); } @Override public NodeIterator getNodes(String namePattern) throws RepositoryException { return getNodes(patternToArray(namePattern)); } @Override public NodeIterator getNodes(String[] nameGlobs) throws RepositoryException { logger.debug("[{}].getNodes({})", getPath(), Arrays.toString(nameGlobs)); sanityCheck(); List<String> filteredChildren = filterByName( getState().getChildNodes(), nameGlobs); return new NodeIteratorImpl(getItemManager(), getPathInternal(), filteredChildren); } private String[] patternToArray(String namePattern) { StringTokenizer st = new StringTokenizer(namePattern, "|"); ArrayList<String> globs = new ArrayList<String>(); while (st.hasMoreTokens()) { globs.add(st.nextToken().trim()); } return globs.toArray(new String[globs.size()]); } private List<String> filterByName(Iterable<String> names, String[] nameGlobs) throws RepositoryException { List<String> filteredNames = new LinkedList<String>(); Iterator<String> iterator = names.iterator(); while (iterator.hasNext()) { String name = iterator.next(); for (String nameGlob : nameGlobs) { // XXX: simplistic matching (ignoring wildcard) if (name.matches(nameGlob)) { filteredNames.add(name); break; } } } return filteredNames; } @Override public Item getPrimaryItem() throws ItemNotFoundException, RepositoryException { sanityCheck(); throw new ItemNotFoundException(); } @Override public NodeType getPrimaryNodeType() throws RepositoryException { sanityCheck(); return primaryType; } @Override public PropertyIterator getProperties() throws RepositoryException { logger.debug("[{}].getProperties()", getPath()); sanityCheck(); return new PropertyIteratorImpl(getItemManager(), getPathInternal(), new LinkedList<String>(getState().getProperties())); } @Override public PropertyIterator getProperties(String namePattern) throws RepositoryException { return getProperties(patternToArray(namePattern)); } @Override public PropertyIterator getProperties(String[] nameGlobs) throws RepositoryException { logger.debug("[{}].getProperties({})", getPath(), Arrays.toString(nameGlobs)); sanityCheck(); List<String> filteredProperties = filterByName(getState() .getProperties(), nameGlobs); return new PropertyIteratorImpl(getItemManager(), getPathInternal(), filteredProperties); } @Override public Property getProperty(String relPath) throws PathNotFoundException, RepositoryException { logger.debug("[{}].getProperty({})", getPath(), relPath); sanityCheck(); Path path = PathFactory.create(getPath(), relPath); return getItemManager().getProperty(path); } @Override public PropertyIterator getReferences() throws RepositoryException { // TODO Auto-generated method stub return null; } @Override public PropertyIterator getReferences(String name) throws RepositoryException { // TODO Auto-generated method stub return null; } @Override public NodeIterator getSharedSet() throws RepositoryException { // TODO Auto-generated method stub return null; } @Override public NodeState getState() { return (NodeState) super.getState(); } @Override public String getUUID() throws UnsupportedRepositoryOperationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public VersionHistory getVersionHistory() throws UnsupportedRepositoryOperationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public PropertyIterator getWeakReferences() throws RepositoryException { // TODO Auto-generated method stub return null; } @Override public PropertyIterator getWeakReferences(String name) throws RepositoryException { // TODO Auto-generated method stub return null; } @Override public boolean hasNode(String relPath) throws RepositoryException { sanityCheck(); Path path = PathFactory.create(getPath(), relPath); return getItemManager().nodeExists(path); } @Override public boolean hasNodes() throws RepositoryException { sanityCheck(); return !getState().getChildNodes().isEmpty(); } @Override public boolean hasProperties() throws RepositoryException { sanityCheck(); return !getState().getProperties().isEmpty(); } @Override public boolean hasProperty(String relPath) throws RepositoryException { sanityCheck(); Path path = PathFactory.create(getPath(), relPath); return getItemManager().propertyExists(path); } @Override public boolean holdsLock() throws RepositoryException { // TODO Auto-generated method stub return false; } @Override public boolean isCheckedOut() throws RepositoryException { // TODO Auto-generated method stub return false; } @Override public boolean isLocked() throws RepositoryException { // TODO Auto-generated method stub return false; } public boolean isRoot() { return getId().toString().equals(Path.ROOT); } @Override public boolean isNodeType(String nodeTypeName) throws RepositoryException { sanityCheck(); return primaryType.isNodeType(nodeTypeName); } @Override public Lock lock(boolean isDeep, boolean isSessionScoped) throws UnsupportedRepositoryOperationException, LockException, AccessDeniedException, InvalidItemStateException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public NodeIterator merge(String srcWorkspace, boolean bestEffort) throws NoSuchWorkspaceException, AccessDeniedException, MergeException, LockException, InvalidItemStateException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public void orderBefore(String srcChildRelPath, String destChildRelPath) throws UnsupportedRepositoryOperationException, VersionException, ConstraintViolationException, ItemNotFoundException, LockException, RepositoryException { // TODO Auto-generated method stub } @Override public void remove() throws VersionException, LockException, ConstraintViolationException, AccessDeniedException, RepositoryException { if (getPath().equals("/")) { throw new RepositoryException("Cannot remove the root node"); } super.remove(); } @Override public void removeMixin(String mixinName) throws NoSuchNodeTypeException, VersionException, ConstraintViolationException, LockException, RepositoryException { // TODO Auto-generated method stub } @Override public void removeShare() throws VersionException, LockException, ConstraintViolationException, RepositoryException { // TODO Auto-generated method stub } @Override public void removeSharedSet() throws VersionException, LockException, ConstraintViolationException, RepositoryException { // TODO Auto-generated method stub } @Override public void restore(String versionName, boolean removeExisting) throws VersionException, ItemExistsException, UnsupportedRepositoryOperationException, LockException, InvalidItemStateException, RepositoryException { // TODO Auto-generated method stub } @Override public void restore(Version version, boolean removeExisting) throws VersionException, ItemExistsException, InvalidItemStateException, UnsupportedRepositoryOperationException, LockException, RepositoryException { // TODO Auto-generated method stub } @Override public void restore(Version version, String relPath, boolean removeExisting) throws PathNotFoundException, ItemExistsException, VersionException, ConstraintViolationException, UnsupportedRepositoryOperationException, LockException, InvalidItemStateException, RepositoryException { // TODO Auto-generated method stub } @Override public void restoreByLabel(String versionLabel, boolean removeExisting) throws VersionException, ItemExistsException, UnsupportedRepositoryOperationException, LockException, InvalidItemStateException, RepositoryException { // TODO Auto-generated method stub } @Override public void setPrimaryType(String nodeTypeName) throws NoSuchNodeTypeException, VersionException, ConstraintViolationException, LockException, RepositoryException { // TODO Auto-generated method stub } private PropertyImpl setPropertyInternal(String name, ValueImpl value) throws RepositoryException { sanityCheck(); Path path = PathFactory.create(getPath(), name); PropertyImpl property = null; // setting a value to null amounts to removing it if (value == null) { try { getItemManager().removeItem(path); } catch (RepositoryException e) { // property might not exist, in which case we catch a // PathNotFoundException and do nothing } } else { if (getItemManager().propertyExists(path)) { property = getItemManager().updateProperty(path, value); } else { property = getItemManager().createProperty(path, value); } } return property; } @Override public Property setProperty(String name, String[] values) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public Property setProperty(String name, Value value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { // XXX: cast to ValueImpl might not be valid return setPropertyInternal(name, (ValueImpl) value); } @Override public Property setProperty(String name, Value[] values) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public Property setProperty(String name, String value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { return setPropertyInternal(name, (ValueImpl) getSession() .getValueFactory().createValue(value)); } @Override public Property setProperty(String name, InputStream value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { return setProperty(name, getSession().getValueFactory().createBinary(value)); } @Override public Property setProperty(String name, Binary value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { return setPropertyInternal(name, (ValueImpl) getSession() .getValueFactory().createValue(value)); } @Override public Property setProperty(String name, boolean value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { return setPropertyInternal(name, (ValueImpl) getSession() .getValueFactory().createValue(value)); } @Override public Property setProperty(String name, double value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { return setPropertyInternal(name, (ValueImpl) getSession() .getValueFactory().createValue(value)); } @Override public Property setProperty(String name, BigDecimal value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { return setPropertyInternal(name, (ValueImpl) getSession() .getValueFactory().createValue(value)); } @Override public Property setProperty(String name, long value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { return setPropertyInternal(name, (ValueImpl) getSession() .getValueFactory().createValue(value)); } @Override public Property setProperty(String name, Calendar value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { return setPropertyInternal(name, (ValueImpl) getSession() .getValueFactory().createValue(value)); } @Override public Property setProperty(String name, Node value) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public Property setProperty(String name, Value value, int type) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public Property setProperty(String name, Value[] values, int type) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public Property setProperty(String name, String[] values, int type) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { // TODO Auto-generated method stub return null; } @Override public Property setProperty(String name, String value, int type) throws ValueFormatException, VersionException, LockException, ConstraintViolationException, RepositoryException { // XXX: discard type return setProperty(name, value); } @Override public void unlock() throws UnsupportedRepositoryOperationException, LockException, AccessDeniedException, InvalidItemStateException, RepositoryException { // TODO Auto-generated method stub } @Override public void update(String arg0) throws NoSuchWorkspaceException, AccessDeniedException, LockException, InvalidItemStateException, RepositoryException { // TODO Auto-generated method stub } @Override public String toString() { try { String str = "Node ["; str += "path=" + getPath(); str += "]"; return str; } catch (RepositoryException e) { return super.toString(); } } }