-
Notifications
You must be signed in to change notification settings - Fork 96
/
build.sbt
207 lines (187 loc) · 9.29 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
* Copyright (c) 2011-2015 EPFL DATA Laboratory
* Copyright (c) 2014-2015 The Squall Collaboration (see NOTICE)
*
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
scalaVersion := "2.11.6"
lazy val tempInstallDbtoaster = taskKey[String]("Installs DBToaster in a temporal directory if necessary and returns the DBToaster home")
lazy val commonSettings = Seq(
name := "squall",
organization := "ch.epfl.data",
version := "0.2.0",
scalaVersion := "2.11.6",
// Avoids having the scala version in the path to the jars
crossPaths := false,
// Options for assembling a single jar
test in assembly := {},
assemblyJarName in assembly := name.value + "-standalone-" + version.value + ".jar",
assemblyJarName in assemblyPackageDependency := name.value + "-dependencies-" + version.value + ".jar",
// TODO: this is very wrong, I'm taking the default strategy, and instead of
// using MergeStrategy.deduplicate, I'm using MergeStrategy.first to fix the
// conflicts
assemblyMergeStrategy in assembly := {
case x if Assembly.isConfigFile(x) =>
MergeStrategy.concat
case PathList(ps @ _*) if Assembly.isReadme(ps.last) || Assembly.isLicenseFile(ps.last) =>
MergeStrategy.rename
case PathList("META-INF", xs @ _*) =>
(xs map {_.toLowerCase}) match {
case ("manifest.mf" :: Nil) | ("index.list" :: Nil) | ("dependencies" :: Nil) =>
MergeStrategy.discard
case ps @ (x :: xs) if ps.last.endsWith(".sf") || ps.last.endsWith(".dsa") =>
MergeStrategy.discard
case "plexus" :: xs =>
MergeStrategy.discard
case "services" :: xs =>
MergeStrategy.filterDistinctLines
case ("spring.schemas" :: Nil) | ("spring.handlers" :: Nil) =>
MergeStrategy.filterDistinctLines
case _ => MergeStrategy.first
}
case _ => MergeStrategy.first
}
)
lazy val SqlTest = config("sql") extend(Test)
lazy val DbtoasterTest = config("dbtoaster") extend(Test)
def sqlFilter(name: String): Boolean = (name startsWith "ch.epfl.data.squall.test.sql")
def dbtoasterFilter(name: String): Boolean = (name startsWith "ch.epfl.data.squall.test.dbtoaster")
def planFilter(name: String): Boolean = !dbtoasterFilter(name) && !sqlFilter(name)
lazy val squall = (project in file("squall-core")).
configs(SqlTest).
configs(DbtoasterTest).
settings(commonSettings: _*).
settings(inConfig(SqlTest)(Defaults.testTasks): _*).
settings(inConfig(DbtoasterTest)(Defaults.testTasks): _*).
settings(
mainClass := Some("ch.epfl.data.squall.main.Main"),
unmanagedSourceDirectories in Compile += baseDirectory.value / "../squall-examples/squall-java-examples/src/",
// Don't use scala as a dependency
//autoScalaLibrary := false,
// Set the external library directories to ./contrib
unmanagedBase := baseDirectory.value / "../contrib",
// We need to add Clojars as a resolver, as Storm depends on some
// libraries from there.
resolvers += "clojars" at "https://clojars.org/repo",
libraryDependencies ++= Seq(
// Versions that were changed when migrating from Lein to sbt are
// commented just before the library
"net.sf.jsqlparser" % "jsqlparser" % "0.7.0",
"net.sf.trove4j" % "trove4j" % "3.0.2",
"net.sf.opencsv" % "opencsv" % "2.3",
// bdb-je: 5.0.84 -> 5.0.73
//"com.sleepycat" % "je" % "5.0.73",
// storm-core: 0.9.2-incubating -> 0.9.4
"org.apache.storm" % "storm-core" % "0.9.4" % "provided",
"org.slf4j" % "log4j-over-slf4j" % "1.7.12",
//"io.dropwizard" % "dropwizard-metrics" % "0.8.1",
//"org.apache.storm" % "storm-starter" % "0.9.4",
"junit" % "junit" % "4.12" % Test,
"com.novocode" % "junit-interface" % "0.11" % Test,
"org.apache.hadoop" % "hadoop-client" % "2.2.0" exclude("org.slf4j", "slf4j-log4j12"),
"org.apache.hadoop" % "hadoop-hdfs" % "2.2.0" exclude("org.slf4j", "slf4j-log4j12"),
"org.apache.storm" % "storm-hdfs" % "0.10.0-beta1",
"com.lambdaworks" % "lettuce" % "2.3.3"
//"com.github.ptgoetz" % "storm-signals" % "0.2.0",
//"com.netflix.curator" % "curator-framework" % "1.0.1"
),
// http://www.scala-sbt.org/0.13/docs/Running-Project-Code.html
// We need to fork the JVM, as storm uses multiple threads
fork := true,
// Testing
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.4" % Test,
testOptions in Test := Seq(Tests.Filter(planFilter)),
testOptions in SqlTest := Seq(Tests.Filter(sqlFilter)),
testOptions in DbtoasterTest := Seq(Tests.Filter(dbtoasterFilter)),
tempInstallDbtoaster := {
if (System.getenv("DBTOASTER_HOME") != null && System.getenv("DBTOASTER_HOME") != "") {
println("Using DBToaster at " + System.getenv("DBTOASTER_HOME"))
System.getenv("DBTOASTER_HOME")
} else {
// Adapted from Khue bash script
import scala.sys.process._
val installDir = (target / "dbtoaster").value
val packagePath = (unmanagedBase / "dbtoaster/dbtoaster-alpha5-release.tar.gz").value
val OS = System.getProperty("os.name", "generic").toLowerCase();
val frontendPath = if ((OS.indexOf("mac") >= 0) || (OS.indexOf("darwin") >= 0)) {
(unmanagedBase / "dbtoaster/front_ends/dbtoaster_frontend_macosx").value
} else if (OS.indexOf("nux") >= 0) {
if (System.getProperty("sun.arch.data.model") == 64) {
(unmanagedBase / "dbtoaster/front_ends/dbtoaster_frontend_linux_x86-64").value
} else {
(unmanagedBase / "dbtoaster/front_ends/dbtoaster_frontend_linux_x86-32").value
}
} else {
throw new Exception("This platform is not supported for DBToaster")
}
println("Installing DBToaster to " + installDir)
s"mkdir -p $installDir".!
println(s"Extracting $packagePath to $installDir")
s"tar -xzf $packagePath -C $installDir --strip-components=1".!
s"chmod +x ${installDir}/bin/dbtoaster".!
println(s"Select frontend binary $frontendPath")
println(s"copy $frontendPath to $installDir/bin/dbtoaster_frontend")
s"cp $frontendPath $installDir/bin/dbtoaster_frontend".!
installDir.getAbsolutePath()
}
},
envVars in DbtoasterTest := Map("DBTOASTER_HOME" -> tempInstallDbtoaster.value),
cleanFiles <+= target / "dbtoaster"
)
// For the macros
lazy val functional_macros = (project in file("squall-functional")).
dependsOn(squall).
settings(commonSettings: _*).
settings(
name := "squall-frontend-macros",
libraryDependencies <+= (scalaVersion)("org.scala-lang" % "scala-reflect" % _),
scalaSource in Compile := baseDirectory.value / "macros",
target := target.value / "macros"
)
// Temporal directory for REPL output
// TODO: this should probably be a task
lazy val repl_outdir = sbt.IO.createTemporaryDirectory
lazy val repl_classdir = {sbt.IO.createDirectory(repl_outdir / "classes"); repl_outdir / "classes"}
lazy val functional = (project in file("squall-functional")).
dependsOn(squall, functional_macros).
settings(commonSettings: _*).
settings(
// fork := true,
// TODO: this is only necessary because we are using the .jar for testing
(test in Test) := {
(Keys.`package` in Compile).value
(test in Test).value
},
name := "squall-frontend",
libraryDependencies += "org.apache.storm" % "storm-core" % "0.9.4" % "provided",
libraryDependencies <+= (scalaVersion)("org.scala-lang" % "scala-reflect" % _),
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.4" % Test,
// Interactive mode
// TODO: this should probably be a task
scalacOptions in (Compile, console) += "-Yrepl-sync",
scalacOptions in (Compile, console) += "-Yrepl-class-based",
scalacOptions in (Compile, console) += "-Yrepl-outdir",
scalacOptions in (Compile, console) += repl_classdir.getAbsolutePath(),
initialCommands in Compile in console += "import ch.epfl.data.squall.query_plans.QueryBuilder;",
initialCommands in Compile in console += "import ch.epfl.data.squall.api.scala.SquallType._;",
initialCommands in Compile in console += "import ch.epfl.data.squall.api.scala.Stream._;",
initialCommands in Compile in console += "import ch.epfl.data.squall.api.scala.TPCHSchema._;",
initialCommands in Compile in console += s"""val REPL = new ch.epfl.data.squall.api.scala.REPL(\"${repl_outdir}\");""",
initialCommands in Compile in console += "import REPL._;",
initialCommands in Compile in console += "start;",
cleanupCommands in Compile in console += "ch.epfl.data.squall.utilities.StormWrapper.shutdown();",
cleanupCommands in Compile in console += "println(\"Shutting down...\");",
console in Compile <<= (console in Compile).dependsOn(assembly)
)