Skip to content

ugent-library/cqlparser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SRU CQL query parser

Parses a CQL query into a tree of nodes that you can use to further translate to another query (e.g. Lucene, ElasticSearch, Solr).

Usage

Parse(query string) (Node, error)

Returns interface Node that can be either a TermNode or a BooleanNode. Use type switches to detect the right type.

Example:

package main

import (
	"fmt"
	"github.com/ugent-library/cqlparser"
)

func visit(n cqlparser.Node, indent int) {
	for i := 0; i < indent; i++ {
		fmt.Print(" ")
	}
	switch v := n.(type) {
	case *cqlparser.BooleanNode:
		fmt.Printf("%s %s\n", "BOOLEAN", v.Op)
		visit(v.Left, indent+1)
		visit(v.Right, indent+1)
	case *cqlparser.TermNode:
		fmt.Printf("%s\n", v.String())
	}
}

func main() {
	q := "(year >= 2003 and year <= 2005) and (title=Plato)"
	node, _ := cqlparser.Parse(q)
	visit(node, 0)
}

Support

  • term code. But no relation modifiers
  • boolean node

References

This code is heavily based on the perl module CQL::Parser the work of Brian Cassidy, whose code I have tried to convert partially to golang.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages