2021-07-02 04:48:16 +08:00
|
|
|
package xpath
|
2021-03-04 04:26:09 +08:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"strconv"
|
|
|
|
|
"strings"
|
|
|
|
|
"time"
|
|
|
|
|
|
2021-07-02 04:48:16 +08:00
|
|
|
path "github.com/antchfx/xpath"
|
2021-03-04 04:26:09 +08:00
|
|
|
|
|
|
|
|
"github.com/influxdata/telegraf"
|
|
|
|
|
"github.com/influxdata/telegraf/metric"
|
|
|
|
|
)
|
|
|
|
|
|
2021-07-02 04:48:16 +08:00
|
|
|
type dataNode interface{}
|
|
|
|
|
|
|
|
|
|
type dataDocument interface {
|
|
|
|
|
Parse(buf []byte) (dataNode, error)
|
|
|
|
|
QueryAll(node dataNode, expr string) ([]dataNode, error)
|
|
|
|
|
CreateXPathNavigator(node dataNode) path.NodeNavigator
|
|
|
|
|
GetNodePath(node, relativeTo dataNode, sep string) string
|
|
|
|
|
OutputXML(node dataNode) string
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-04 04:26:09 +08:00
|
|
|
type Parser struct {
|
2021-07-02 04:48:16 +08:00
|
|
|
Format string
|
|
|
|
|
ProtobufMessageDef string
|
|
|
|
|
ProtobufMessageType string
|
|
|
|
|
PrintDocument bool
|
|
|
|
|
Configs []Config
|
|
|
|
|
DefaultTags map[string]string
|
|
|
|
|
Log telegraf.Logger
|
|
|
|
|
|
|
|
|
|
document dataDocument
|
2021-03-04 04:26:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Config struct {
|
2021-09-16 01:58:40 +08:00
|
|
|
MetricDefaultName string `toml:"-"`
|
|
|
|
|
MetricQuery string `toml:"metric_name"`
|
|
|
|
|
Selection string `toml:"metric_selection"`
|
|
|
|
|
Timestamp string `toml:"timestamp"`
|
|
|
|
|
TimestampFmt string `toml:"timestamp_format"`
|
|
|
|
|
Tags map[string]string `toml:"tags"`
|
|
|
|
|
Fields map[string]string `toml:"fields"`
|
|
|
|
|
FieldsInt map[string]string `toml:"fields_int"`
|
2021-03-04 04:26:09 +08:00
|
|
|
|
|
|
|
|
FieldSelection string `toml:"field_selection"`
|
|
|
|
|
FieldNameQuery string `toml:"field_name"`
|
|
|
|
|
FieldValueQuery string `toml:"field_value"`
|
|
|
|
|
FieldNameExpand bool `toml:"field_name_expansion"`
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-02 04:48:16 +08:00
|
|
|
func (p *Parser) Init() error {
|
|
|
|
|
switch p.Format {
|
|
|
|
|
case "", "xml":
|
|
|
|
|
p.document = &xmlDocument{}
|
|
|
|
|
case "xpath_json":
|
|
|
|
|
p.document = &jsonDocument{}
|
|
|
|
|
case "xpath_msgpack":
|
|
|
|
|
p.document = &msgpackDocument{}
|
|
|
|
|
case "xpath_protobuf":
|
|
|
|
|
pbdoc := protobufDocument{
|
|
|
|
|
MessageDefinition: p.ProtobufMessageDef,
|
|
|
|
|
MessageType: p.ProtobufMessageType,
|
|
|
|
|
Log: p.Log,
|
|
|
|
|
}
|
|
|
|
|
if err := pbdoc.Init(); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
p.document = &pbdoc
|
|
|
|
|
default:
|
|
|
|
|
return fmt.Errorf("unknown data-format %q for xpath parser", p.Format)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-04 04:26:09 +08:00
|
|
|
func (p *Parser) Parse(buf []byte) ([]telegraf.Metric, error) {
|
|
|
|
|
t := time.Now()
|
|
|
|
|
|
|
|
|
|
// Parse the XML
|
2021-07-02 04:48:16 +08:00
|
|
|
doc, err := p.document.Parse(buf)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2021-07-02 04:48:16 +08:00
|
|
|
if p.PrintDocument {
|
|
|
|
|
p.Log.Debugf("XML document equivalent: %q", p.document.OutputXML(doc))
|
|
|
|
|
}
|
2021-03-04 04:26:09 +08:00
|
|
|
|
|
|
|
|
// Queries
|
|
|
|
|
metrics := make([]telegraf.Metric, 0)
|
|
|
|
|
for _, config := range p.Configs {
|
|
|
|
|
if len(config.Selection) == 0 {
|
|
|
|
|
config.Selection = "/"
|
|
|
|
|
}
|
2021-07-02 04:48:16 +08:00
|
|
|
selectedNodes, err := p.document.QueryAll(doc, config.Selection)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if len(selectedNodes) < 1 || selectedNodes[0] == nil {
|
|
|
|
|
p.debugEmptyQuery("metric selection", doc, config.Selection)
|
|
|
|
|
return nil, fmt.Errorf("cannot parse with empty selection node")
|
|
|
|
|
}
|
2021-03-17 04:15:18 +08:00
|
|
|
p.Log.Debugf("Number of selected metric nodes: %d", len(selectedNodes))
|
2021-03-04 04:26:09 +08:00
|
|
|
|
|
|
|
|
for _, selected := range selectedNodes {
|
|
|
|
|
m, err := p.parseQuery(t, doc, selected, config)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return metrics, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
metrics = append(metrics, m)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return metrics, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p *Parser) ParseLine(line string) (telegraf.Metric, error) {
|
|
|
|
|
t := time.Now()
|
|
|
|
|
|
|
|
|
|
switch len(p.Configs) {
|
|
|
|
|
case 0:
|
|
|
|
|
return nil, nil
|
|
|
|
|
case 1:
|
|
|
|
|
config := p.Configs[0]
|
|
|
|
|
|
2021-07-02 04:48:16 +08:00
|
|
|
doc, err := p.document.Parse([]byte(line))
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
selected := doc
|
|
|
|
|
if len(config.Selection) > 0 {
|
2021-07-02 04:48:16 +08:00
|
|
|
selectedNodes, err := p.document.QueryAll(doc, config.Selection)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if len(selectedNodes) < 1 || selectedNodes[0] == nil {
|
|
|
|
|
p.debugEmptyQuery("metric selection", doc, config.Selection)
|
|
|
|
|
return nil, fmt.Errorf("cannot parse line with empty selection")
|
|
|
|
|
} else if len(selectedNodes) != 1 {
|
|
|
|
|
return nil, fmt.Errorf("cannot parse line with multiple selected nodes (%d)", len(selectedNodes))
|
|
|
|
|
}
|
|
|
|
|
selected = selectedNodes[0]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return p.parseQuery(t, doc, selected, config)
|
|
|
|
|
}
|
|
|
|
|
return nil, fmt.Errorf("cannot parse line with multiple (%d) configurations", len(p.Configs))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p *Parser) SetDefaultTags(tags map[string]string) {
|
|
|
|
|
p.DefaultTags = tags
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-02 04:48:16 +08:00
|
|
|
func (p *Parser) parseQuery(starttime time.Time, doc, selected dataNode, config Config) (telegraf.Metric, error) {
|
2021-03-04 04:26:09 +08:00
|
|
|
var timestamp time.Time
|
|
|
|
|
var metricname string
|
|
|
|
|
|
|
|
|
|
// Determine the metric name. If a query was specified, use the result of this query and the default metric name
|
|
|
|
|
// otherwise.
|
2021-09-16 01:58:40 +08:00
|
|
|
metricname = config.MetricDefaultName
|
2021-03-04 04:26:09 +08:00
|
|
|
if len(config.MetricQuery) > 0 {
|
2021-07-02 04:48:16 +08:00
|
|
|
v, err := p.executeQuery(doc, selected, config.MetricQuery)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to query metric name: %v", err)
|
|
|
|
|
}
|
2021-09-16 01:58:40 +08:00
|
|
|
var ok bool
|
|
|
|
|
if metricname, ok = v.(string); !ok {
|
|
|
|
|
if v == nil {
|
|
|
|
|
p.Log.Infof("Hint: Empty metric-name-node. If you wanted to set a constant please use `metric_name = \"'name'\"`.")
|
|
|
|
|
}
|
|
|
|
|
return nil, fmt.Errorf("failed to query metric name: query result is of type %T not 'string'", v)
|
|
|
|
|
}
|
2021-03-04 04:26:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// By default take the time the parser was invoked and override the value
|
|
|
|
|
// with the queried timestamp if an expresion was specified.
|
|
|
|
|
timestamp = starttime
|
|
|
|
|
if len(config.Timestamp) > 0 {
|
2021-07-02 04:48:16 +08:00
|
|
|
v, err := p.executeQuery(doc, selected, config.Timestamp)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to query timestamp: %v", err)
|
|
|
|
|
}
|
2021-03-26 01:57:01 +08:00
|
|
|
switch v := v.(type) {
|
2021-03-04 04:26:09 +08:00
|
|
|
case string:
|
|
|
|
|
// Parse the string with the given format or assume the string to contain
|
|
|
|
|
// a unix timestamp in seconds if no format is given.
|
|
|
|
|
if len(config.TimestampFmt) < 1 || strings.HasPrefix(config.TimestampFmt, "unix") {
|
|
|
|
|
var nanoseconds int64
|
|
|
|
|
|
2021-03-26 01:57:01 +08:00
|
|
|
t, err := strconv.ParseFloat(v, 64)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to parse unix timestamp: %v", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch config.TimestampFmt {
|
|
|
|
|
case "unix_ns":
|
|
|
|
|
nanoseconds = int64(t)
|
|
|
|
|
case "unix_us":
|
|
|
|
|
nanoseconds = int64(t * 1e3)
|
|
|
|
|
case "unix_ms":
|
|
|
|
|
nanoseconds = int64(t * 1e6)
|
|
|
|
|
default:
|
|
|
|
|
nanoseconds = int64(t * 1e9)
|
|
|
|
|
}
|
|
|
|
|
timestamp = time.Unix(0, nanoseconds)
|
|
|
|
|
} else {
|
2021-03-26 01:57:01 +08:00
|
|
|
timestamp, err = time.Parse(config.TimestampFmt, v)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to query timestamp format: %v", err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
case float64:
|
|
|
|
|
// Assume the value to contain a timestamp in seconds and fractions thereof.
|
2021-03-26 01:57:01 +08:00
|
|
|
timestamp = time.Unix(0, int64(v*1e9))
|
2021-03-17 04:15:18 +08:00
|
|
|
case nil:
|
|
|
|
|
// No timestamp found. Just ignore the time and use "starttime"
|
2021-03-04 04:26:09 +08:00
|
|
|
default:
|
|
|
|
|
return nil, fmt.Errorf("unknown format '%T' for timestamp query '%v'", v, config.Timestamp)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Query tags and add default ones
|
|
|
|
|
tags := make(map[string]string)
|
|
|
|
|
for name, query := range config.Tags {
|
|
|
|
|
// Execute the query and cast the returned values into strings
|
2021-07-02 04:48:16 +08:00
|
|
|
v, err := p.executeQuery(doc, selected, query)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to query tag '%s': %v", name, err)
|
|
|
|
|
}
|
2021-03-26 01:57:01 +08:00
|
|
|
switch v := v.(type) {
|
2021-03-04 04:26:09 +08:00
|
|
|
case string:
|
2021-03-26 01:57:01 +08:00
|
|
|
tags[name] = v
|
2021-03-04 04:26:09 +08:00
|
|
|
case bool:
|
2021-03-26 01:57:01 +08:00
|
|
|
tags[name] = strconv.FormatBool(v)
|
2021-03-04 04:26:09 +08:00
|
|
|
case float64:
|
2021-03-26 01:57:01 +08:00
|
|
|
tags[name] = strconv.FormatFloat(v, 'G', -1, 64)
|
2021-03-17 04:15:18 +08:00
|
|
|
case nil:
|
|
|
|
|
continue
|
2021-03-04 04:26:09 +08:00
|
|
|
default:
|
|
|
|
|
return nil, fmt.Errorf("unknown format '%T' for tag '%s'", v, name)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for name, v := range p.DefaultTags {
|
|
|
|
|
tags[name] = v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Query fields
|
|
|
|
|
fields := make(map[string]interface{})
|
|
|
|
|
for name, query := range config.FieldsInt {
|
|
|
|
|
// Execute the query and cast the returned values into integers
|
2021-07-02 04:48:16 +08:00
|
|
|
v, err := p.executeQuery(doc, selected, query)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to query field (int) '%s': %v", name, err)
|
|
|
|
|
}
|
2021-03-26 01:57:01 +08:00
|
|
|
switch v := v.(type) {
|
2021-03-04 04:26:09 +08:00
|
|
|
case string:
|
2021-03-26 01:57:01 +08:00
|
|
|
fields[name], err = strconv.ParseInt(v, 10, 54)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to parse field (int) '%s': %v", name, err)
|
|
|
|
|
}
|
|
|
|
|
case bool:
|
|
|
|
|
fields[name] = int64(0)
|
2021-03-26 01:57:01 +08:00
|
|
|
if v {
|
2021-03-04 04:26:09 +08:00
|
|
|
fields[name] = int64(1)
|
|
|
|
|
}
|
|
|
|
|
case float64:
|
2021-03-26 01:57:01 +08:00
|
|
|
fields[name] = int64(v)
|
2021-03-17 04:15:18 +08:00
|
|
|
case nil:
|
|
|
|
|
continue
|
2021-03-04 04:26:09 +08:00
|
|
|
default:
|
|
|
|
|
return nil, fmt.Errorf("unknown format '%T' for field (int) '%s'", v, name)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for name, query := range config.Fields {
|
|
|
|
|
// Execute the query and store the result in fields
|
2021-07-02 04:48:16 +08:00
|
|
|
v, err := p.executeQuery(doc, selected, query)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to query field '%s': %v", name, err)
|
|
|
|
|
}
|
|
|
|
|
fields[name] = v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Handle the field batch definitions if any.
|
|
|
|
|
if len(config.FieldSelection) > 0 {
|
|
|
|
|
fieldnamequery := "name()"
|
|
|
|
|
fieldvaluequery := "."
|
|
|
|
|
if len(config.FieldNameQuery) > 0 {
|
|
|
|
|
fieldnamequery = config.FieldNameQuery
|
|
|
|
|
}
|
|
|
|
|
if len(config.FieldValueQuery) > 0 {
|
|
|
|
|
fieldvaluequery = config.FieldValueQuery
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Query all fields
|
2021-07-02 04:48:16 +08:00
|
|
|
selectedFieldNodes, err := p.document.QueryAll(selected, config.FieldSelection)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2021-03-17 04:15:18 +08:00
|
|
|
p.Log.Debugf("Number of selected field nodes: %d", len(selectedFieldNodes))
|
2021-03-04 04:26:09 +08:00
|
|
|
if len(selectedFieldNodes) > 0 && selectedFieldNodes[0] != nil {
|
|
|
|
|
for _, selectedfield := range selectedFieldNodes {
|
2021-07-02 04:48:16 +08:00
|
|
|
n, err := p.executeQuery(doc, selectedfield, fieldnamequery)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to query field name with query '%s': %v", fieldnamequery, err)
|
|
|
|
|
}
|
|
|
|
|
name, ok := n.(string)
|
|
|
|
|
if !ok {
|
|
|
|
|
return nil, fmt.Errorf("failed to query field name with query '%s': result is not a string (%v)", fieldnamequery, n)
|
|
|
|
|
}
|
2021-07-02 04:48:16 +08:00
|
|
|
v, err := p.executeQuery(doc, selectedfield, fieldvaluequery)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to query field value for '%s': %v", name, err)
|
|
|
|
|
}
|
2021-11-25 02:52:51 +08:00
|
|
|
|
2021-03-04 04:26:09 +08:00
|
|
|
if config.FieldNameExpand {
|
2021-07-02 04:48:16 +08:00
|
|
|
p := p.document.GetNodePath(selectedfield, selected, "_")
|
2021-03-04 04:26:09 +08:00
|
|
|
if len(p) > 0 {
|
2021-11-25 02:52:51 +08:00
|
|
|
name = p + "_" + name
|
2021-03-04 04:26:09 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check if field name already exists and if so, append an index number.
|
2021-11-25 02:52:51 +08:00
|
|
|
if _, ok := fields[name]; ok {
|
2021-03-04 04:26:09 +08:00
|
|
|
for i := 1; ; i++ {
|
2021-11-25 02:52:51 +08:00
|
|
|
p := name + "_" + strconv.Itoa(i)
|
2021-03-04 04:26:09 +08:00
|
|
|
if _, ok := fields[p]; !ok {
|
2021-11-25 02:52:51 +08:00
|
|
|
name = p
|
2021-03-04 04:26:09 +08:00
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-25 02:52:51 +08:00
|
|
|
fields[name] = v
|
2021-03-04 04:26:09 +08:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
p.debugEmptyQuery("field selection", selected, config.FieldSelection)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 02:40:03 +08:00
|
|
|
return metric.New(metricname, tags, fields, timestamp), nil
|
2021-03-04 04:26:09 +08:00
|
|
|
}
|
|
|
|
|
|
2021-07-02 04:48:16 +08:00
|
|
|
func (p *Parser) executeQuery(doc, selected dataNode, query string) (r interface{}, err error) {
|
2021-03-04 04:26:09 +08:00
|
|
|
// Check if the query is relative or absolute and set the root for the query
|
|
|
|
|
root := selected
|
|
|
|
|
if strings.HasPrefix(query, "/") {
|
|
|
|
|
root = doc
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Compile the query
|
2021-07-02 04:48:16 +08:00
|
|
|
expr, err := path.Compile(query)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, fmt.Errorf("failed to compile query '%s': %v", query, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Evaluate the compiled expression and handle returned node-iterators
|
|
|
|
|
// separately. Those iterators will be returned for queries directly
|
|
|
|
|
// referencing a node (value or attribute).
|
2021-07-02 04:48:16 +08:00
|
|
|
n := expr.Evaluate(p.document.CreateXPathNavigator(root))
|
|
|
|
|
if iter, ok := n.(*path.NodeIterator); ok {
|
2021-03-04 04:26:09 +08:00
|
|
|
// We got an iterator, so take the first match and get the referenced
|
|
|
|
|
// property. This will always be a string.
|
|
|
|
|
if iter.MoveNext() {
|
|
|
|
|
r = iter.Current().Value()
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
r = n
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return r, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func splitLastPathElement(query string) []string {
|
|
|
|
|
// This is a rudimentary xpath-parser that splits the path
|
|
|
|
|
// into the last path element and the remaining path-part.
|
|
|
|
|
// The last path element is then further splitted into
|
|
|
|
|
// parts such as attributes or selectors. Each returned
|
|
|
|
|
// element is a full path!
|
|
|
|
|
|
|
|
|
|
// Nothing left
|
|
|
|
|
if query == "" || query == "/" || query == "//" || query == "." {
|
|
|
|
|
return []string{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
seperatorIdx := strings.LastIndex(query, "/")
|
|
|
|
|
if seperatorIdx < 0 {
|
|
|
|
|
query = "./" + query
|
|
|
|
|
seperatorIdx = 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// For double slash we want to split at the first slash
|
|
|
|
|
if seperatorIdx > 0 && query[seperatorIdx-1] == byte('/') {
|
|
|
|
|
seperatorIdx--
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base := query[:seperatorIdx]
|
|
|
|
|
if base == "" {
|
|
|
|
|
base = "/"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elements := make([]string, 1)
|
|
|
|
|
elements[0] = base
|
|
|
|
|
|
|
|
|
|
offset := seperatorIdx
|
|
|
|
|
if i := strings.Index(query[offset:], "::"); i >= 0 {
|
|
|
|
|
// Check for axis operator
|
|
|
|
|
offset += i
|
|
|
|
|
elements = append(elements, query[:offset]+"::*")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if i := strings.Index(query[offset:], "["); i >= 0 {
|
|
|
|
|
// Check for predicates
|
|
|
|
|
offset += i
|
|
|
|
|
elements = append(elements, query[:offset])
|
|
|
|
|
} else if i := strings.Index(query[offset:], "@"); i >= 0 {
|
|
|
|
|
// Check for attributes
|
|
|
|
|
offset += i
|
|
|
|
|
elements = append(elements, query[:offset])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return elements
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-02 04:48:16 +08:00
|
|
|
func (p *Parser) debugEmptyQuery(operation string, root dataNode, initialquery string) {
|
2021-03-04 04:26:09 +08:00
|
|
|
if p.Log == nil {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query := initialquery
|
|
|
|
|
|
|
|
|
|
// We already know that the
|
|
|
|
|
p.Log.Debugf("got 0 nodes for query %q in %s", query, operation)
|
|
|
|
|
for {
|
|
|
|
|
parts := splitLastPathElement(query)
|
|
|
|
|
if len(parts) < 1 {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
for i := len(parts) - 1; i >= 0; i-- {
|
|
|
|
|
q := parts[i]
|
2021-07-02 04:48:16 +08:00
|
|
|
nodes, err := p.document.QueryAll(root, q)
|
2021-03-04 04:26:09 +08:00
|
|
|
if err != nil {
|
|
|
|
|
p.Log.Debugf("executing query %q in %s failed: %v", q, operation, err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
p.Log.Debugf("got %d nodes for query %q in %s", len(nodes), q, operation)
|
|
|
|
|
if len(nodes) > 0 && nodes[0] != nil {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
query = parts[0]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|