public abstract class AbstractOntologyService extends Object
Modifier and Type | Class and Description |
---|---|
protected class |
AbstractOntologyService.OntologyInitializationThread |
Modifier and Type | Field and Description |
---|---|
protected AtomicBoolean |
cacheReady |
protected SearchIndex |
index |
protected AtomicBoolean |
indexReady |
protected Map<String,OntologyIndividual> |
individuals |
protected AbstractOntologyService.OntologyInitializationThread |
initializationThread |
protected AtomicBoolean |
isInitialized |
protected static org.slf4j.Logger |
log |
protected com.hp.hpl.jena.ontology.OntModel |
model |
protected AtomicBoolean |
modelReady |
protected Map<String,OntologyTerm> |
terms |
Constructor and Description |
---|
AbstractOntologyService() |
Modifier and Type | Method and Description |
---|---|
protected void |
addTerms(Collection<OntologyResource> newTerms) |
void |
closeIndex()
Do not do this except before re-indexing.
|
Collection<OntologyIndividual> |
findIndividuals(String search)
Looks for any OntologyIndividuals that match the given search string.
|
Collection<OntologyResource> |
findResources(String searchString)
Looks for any OntologyIndividuals or ontologyTerms that match the given search string
|
Collection<OntologyTerm> |
findTerm(String search)
Looks for any ontologyTerms that match the given search string.
|
OntologyTerm |
findUsingAlternativeId(String alternativeId) |
Set<String> |
getAllURIs() |
protected com.hp.hpl.jena.ontology.OntModel |
getModel() |
protected abstract String |
getOntologyName()
The simple name of the ontology.
|
protected abstract String |
getOntologyUrl()
Defines the location of the ontology eg: http://mged.sourceforge.net/ontologies/MGEDOntology.owl
|
OntologyResource |
getResource(String uri)
Looks through both Terms and Individuals for a OntologyResource that has a uri matching the uri given.
|
OntologyTerm |
getTerm(String uri)
Looks for a OntologyTerm that has the match in URI given
|
Collection<OntologyIndividual> |
getTermIndividuals(String uri) |
void |
index(boolean force)
Create the search index.
|
boolean |
isEnabled() |
boolean |
isInitializationThreadAlive() |
boolean |
isOntologyLoaded()
Used for determining if the Ontology has finished loading into memory.
|
protected abstract com.hp.hpl.jena.ontology.OntModel |
loadModel()
Delegates the call as to load the model into memory or leave it on disk.
|
protected void |
loadTermsInNameSpace(String url,
com.hp.hpl.jena.ontology.OntModel m) |
void |
startInitializationThread(boolean forceLoad,
boolean forceIndexing) |
protected static org.slf4j.Logger log
protected AtomicBoolean cacheReady
protected SearchIndex index
protected AtomicBoolean indexReady
protected Map<String,OntologyIndividual> individuals
protected AbstractOntologyService.OntologyInitializationThread initializationThread
protected AtomicBoolean isInitialized
protected com.hp.hpl.jena.ontology.OntModel model
protected AtomicBoolean modelReady
protected Map<String,OntologyTerm> terms
public void closeIndex()
public Collection<OntologyIndividual> findIndividuals(String search) throws OntologySearchException
search
- OntologySearchException
public Collection<OntologyResource> findResources(String searchString) throws OntologySearchException
search
- OntologySearchException
public Collection<OntologyTerm> findTerm(String search) throws OntologySearchException
search
- OntologySearchException
public OntologyTerm findUsingAlternativeId(String alternativeId)
public OntologyResource getResource(String uri)
uri
- public OntologyTerm getTerm(String uri)
uri
- public Collection<OntologyIndividual> getTermIndividuals(String uri)
uri
- public void index(boolean force)
force
- public boolean isEnabled()
public boolean isInitializationThreadAlive()
public boolean isOntologyLoaded()
public void startInitializationThread(boolean forceLoad, boolean forceIndexing)
forceLoad
- forceIndexing
- If forceLoad is also true, indexing will be performed. If you know the index is
up to date, there's no need to do it again. Normally indexing is only done if there is no
index, or if the ontology has changed since last loaded.protected void addTerms(Collection<OntologyResource> newTerms)
newTerms
- protected com.hp.hpl.jena.ontology.OntModel getModel()
protected abstract String getOntologyName()
protected abstract String getOntologyUrl()
protected abstract com.hp.hpl.jena.ontology.OntModel loadModel()
url
- IOException
protected void loadTermsInNameSpace(String url, com.hp.hpl.jena.ontology.OntModel m)
url
- m
- IOException
Copyright © 2003–2022 UBC Michael Smith Laboratories. All rights reserved.