2020-10-08 23:59:03 +00:00
|
|
|
package treeops
|
|
|
|
|
2020-10-09 01:04:19 +00:00
|
|
|
import (
|
2020-10-10 04:00:39 +00:00
|
|
|
"fmt"
|
|
|
|
|
2020-10-21 01:54:58 +00:00
|
|
|
"container/list"
|
|
|
|
|
2020-10-17 11:10:47 +00:00
|
|
|
"gopkg.in/op/go-logging.v1"
|
2020-10-09 01:04:19 +00:00
|
|
|
)
|
|
|
|
|
2020-10-08 23:59:03 +00:00
|
|
|
type dataTreeNavigator struct {
|
2020-10-20 02:53:26 +00:00
|
|
|
navigationPrefs NavigationPrefs
|
2020-10-08 23:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type NavigationPrefs struct {
|
|
|
|
FollowAlias bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type DataTreeNavigator interface {
|
|
|
|
GetMatchingNodes(matchingNodes []*CandidateNode, pathNode *PathTreeNode) ([]*CandidateNode, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewDataTreeNavigator(navigationPrefs NavigationPrefs) DataTreeNavigator {
|
2020-10-20 02:53:26 +00:00
|
|
|
return &dataTreeNavigator{navigationPrefs}
|
2020-10-08 23:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *dataTreeNavigator) GetMatchingNodes(matchingNodes []*CandidateNode, pathNode *PathTreeNode) ([]*CandidateNode, error) {
|
2020-10-21 01:54:58 +00:00
|
|
|
var matchingNodeMap = list.New()
|
2020-10-09 01:04:19 +00:00
|
|
|
|
|
|
|
for _, n := range matchingNodes {
|
2020-10-21 01:54:58 +00:00
|
|
|
matchingNodeMap.PushBack(n)
|
2020-10-09 01:04:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
matchedNodes, err := d.getMatchingNodes(matchingNodeMap, pathNode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
values := make([]*CandidateNode, 0, matchedNodes.Len())
|
|
|
|
|
|
|
|
for el := matchedNodes.Front(); el != nil; el = el.Next() {
|
|
|
|
values = append(values, el.Value.(*CandidateNode))
|
|
|
|
}
|
|
|
|
return values, nil
|
|
|
|
}
|
|
|
|
|
2020-10-21 01:54:58 +00:00
|
|
|
func (d *dataTreeNavigator) getMatchingNodes(matchingNodes *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
2020-10-13 01:51:37 +00:00
|
|
|
if pathNode == nil {
|
|
|
|
log.Debugf("getMatchingNodes - nothing to do")
|
|
|
|
return matchingNodes, nil
|
|
|
|
}
|
2020-10-20 04:33:20 +00:00
|
|
|
log.Debugf("Processing Op: %v", pathNode.Operation.toString())
|
2020-10-17 11:10:47 +00:00
|
|
|
if log.IsEnabledFor(logging.DEBUG) {
|
|
|
|
for el := matchingNodes.Front(); el != nil; el = el.Next() {
|
|
|
|
log.Debug(NodeToString(el.Value.(*CandidateNode)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Debug(">>")
|
2020-10-20 04:33:20 +00:00
|
|
|
handler := pathNode.Operation.OperationType.Handler
|
2020-10-20 02:53:26 +00:00
|
|
|
if handler != nil {
|
|
|
|
return handler(d, matchingNodes, pathNode)
|
2020-10-08 23:59:03 +00:00
|
|
|
}
|
2020-10-20 04:33:20 +00:00
|
|
|
return nil, fmt.Errorf("Unknown operator %v", pathNode.Operation.OperationType)
|
2020-10-08 23:59:03 +00:00
|
|
|
|
|
|
|
}
|