コード例 #1
0
ファイル: schema_utils.py プロジェクト: Teester/pyshexy
def directed_predicates_in_expression(
        expression: ShExJ.shapeExpr,
        cntxt: Context) -> Dict[IRIREF, PredDirection]:
    """ Directed predicates in expression -- return all predicates in shapeExpr along with which direction(s) they
    evaluate

    :param expression: Expression to scan
    :param cntxt:
    :return:
    """
    dir_predicates = {}

    def predicate_finder(predicates: Dict[IRIREF, PredDirection],
                         tc: ShExJ.TripleConstraint, _: Context) -> None:
        if isinstance(tc, ShExJ.TripleConstraint):
            predicates.setdefault(tc.predicate,
                                  PredDirection()).dir(tc.inverse is None
                                                       or not tc.inverse)

    def triple_expr_finder(predicates: Dict[IRIREF, PredDirection],
                           expr: ShExJ.shapeExpr, cntxt_: Context) -> None:
        if isinstance(expr, ShExJ.Shape) and expr.expression is not None:
            cntxt_.visit_triple_expressions(expr.expression, predicate_finder,
                                            predicates)

    # TODO: follow_inner_shapes as True probably goes too far, but we definitely need to cross shape/triplecons
    cntxt.visit_shapes(expression,
                       triple_expr_finder,
                       dir_predicates,
                       follow_inner_shapes=False)
    return dir_predicates
コード例 #2
0
ファイル: test_visitor.py プロジェクト: vemonet/PyShEx
 def test_example_2(self):
     schema, _ = setup_test(shex_2, None)
     cntxt = Context(None, schema)
     shapes_visited = []
     triples_visited = []
     cntxt.visit_shapes(schema.shapes[0], visit_shape, shapes_visited)
     self.assertEqual(["http://schema.example/S1", "http://schema.example/S2" ], shapes_visited)