Search in sources :

Example 6 with NoSuchRuleInRecipeException

use of org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException in project stanbol by apache.

the class RuleStoreTest method getExistingRuleByIdInRecipeTest.

private void getExistingRuleByIdInRecipeTest() throws Exception {
    Recipe recipe = store.getRecipe(new IRI("http://incubator.apache.com/stanbol/rules/test/recipeA"));
    try {
        Rule rule = recipe.getRule(recipe.listRuleIDs().get(0));
        Assert.assertNotNull(rule);
    } catch (NoSuchRuleInRecipeException e) {
        Assert.fail();
    }
}
Also used : IRI(org.apache.clerezza.commons.rdf.IRI) NoSuchRuleInRecipeException(org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException) Recipe(org.apache.stanbol.rules.base.api.Recipe) Rule(org.apache.stanbol.rules.base.api.Rule)

Example 7 with NoSuchRuleInRecipeException

use of org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException in project stanbol by apache.

the class RuleStoreTest method getExistingRuleByNameInRecipeTest.

private void getExistingRuleByNameInRecipeTest() throws Exception {
    Recipe recipe = store.getRecipe(new IRI("http://incubator.apache.com/stanbol/rules/test/recipeA"));
    try {
        Rule rule = recipe.getRule(recipe.listRuleNames().get(0));
        Assert.assertNotNull(rule);
    } catch (NoSuchRuleInRecipeException e) {
        Assert.fail();
    }
}
Also used : IRI(org.apache.clerezza.commons.rdf.IRI) NoSuchRuleInRecipeException(org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException) Recipe(org.apache.stanbol.rules.base.api.Recipe) Rule(org.apache.stanbol.rules.base.api.Rule)

Example 8 with NoSuchRuleInRecipeException

use of org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException in project stanbol by apache.

the class ClerezzaRuleStore method findRulesByDescription.

@Override
public RuleList findRulesByDescription(String term) {
    String sparql = "SELECT ?recipe ?rule ?description " + "WHERE { " + "?recipe " + Symbols.hasRule + " ?rule . " + "?rule " + Symbols.description + " ?description . " + "FILTER (regex(?description, \"" + term + "\", \"i\"))" + "}";
    List<IRI> recipeIDs = listRecipeIDs();
    Graph[] tripleCollections = new Graph[recipeIDs.size()];
    for (int i = 0; i < tripleCollections.length; i++) {
        tripleCollections[i] = tcManager.getGraph(recipeIDs.get(i));
    }
    UnionGraph unionGraph = new UnionGraph(tripleCollections);
    RuleList matchingRules = new RuleList();
    try {
        SelectQuery query = (SelectQuery) QueryParser.getInstance().parse(sparql);
        ResultSet resultSet = tcManager.executeSparqlQuery(query, unionGraph);
        while (resultSet.hasNext()) {
            SolutionMapping solutionMapping = resultSet.next();
            IRI recipeID = (IRI) solutionMapping.get("recipe");
            IRI ruleID = (IRI) solutionMapping.get("rule");
            Literal description = (Literal) solutionMapping.get("description");
            try {
                Recipe recipe = getRecipe(recipeID);
                Rule rule = new RecipeRule(recipe, getRule(recipe, ruleID));
                if (description != null) {
                    rule.setDescription(description.getLexicalForm());
                }
                matchingRules.add(rule);
            } catch (NoSuchRecipeException e) {
            // in this case go on in the iteration by fetching other matching recipes
            } catch (RecipeConstructionException e) {
            // in this case go on in the iteration by fetching other matching recipes
            } catch (NoSuchRuleInRecipeException e) {
            // in this case go on in the iteration by fetching other matching recipes
            }
        }
    } catch (ParseException e) {
        log.error("The sparql query contains errors: ", e);
    }
    return matchingRules;
}
Also used : IRI(org.apache.clerezza.commons.rdf.IRI) RuleList(org.apache.stanbol.rules.base.api.util.RuleList) SolutionMapping(org.apache.clerezza.rdf.core.sparql.SolutionMapping) Recipe(org.apache.stanbol.rules.base.api.Recipe) NoSuchRecipeException(org.apache.stanbol.rules.base.api.NoSuchRecipeException) RecipeConstructionException(org.apache.stanbol.rules.base.api.RecipeConstructionException) SelectQuery(org.apache.clerezza.rdf.core.sparql.query.SelectQuery) UnionGraph(org.apache.clerezza.rdf.utils.UnionGraph) Graph(org.apache.clerezza.commons.rdf.Graph) UnionGraph(org.apache.clerezza.rdf.utils.UnionGraph) NoSuchRuleInRecipeException(org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException) Literal(org.apache.clerezza.commons.rdf.Literal) ResultSet(org.apache.clerezza.rdf.core.sparql.ResultSet) Rule(org.apache.stanbol.rules.base.api.Rule) ParseException(org.apache.clerezza.rdf.core.sparql.ParseException)

