Skip to content

Commit

Permalink
Use SPARQL template and context map to substitute langCtx
Browse files Browse the repository at this point in the history
  • Loading branch information
wwelling committed Feb 14, 2023
1 parent 108fdbf commit a1de03f
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -456,17 +456,15 @@ private static class FakeVivoPeopleDataGetter extends SparqlQueryDataGetter {
/*
* UQAM-Optimization New query including Linguistic context
*/
private static String QUERY_STRING_LANG(String lang) {
return ""
private static String QUERY_STRING_LANG = ""
+ "PREFIX obo: <http://purl.obolibrary.org/obo/> \n"
+ "PREFIX vcard: <http://www.w3.org/2006/vcard/ns#> \n"
+ "SELECT ?pt \n" + "WHERE { \n"
+ " ?uri obo:ARG_2000028 ?vIndividual . \n"
+ " ?vIndividual vcard:hasTitle ?vTitle . \n"
+ " ?vTitle vcard:title ?pt . \n"
+ " FILTER (langMatches(lang(?pt), '" + lang + "')) \n"
+ " FILTER (langMatches(lang(?pt), '?langCtx')) \n"
+ " } LIMIT 1";
}

private static final String FAKE_VIVO_PEOPLE_DATA_GETTER_URI = "http://FakeVivoPeopleDataGetter";

Expand All @@ -482,7 +480,7 @@ private static OntModel initializeFakeDisplayModel() {
Property saveToVarProperty = m
.getProperty(DisplayVocabulary.SAVE_TO_VAR);

m.add(dataGetter, queryProperty, QUERY_STRING_LANG("en-US")); //UQAM-Optimization Using query with linguistic context
m.add(dataGetter, queryProperty, QUERY_STRING_LANG); //UQAM-Optimization Using query with linguistic context
m.add(dataGetter, saveToVarProperty, "extra");
return m;
}
Expand Down

0 comments on commit a1de03f

Please sign in to comment.