/src/org/smscom/prime/prd/multicastImpl/matchmaker/BasicMatchMaker.java
https://code.google.com/p/prime-middleware/ · Java · 126 lines · 59 code · 39 blank · 28 comment · 12 complexity · 4b220d932ebb1b30c0e424c85977b375 MD5 · raw file
- /**
- * This file is part of the PRIME middleware.
- * See http://www.erc-smscom.org
- *
- * Copyright (C) 2008-2013 ERC-SMSCOM Project
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
- * USA, or send email
- *
- * @author Mauro Caporuscio
- */
- package org.smscom.prime.prd.multicastImpl.matchmaker;
- import org.smscom.prime.prd.MatchMaker;
- import org.smscom.prime.util.PrimeLogging;
- import com.hp.hpl.jena.ontology.OntClass;
- import com.hp.hpl.jena.ontology.OntModel;
- import com.hp.hpl.jena.ontology.OntModelSpec;
- import com.hp.hpl.jena.rdf.model.ModelFactory;
- public class BasicMatchMaker implements MatchMaker{
-
- /** The Constant log. */
- private static final PrimeLogging log = new PrimeLogging(""+ BasicMatchMaker.class);
-
- private String NS = "";
- private String prefix = "";
-
- // the Jena model we are using
- private OntModel model;
-
-
- public BasicMatchMaker(String ontologyURI, String ns, String prefix){
- this.NS = ns;
- this.prefix = prefix;
- this.loadOntologyFromFile(ontologyURI);
- }
-
-
- public int matchInstance(String instance, String request){
- OntClass instanceReg = model.getOntClass(NS +prefix+"#" + instance);
- OntClass instanceReq = model.getOntClass(NS +prefix+"#" + request);
-
- if (instanceReg == null || instanceReq == null)
- return FAIL;
-
- int result = matchClasses(instanceReg, instanceReq);
- log.debug(instance + ", " + request + ": " + result);
-
- return result;
- }
-
- private int matchClasses(OntClass instanceReg, OntClass instanceReq){
-
-
- if (instanceReg.hasEquivalentClass(instanceReq) ||
- instanceReg.getLocalName().equals(instanceReq.getLocalName()) )
- return EXACT;
-
- if (instanceReg.hasSuperClass(instanceReq))
- return PLUGIN;
-
- if (instanceReg.hasSubClass(instanceReq))
- return SUBSUME;
-
-
- return FAIL;
- }
-
- public int matchOutput(String instance, String request){
- OntClass instanceReg = model.getOntClass(NS +prefix+"#" + instance);
- OntClass instanceReq = model.getOntClass(NS +prefix+"#" + request);
-
- if (instanceReg == null || instanceReq == null)
- return FAIL;
-
- int result = matchClasses(instanceReg, instanceReq);
- log.debug(instance + ", " + request + ": " + result);
-
- return result;
- }
-
- @Override
- public void loadOntologyFromFile(String ontologyURI) {
- // TODO Auto-generated method stub
- // create the Jena model
- model = ModelFactory.createOntologyModel( OntModelSpec.OWL_MEM, null );
-
- log.debug( "Parsing the ontology: " + ontologyURI + "...");
- model.read("file:" + ontologyURI);
- log.debug( "Consistency Check... " );
- model.prepare();
- model.validate();
-
- log.debug( "DONE" );
- }
- @Override
- public void loadOntologyFromLime(String prefix) {
- // TODO Auto-generated method stub
-
- }
- }