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

edu.cornell.mannlib.vitro.webapp.dao.filtering.filters.EntityPropertyListFilter Maven / Gradle / Ivy

/* $This file is distributed under the terms of the license in LICENSE$ */

package edu.cornell.mannlib.vitro.webapp.dao.filtering.filters;

import java.util.Collection;
import java.util.HashMap;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

import net.sf.jga.fn.UnaryFunctor;

import org.apache.jena.ontology.OntModel;
import org.apache.jena.rdf.model.RDFNode;
import org.apache.jena.rdf.model.Resource;
import org.apache.jena.rdf.model.ResourceFactory;
import org.apache.jena.rdf.model.Statement;
import org.apache.jena.rdf.model.StmtIterator;
import org.apache.jena.shared.Lock;

import edu.cornell.mannlib.vitro.webapp.beans.DataProperty;
import edu.cornell.mannlib.vitro.webapp.beans.DataPropertyStatement;
import edu.cornell.mannlib.vitro.webapp.beans.ObjectProperty;
import edu.cornell.mannlib.vitro.webapp.beans.ObjectPropertyStatement;
import edu.cornell.mannlib.vitro.webapp.beans.Property;
import edu.cornell.mannlib.vitro.webapp.dao.VitroVocabulary;

public class EntityPropertyListFilter extends UnaryFunctor, List> {

	private static final org.apache.jena.rdf.model.Property MASKS_PROPERTY = ResourceFactory.createProperty(VitroVocabulary.MASKS_PROPERTY);
	private Map> propertyMaskMap;

	public EntityPropertyListFilter(OntModel ontModel) {
		propertyMaskMap = new HashMap>();
		ontModel.enterCriticalSection(Lock.READ);
		try {
			StmtIterator maskStmtIt = ontModel.listStatements((Resource) null, MASKS_PROPERTY, (RDFNode) null );
			while (maskStmtIt.hasNext()) {
				Statement maskStmt = maskStmtIt.nextStatement();
				if ( !maskStmt.getSubject().isAnon() && maskStmt.getObject().isResource() && !((Resource) maskStmt.getObject()).isAnon()) {
					String maskedPropertyURI = ((Resource) maskStmt.getObject()).getURI();
					String maskingPropertyURI = maskStmt.getSubject().getURI();
					Collection collectionOfMaskers = propertyMaskMap.get(maskedPropertyURI);
					if (collectionOfMaskers == null) {
						collectionOfMaskers = new LinkedList();
					}
					if (!collectionOfMaskers.contains(maskingPropertyURI)) {
						collectionOfMaskers.add(maskingPropertyURI);
					}
					propertyMaskMap.put(maskedPropertyURI, collectionOfMaskers);
				}
			}
		} finally {
			ontModel.leaveCriticalSection();
		}
	}

	@Override
	public List fn(List propertyList) {
		List filteredList = new ArrayList();
		HashMap urisToProps = new HashMap();
		for (Property p: propertyList) {
			urisToProps.put(p.getURI(), p);
		}
		for (Property p : propertyList) {
			Collection maskingPropertyURIs = propertyMaskMap.get(p.getURI());
			if (maskingPropertyURIs == null) {
				filteredList.add(p);
			} else {
				Property maskingProp = null;
				for (String maskingURI : maskingPropertyURIs) {
					if (urisToProps.keySet().contains(maskingURI)) {
						maskingProp = urisToProps.get(maskingURI);
						break;
					}
				}
				// BUT: don't mask a prop if it "has" (used in) statements and its masker does not
				boolean propHasStatements = false;
				boolean maskerHasStatements = false;
				if (maskingProp != null) {
					if (p instanceof ObjectProperty) {
						List stmtList = ((ObjectProperty) p).getObjectPropertyStatements();
						propHasStatements = (stmtList != null) && (stmtList.size() > 0);
					} else if (p instanceof DataProperty) {
						List stmtList = ((DataProperty) p).getDataPropertyStatements();
						propHasStatements = (stmtList != null) && (stmtList.size() > 0);
					}
					if (maskingProp instanceof ObjectProperty) {
						List stmtList = ((ObjectProperty) maskingProp).getObjectPropertyStatements();
						maskerHasStatements = (stmtList != null) && (stmtList.size() > 0);
					} else if (maskingProp instanceof DataProperty) {
						List stmtList = ((DataProperty) maskingProp).getDataPropertyStatements();
						maskerHasStatements = (stmtList != null) && (stmtList.size() > 0);
					}
				}
				if ( (maskingProp == null) || (propHasStatements & !maskerHasStatements) ) {
					filteredList.add(p);
				}
			}
		}
		return filteredList;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy