All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.topbraid.jenax.util.ExtraPrefixes Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
/*
 *  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.
 *
 *  See the NOTICE file distributed with this work for additional
 *  information regarding copyright ownership.
 */

package org.topbraid.jenax.util;

import java.util.HashMap;
import java.util.Map;

import org.apache.jena.rdf.model.Resource;


/**
 * Manages extra prefixes that are always available even if not
 * explicitly declared.  Examples include fn and Jena's afn.
 * 
 * @author Holger Knublauch
 */
public class ExtraPrefixes {

	private static Map map = new HashMap();
	
	static {
		map.put("afn", "http://jena.hpl.hp.com/ARQ/function#");
		map.put("fn", "http://www.w3.org/2005/xpath-functions#");
		map.put("jfn", "java:org.apache.jena.sparql.function.library.");
		map.put("list", "http://jena.apache.org/ARQ/list#");
		map.put("pf", "http://jena.hpl.hp.com/ARQ/property#");
		map.put("smf", "http://topbraid.org/sparqlmotionfunctions#");
		map.put("tops", "http://www.topbraid.org/tops#");
	}
	
	
	/**
	 * Programmatically adds a new prefix to be regarded as an "extra"
	 * prefix.  These are prefixes that are assumed to be valid even if
	 * they haven't been declared in the current ontology.
	 * This method has no effect if the prefix was already set before.
	 * @param prefix  the prefix to add
	 * @param namespace  the namespace to add
	 */
	public static void add(String prefix, String namespace) {
		if(!map.containsKey(prefix)) {
			map.put(prefix, namespace);
		}
	}


	/**
	 * Attempts to add an extra prefix for a given Resource.
	 * This does nothing if the prefix does not exist or is empty.
	 * @param resource  the resource to get the namespace of
	 */
	public static void add(Resource resource) {
		String ns = resource.getNameSpace();
		String prefix = resource.getModel().getNsURIPrefix(ns);
		if(prefix != null && prefix.length() > 0) {
			add(prefix, ns);
		}
	}
	
	
	/**
	 * Gets a Map from prefixes to namespaces.
	 * The result should be treated as read-only.
	 * @return the extra prefixes
	 */
	public static Map getExtraPrefixes() {
		return map;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy