2020-01-29 16:38:52 -05:00
|
|
|
import org.elasticsearch.gradle.info.BuildParams
|
|
|
|
|
2019-11-11 09:32:17 -05:00
|
|
|
evaluationDependsOn(xpackModule('core'))
|
|
|
|
|
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
2020-05-12 00:06:04 -04:00
|
|
|
apply plugin: 'elasticsearch.internal-cluster-test'
|
2019-11-11 09:32:17 -05:00
|
|
|
esplugin {
|
|
|
|
name 'x-pack-eql'
|
|
|
|
description 'The Elasticsearch plugin that powers EQL for Elasticsearch'
|
|
|
|
classname 'org.elasticsearch.xpack.eql.plugin.EqlPlugin'
|
2020-01-14 02:44:51 -05:00
|
|
|
extendedPlugins = ['x-pack-ql', 'lang-painless']
|
2019-11-11 09:32:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
|
|
|
// EQL dependency versions
|
|
|
|
antlrVersion = "4.5.3"
|
|
|
|
}
|
|
|
|
|
|
|
|
archivesBaseName = 'x-pack-eql'
|
|
|
|
|
2020-02-24 12:46:59 -05:00
|
|
|
// All integration tests live in qa modules
|
|
|
|
integTest.enabled = false
|
|
|
|
|
2020-05-12 00:06:04 -04:00
|
|
|
tasks.named('internalClusterTest').configure {
|
2020-04-14 08:06:02 -04:00
|
|
|
if (BuildParams.isSnapshotBuild() == false) {
|
|
|
|
systemProperty 'es.eql_feature_flag_registered', 'true'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-11 09:32:17 -05:00
|
|
|
dependencies {
|
|
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
|
|
|
compileOnly(project(':modules:lang-painless')) {
|
|
|
|
exclude group: "org.ow2.asm"
|
|
|
|
}
|
2020-01-14 02:44:51 -05:00
|
|
|
compile "org.antlr:antlr4-runtime:${antlrVersion}"
|
|
|
|
compileOnly project(path: xpackModule('ql'), configuration: 'default')
|
2019-11-11 09:32:17 -05:00
|
|
|
testCompile project(':test:framework')
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
|
|
testCompile project(path: xpackModule('security'), configuration: 'testArtifacts')
|
2020-02-05 09:45:58 -05:00
|
|
|
testCompile project(path: xpackModule('ql'), configuration: 'testArtifacts')
|
2019-11-11 09:32:17 -05:00
|
|
|
testCompile project(path: ':modules:reindex', configuration: 'runtime')
|
|
|
|
testCompile project(path: ':modules:parent-join', configuration: 'runtime')
|
|
|
|
testCompile project(path: ':modules:analysis-common', configuration: 'runtime')
|
2020-01-03 14:14:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-29 16:38:52 -05:00
|
|
|
/****************************************************************
|
|
|
|
* Enable QA/rest integration tests for snapshot builds only *
|
|
|
|
* TODO: Enable for all builds upon this feature release *
|
|
|
|
****************************************************************/
|
|
|
|
if (BuildParams.isSnapshotBuild()) {
|
|
|
|
// add all sub-projects of the qa sub-project
|
|
|
|
gradle.projectsEvaluated {
|
|
|
|
project.subprojects
|
|
|
|
.find { it.path == project.path + ":qa" }
|
|
|
|
.subprojects
|
|
|
|
.findAll { it.path.startsWith(project.path + ":qa") }
|
|
|
|
.each { check.dependsOn it.check }
|
|
|
|
}
|
2020-01-03 14:14:41 -05:00
|
|
|
}
|
2019-11-11 09:32:17 -05:00
|
|
|
|
|
|
|
/**********************************************
|
|
|
|
* EQL Parser regeneration *
|
|
|
|
**********************************************/
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
regenerate
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
regenerate "org.antlr:antlr4:${antlrVersion}"
|
|
|
|
}
|
|
|
|
|
|
|
|
String grammarPath = 'src/main/antlr'
|
|
|
|
String outputPath = 'src/main/java/org/elasticsearch/xpack/eql/parser'
|
|
|
|
|
|
|
|
task cleanGenerated(type: Delete) {
|
|
|
|
delete fileTree(grammarPath) {
|
|
|
|
include '*.tokens'
|
|
|
|
}
|
|
|
|
delete fileTree(outputPath) {
|
|
|
|
include 'EqlBase*.java'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task regenParser(type: JavaExec) {
|
|
|
|
dependsOn cleanGenerated
|
|
|
|
main = 'org.antlr.v4.Tool'
|
|
|
|
classpath = configurations.regenerate
|
|
|
|
systemProperty 'file.encoding', 'UTF-8'
|
|
|
|
systemProperty 'user.language', 'en'
|
|
|
|
systemProperty 'user.country', 'US'
|
|
|
|
systemProperty 'user.variant', ''
|
|
|
|
args '-Werror',
|
|
|
|
'-package', 'org.elasticsearch.xpack.eql.parser',
|
|
|
|
'-listener',
|
|
|
|
'-visitor',
|
|
|
|
'-o', outputPath,
|
|
|
|
"${file(grammarPath)}/EqlBase.g4"
|
|
|
|
}
|
|
|
|
|
|
|
|
task regen {
|
|
|
|
dependsOn regenParser
|
|
|
|
doLast {
|
|
|
|
// moves token files to grammar directory for use with IDE's
|
|
|
|
ant.move(file: "${outputPath}/EqlBase.tokens", toDir: grammarPath)
|
|
|
|
ant.move(file: "${outputPath}/EqlBaseLexer.tokens", toDir: grammarPath)
|
|
|
|
// make the generated classes package private
|
|
|
|
ant.replaceregexp(match: 'public ((interface|class) \\QEqlBase\\E\\w+)',
|
|
|
|
replace: '\\1',
|
|
|
|
encoding: 'UTF-8') {
|
|
|
|
fileset(dir: outputPath, includes: 'EqlBase*.java')
|
|
|
|
}
|
|
|
|
// nuke timestamps/filenames in generated files
|
|
|
|
ant.replaceregexp(match: '\\Q// Generated from \\E.*',
|
|
|
|
replace: '\\/\\/ ANTLR GENERATED CODE: DO NOT EDIT',
|
|
|
|
encoding: 'UTF-8') {
|
|
|
|
fileset(dir: outputPath, includes: 'EqlBase*.java')
|
|
|
|
}
|
|
|
|
// remove tabs in antlr generated files
|
|
|
|
ant.replaceregexp(match: '\t', flags: 'g', replace: ' ', encoding: 'UTF-8') {
|
|
|
|
fileset(dir: outputPath, includes: 'EqlBase*.java')
|
|
|
|
}
|
|
|
|
// fix line endings
|
|
|
|
ant.fixcrlf(srcdir: outputPath, eol: 'lf') {
|
|
|
|
patternset(includes: 'EqlBase*.java')
|
|
|
|
}
|
|
|
|
}
|
2020-03-20 17:28:15 -04:00
|
|
|
}
|