Paul Holmes-Higgin 4e2300f095 Updated copyright
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5186 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2007-02-19 17:17:36 +00:00

201 lines
5.4 KiB
Java

/*
* Copyright (C) 2005-2007 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program 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 General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
package org.alfresco.jcr.item;
import java.util.StringTokenizer;
import org.alfresco.service.cmr.repository.Path;
import org.alfresco.service.namespace.NamespacePrefixResolver;
import org.alfresco.service.namespace.QName;
/**
* JCR Path Helper
*
* @author David Caruana
*/
public class JCRPath
{
private Path path;
/**
* Constuct path from string representation of path
*
* @param strPath
*/
public JCRPath(NamespacePrefixResolver resolver, String strPath)
{
// TODO: replace this simple parse for full path syntax
boolean root = false;
int pos = 0;
path = new Path();
StringTokenizer tokenizer = new StringTokenizer(strPath, "/", true);
while (tokenizer.hasMoreTokens())
{
String token = tokenizer.nextToken();
if (pos == 0 && token.equals("/"))
{
root = true;
}
else if (!token.equals("/"))
{
if (root)
{
path.append(new RootSimpleElement(resolver, token));
root = false;
}
else
{
path.append(new SimpleElement(resolver, token));
}
}
pos++;
}
}
/**
* Get the Path
*
* @return the underling path
*/
public Path getPath()
{
return path;
}
@Override
public String toString()
{
return path.toString();
}
/**
* Simple Path Element used for building JCR Paths
*
* @author David Caruana
*/
public static class SimpleElement extends Path.Element
{
private static final long serialVersionUID = -6510331182652872996L;
private QName path;
/**
* @param resolver namespace prefix resolver
* @param path path element name
*/
public SimpleElement(QName path)
{
this.path = path;
}
/**
* @param path path element name
*/
public SimpleElement(NamespacePrefixResolver resolver, String path)
{
this.path = QName.createQName(path, resolver);
}
/**
* Get the QName representation of Path
*/
public QName getQName()
{
return path;
}
@Override
public String getElementString()
{
return path.toString();
}
@Override
public String getPrefixedString(NamespacePrefixResolver resolver)
{
return path.toPrefixString(resolver);
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object o)
{
if(o == this)
{
return true;
}
if(!(o instanceof SimpleElement))
{
return false;
}
SimpleElement other = (SimpleElement)o;
return this.path.equals(other.path);
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
public int hashCode()
{
return path.hashCode();
}
}
/**
* Root Path Element
*
* @author David Caruana
*/
public static class RootSimpleElement extends SimpleElement
{
private static final long serialVersionUID = -4827016063963328324L;
/**
* Construct
*
* @param path
*/
public RootSimpleElement(NamespacePrefixResolver resolver, String path)
{
super(resolver, path);
}
@Override
public String getElementString()
{
return "/" + super.getElementString();
}
@Override
public String getPrefixedString(NamespacePrefixResolver resolver)
{
return "/" + super.getPrefixedString(resolver);
}
}
}