Example 9 with NoSuchRuleInRecipeException

use of org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException in project stanbol by apache.

the class RecipeImpl method getRule.

@Override
public Rule getRule(IRI ruleID) throws NoSuchRuleInRecipeException {
    for (Rule rule : ruleList) {
        if (rule.getRuleID().toString().equals(ruleID.toString())) {
            return rule;
        }
    }
    StringBuilder message = new StringBuilder();
    message.append("No rule with ID ");
    message.append(ruleID.toString());
    message.append(" exists in recipe ");
    message.append(this.getRecipeID());
    throw new NoSuchRuleInRecipeException(message.toString());
}
Also used : NoSuchRuleInRecipeException(org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException) Rule(org.apache.stanbol.rules.base.api.Rule)

Example 10 with NoSuchRuleInRecipeException

use of org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException in project stanbol by apache.

the class RecipeImpl method getRule.

public Rule getRule(String ruleName) throws NoSuchRuleInRecipeException {
    for (Rule rule : ruleList) {
        if (rule.getRuleName().equals(ruleName)) {
            return rule;
        }
    }
    StringBuilder message = new StringBuilder();
    message.append("No rule named ");
    message.append(ruleName);
    message.append(" exists in recipe ");
    message.append(this.getRecipeID());
    throw new NoSuchRuleInRecipeException(message.toString());
}
Also used : NoSuchRuleInRecipeException(org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException) Rule(org.apache.stanbol.rules.base.api.Rule)

Aggregations

NoSuchRuleInRecipeException (org.apache.stanbol.rules.base.api.NoSuchRuleInRecipeException)11 IRI (org.apache.clerezza.commons.rdf.IRI)9 Recipe (org.apache.stanbol.rules.base.api.Recipe)9 Rule (org.apache.stanbol.rules.base.api.Rule)9 NoSuchRecipeException (org.apache.stanbol.rules.base.api.NoSuchRecipeException)5 RecipeConstructionException (org.apache.stanbol.rules.base.api.RecipeConstructionException)5 RuleList (org.apache.stanbol.rules.base.api.util.RuleList)4 URI (java.net.URI)3 URISyntaxException (java.net.URISyntaxException)3 Path (javax.ws.rs.Path)3 ResponseBuilder (javax.ws.rs.core.Response.ResponseBuilder)3 GET (javax.ws.rs.GET)2 Produces (javax.ws.rs.Produces)2 Graph (org.apache.clerezza.commons.rdf.Graph)2 Literal (org.apache.clerezza.commons.rdf.Literal)2 ParseException (org.apache.clerezza.rdf.core.sparql.ParseException)2 ResultSet (org.apache.clerezza.rdf.core.sparql.ResultSet)2 SolutionMapping (org.apache.clerezza.rdf.core.sparql.SolutionMapping)2 SelectQuery (org.apache.clerezza.rdf.core.sparql.query.SelectQuery)2 UnionGraph (org.apache.clerezza.rdf.utils.UnionGraph)2