Util.java
/*
* Copyright (c) 2007-2017 MetaSolutions AB
*
* Licensed 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.entrystore.impl;
import org.eclipse.rdf4j.model.IRI;
import org.eclipse.rdf4j.model.ValueFactory;
import org.entrystore.repository.RepositoryManager;
import java.net.URI;
import java.util.StringTokenizer;
public class Util {
public static StringTokenizer extractParameters(RepositoryManager rman, IRI uri) {
return extractParameters(rman, uri.toString());
}
public static StringTokenizer extractParameters(RepositoryManager rman, String uri) {
String withoutBase = uri.substring(rman.getRepositoryURL().toString().length());
return new StringTokenizer(withoutBase, "/");
}
public static IRI getMetadataURI(EntryImpl item, String contextID, String uniqueID) {
ValueFactory vf = item.getRepository().getValueFactory();
String base = item.getRepositoryManager().getRepositoryURL().toString();
return vf.createIRI(base + contextID + "/" + RepositoryProperties.MD_PATH + "/" + uniqueID);
}
public static URI getMMdURIFromMdURI(IRI md) {
return URI.create(md.toString().replaceFirst("/"+RepositoryProperties.MD_PATH+"/", "/"+RepositoryProperties.ENTRY_PATH+"/"));
}
public static String getContextIdFromURI(RepositoryManager rman, URI sourceURI) {
return extractParameters(rman, sourceURI.toString()).nextToken();
}
public static URI getContextURIFromURI(RepositoryManager rman, URI sourceURI) {
return URI.create(rman.getRepositoryURL().toString()+ "/" + RepositoryProperties.SYSTEM_CONTEXTS_ID + "/"
+ RepositoryProperties.DATA_PATH + "/" + getContextIdFromURI(rman, sourceURI));
}
public static URI getContextMMdURIFromURI(RepositoryManager rman, URI sourceURI) {
return URI.create(rman.getRepositoryURL().toString()+ "/" + RepositoryProperties.SYSTEM_CONTEXTS_ID + "/"
+ RepositoryProperties.ENTRY_PATH + "/" + getContextIdFromURI(rman, sourceURI));
}
}