radial sugiyama positioning integration

This commit is contained in:
Oxy8
2026-03-23 11:13:27 -03:00
parent 6b9115e43b
commit 696844f341
51 changed files with 10089 additions and 364 deletions

View File

@@ -17,12 +17,12 @@ func neighborsQuery(selectedNodes []NodeRef, includeBNodes bool) string {
}
if len(valuesTerms) == 0 {
return "SELECT ?nbr WHERE { FILTER(false) }"
return "SELECT ?s ?p ?o WHERE { FILTER(false) }"
}
bnodeFilter := ""
if !includeBNodes {
bnodeFilter = "FILTER(!isBlank(?nbr))"
bnodeFilter = "FILTER(!isBlank(?s) && !isBlank(?o))"
}
values := strings.Join(valuesTerms, " ")
@@ -31,46 +31,55 @@ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
SELECT DISTINCT ?nbr
SELECT DISTINCT ?s ?p ?o
WHERE {
VALUES ?sel { %s }
{
?sel rdf:type ?o .
VALUES ?sel { %s }
BIND(?sel AS ?s)
VALUES ?p { rdf:type }
?s ?p ?o .
?o rdf:type owl:Class .
BIND(?o AS ?nbr)
}
UNION
{
?s rdf:type ?sel .
VALUES ?sel { %s }
VALUES ?p { rdf:type }
?s ?p ?sel .
?sel rdf:type owl:Class .
BIND(?s AS ?nbr)
BIND(?sel AS ?o)
}
UNION
{
?sel rdfs:subClassOf ?o .
BIND(?o AS ?nbr)
VALUES ?sel { %s }
BIND(?sel AS ?s)
VALUES ?p { rdfs:subClassOf }
?s ?p ?o .
}
UNION
{
?s rdfs:subClassOf ?sel .
BIND(?s AS ?nbr)
VALUES ?sel { %s }
VALUES ?p { rdfs:subClassOf }
?s ?p ?sel .
BIND(?sel AS ?o)
}
FILTER(!isLiteral(?nbr))
FILTER(?nbr != ?sel)
FILTER(!isLiteral(?o))
FILTER(?s != ?o)
%s
}
`, values, bnodeFilter)
`, values, values, values, values, bnodeFilter)
}
func runNeighbors(ctx context.Context, q Querier, idx Index, selectedIDs []uint32, includeBNodes bool) ([]uint32, error) {
func runNeighbors(ctx context.Context, q Querier, idx Index, selectedIDs []uint32, includeBNodes bool) (Result, error) {
selectedNodes, selectedSet := selectedNodesFromIDs(idx, selectedIDs, includeBNodes)
if len(selectedNodes) == 0 {
return []uint32{}, nil
return Result{NeighborIDs: []uint32{}, Triples: []Triple{}}, nil
}
raw, err := q.Query(ctx, neighborsQuery(selectedNodes, includeBNodes))
query := neighborsQuery(selectedNodes, includeBNodes)
raw, err := q.Query(ctx, query)
if err != nil {
return nil, err
logQueryExecutionFailure("neighbors", selectedIDs, includeBNodes, query, err)
return Result{}, err
}
return idsFromBindings(raw, "nbr", idx, selectedSet, includeBNodes)
return resultFromTripleBindings(raw, idx, selectedSet, includeBNodes)
}