私たちは、antlr4を使用してMysqlに似た独自のクエリ言語を構築しています。を使用する場合を除いてwhere clause
、つまり、ユーザーはselect/from
ステートメントを入力しません。
文法を作成し、golangでレクサー/パーサー/リスナーを生成することができました。
文法ファイルEsDslQuery.g4の下:
grammar EsDslQuery;
options {
language = Go;
}
query
: leftBracket = '(' query rightBracket = ')' #bracketExp
| leftQuery=query op=OR rightQuery=query #orLogicalExp
| leftQuery=query op=AND rightQuery=query #andLogicalExp
| propertyName=attrPath op=COMPARISON_OPERATOR propertyValue=attrValue #compareExp
;
attrPath
: ATTRNAME ('.' attrPath)?
;
fragment ATTR_NAME_CHAR
: '-' | '_' | ':' | DIGIT | ALPHA
;
fragment DIGIT
: ('0'..'9')
;
fragment ALPHA
: ( 'A'..'Z' | 'a'..'z' )
;
attrValue
: BOOLEAN #boolean
| NULL #null
| STRING #string
| DOUBLE #double
| '-'? INT EXP? #long
;
...
クエリの例: color="red" and price=20000 or model="hyundai" and (seats=4 or year=2001)
ElasticSearchは、https://github.com/elastic/elasticsearch/tree/master/x-pack/plugin/sqlのプラグインを使用してSQLクエリをサポートします。
Javaコードを理解するのに苦労している。
論理演算子があるので、解析ツリーを取得してESクエリに変換する方法がわかりません。誰かがアイデアを助けたり提案したりできますか?
更新1:対応するESクエリを含む例を追加しました
クエリ例1: color="red" AND price=2000
ESクエリ1:
{
"query": {
"bool": {
"must": [
{
"terms": {
"color": [
"red"
]
}
},
{
"terms": {
"price": [
2000
]
}
}
]
}
},
"size": 100
}
クエリ例2: color="red" AND price=2000 AND (model="hyundai" OR model="bmw")
ESクエリ2:
{
"query": {
"bool": {
"must": [
{
"bool": {
"must": {
"terms": {
"color": ["red"]
}
}
}
},
{
"bool": {
"must": {
"terms": {
"price": [2000]
}
}
}
},
{
"bool": {
"should": [
{
"term": {
"model": "hyundai"
}
},
{
"term": {
"region": "bmw"
}
}
]
}
}
]
}
},
"size": 100
}
クエリ例3: color="red" OR color="blue"
ESクエリ3:
{
"query": {
"bool": {
"should": [
{
"bool": {
"must": {
"terms": {
"color": ["red"]
}
}
}
},
{
"bool": {
"must": {
"terms": {
"color": ["blue"]
}
}
}
}
]
}
},
"size": 100
}
color="red" and price=20000 or model="hyundai" and (seats=4 or year=2001
ES構文ではどのように見えますか?あなたはJSON構文、または短いクエリ文字列構文、またはすべて一緒に違うものが欲しいですか?また、複数の例を追加すると役立ちます。また、あなたはすでに自分で何かを試しましたか?