/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

  1. /**
  2. * This file is part of the PRIME middleware.
  3. * See http://www.erc-smscom.org
  4. *
  5. * Copyright (C) 2008-2013 ERC-SMSCOM Project
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
  20. * USA, or send email
  21. *
  22. * @author Mauro Caporuscio
  23. */
  24. package org.smscom.prime.prd.multicastImpl.matchmaker;
  25. import org.smscom.prime.prd.MatchMaker;
  26. import org.smscom.prime.util.PrimeLogging;
  27. import com.hp.hpl.jena.ontology.OntClass;
  28. import com.hp.hpl.jena.ontology.OntModel;
  29. import com.hp.hpl.jena.ontology.OntModelSpec;
  30. import com.hp.hpl.jena.rdf.model.ModelFactory;
  31. public class BasicMatchMaker implements MatchMaker{
  32. /** The Constant log. */
  33. private static final PrimeLogging log = new PrimeLogging(""+ BasicMatchMaker.class);
  34. private String NS = "";
  35. private String prefix = "";
  36. // the Jena model we are using
  37. private OntModel model;
  38. public BasicMatchMaker(String ontologyURI, String ns, String prefix){
  39. this.NS = ns;
  40. this.prefix = prefix;
  41. this.loadOntologyFromFile(ontologyURI);
  42. }
  43. public int matchInstance(String instance, String request){
  44. OntClass instanceReg = model.getOntClass(NS +prefix+"#" + instance);
  45. OntClass instanceReq = model.getOntClass(NS +prefix+"#" + request);
  46. if (instanceReg == null || instanceReq == null)
  47. return FAIL;
  48. int result = matchClasses(instanceReg, instanceReq);
  49. log.debug(instance + ", " + request + ": " + result);
  50. return result;
  51. }
  52. private int matchClasses(OntClass instanceReg, OntClass instanceReq){
  53. if (instanceReg.hasEquivalentClass(instanceReq) ||
  54. instanceReg.getLocalName().equals(instanceReq.getLocalName()) )
  55. return EXACT;
  56. if (instanceReg.hasSuperClass(instanceReq))
  57. return PLUGIN;
  58. if (instanceReg.hasSubClass(instanceReq))
  59. return SUBSUME;
  60. return FAIL;
  61. }
  62. public int matchOutput(String instance, String request){
  63. OntClass instanceReg = model.getOntClass(NS +prefix+"#" + instance);
  64. OntClass instanceReq = model.getOntClass(NS +prefix+"#" + request);
  65. if (instanceReg == null || instanceReq == null)
  66. return FAIL;
  67. int result = matchClasses(instanceReg, instanceReq);
  68. log.debug(instance + ", " + request + ": " + result);
  69. return result;
  70. }
  71. @Override
  72. public void loadOntologyFromFile(String ontologyURI) {
  73. // TODO Auto-generated method stub
  74. // create the Jena model
  75. model = ModelFactory.createOntologyModel( OntModelSpec.OWL_MEM, null );
  76. log.debug( "Parsing the ontology: " + ontologyURI + "...");
  77. model.read("file:" + ontologyURI);
  78. log.debug( "Consistency Check... " );
  79. model.prepare();
  80. model.validate();
  81. log.debug( "DONE" );
  82. }
  83. @Override
  84. public void loadOntologyFromLime(String prefix) {
  85. // TODO Auto-generated method stub
  86. }
  87. }