forked from apache/daffodil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
520 lines (478 loc) · 19.1 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
import scala.collection.immutable.ListSet
import sbtcc._
lazy val genManaged = taskKey[Unit]("Generate managed sources and resources")
lazy val genProps = taskKey[Seq[File]]("Generate properties scala source")
lazy val genSchemas = taskKey[Seq[File]]("Generate DFDL schemas")
lazy val genCExamples = taskKey[Seq[File]]("Generate C example files")
lazy val genVersion = taskKey[Seq[File]]("Generate VERSION file")
lazy val daffodil = project
.in(file("."))
.enablePlugins(JavaUnidocPlugin, ScalaUnidocPlugin)
.aggregate(
cli,
codeGenC,
core,
io,
japi,
lib,
macroLib,
propgen,
runtime1,
runtime1Layers,
runtime1Unparser,
sapi,
schematron,
slf4jLogger,
tdmlLib,
tdmlProc,
testDaf,
testIBM1,
// testIntegration, // integration tests must be run manually
testStdLayout,
tutorials,
udf
)
.settings(commonSettings, nopublish, ratSettings, unidocSettings, genCExamplesSettings)
lazy val macroLib = Project("daffodil-macro-lib", file("daffodil-macro-lib"))
.settings(commonSettings, nopublish)
.settings(libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value)
.disablePlugins(OsgiCheckPlugin)
lazy val propgen = Project("daffodil-propgen", file("daffodil-propgen"))
.settings(commonSettings, nopublish)
lazy val slf4jLogger = Project("daffodil-slf4j-logger", file("daffodil-slf4j-logger"))
.settings(commonSettings)
.settings(libraryDependencies ++= Dependencies.slf4jAPI)
lazy val lib = Project("daffodil-lib", file("daffodil-lib"))
.dependsOn(macroLib % "compile-internal, test-internal", slf4jLogger % "test")
.settings(commonSettings, libManagedSettings, usesMacros)
lazy val io = Project("daffodil-io", file("daffodil-io"))
.dependsOn(lib, macroLib % "compile-internal, test-internal", slf4jLogger % "test")
.settings(commonSettings, usesMacros)
lazy val runtime1 = Project("daffodil-runtime1", file("daffodil-runtime1"))
.enablePlugins(GenJavadocPlugin)
.settings(Dependencies.genjavadocVersion) // converts scaladoc to javadoc
.dependsOn(
io,
lib % "test->test",
udf,
macroLib % "compile-internal, test-internal",
slf4jLogger % "test"
)
.settings(commonSettings, usesMacros)
lazy val runtime1Unparser =
Project("daffodil-runtime1-unparser", file("daffodil-runtime1-unparser"))
.dependsOn(
runtime1,
lib % "test->test",
runtime1 % "test->test",
runtime1Layers,
slf4jLogger % "test"
)
.settings(commonSettings)
lazy val runtime1Layers = Project("daffodil-runtime1-layers", file("daffodil-runtime1-layers"))
.dependsOn(runtime1, lib % "test->test", slf4jLogger % "test")
.settings(commonSettings)
val codeGenCLib = Library("libruntime.a")
lazy val codeGenC = Project("daffodil-codegen-c", file("daffodil-codegen-c"))
.enablePlugins(CcPlugin)
.dependsOn(core, core % "test->test", slf4jLogger % "test")
.settings(commonSettings)
.settings(
Compile / cCompiler := sys.env.getOrElse("CC", "cc"),
Compile / ccArchiveCommand := sys.env.getOrElse("AR", "ar"),
Compile / ccTargets := ListSet(codeGenCLib),
Compile / cSources := Map(
codeGenCLib -> ((Compile / resourceDirectory).value / "org" / "apache" / "daffodil" / "codegen" / "c" / "files"
* GlobFilter("lib*") * GlobFilter("*.c")).get()
),
Compile / cIncludeDirectories := Map(
codeGenCLib -> Seq(
(Compile / resourceDirectory).value / "org" / "apache" / "daffodil" / "codegen" / "c" / "files" / "libcli",
(Compile / resourceDirectory).value / "org" / "apache" / "daffodil" / "codegen" / "c" / "files" / "libruntime"
)
),
Compile / cFlags := (Compile / cFlags).value
.withDefaultValue(Seq("-Wall", "-Wextra", "-Wpedantic", "-std=gnu11"))
)
lazy val core = Project("daffodil-core", file("daffodil-core"))
.dependsOn(
runtime1Unparser,
udf,
lib % "test->test",
runtime1 % "test->test",
io % "test->test",
slf4jLogger % "test"
)
.settings(commonSettings)
lazy val japi = Project("daffodil-japi", file("daffodil-japi"))
.enablePlugins(GenJavadocPlugin)
.settings(Dependencies.genjavadocVersion) // converts scaladoc to javadoc
.dependsOn(core, slf4jLogger % "test")
.settings(commonSettings)
lazy val sapi = Project("daffodil-sapi", file("daffodil-sapi"))
.dependsOn(core, slf4jLogger % "test")
.settings(commonSettings)
lazy val tdmlLib = Project("daffodil-tdml-lib", file("daffodil-tdml-lib"))
.dependsOn(macroLib % "compile-internal", lib, io, io % "test->test", slf4jLogger % "test")
.settings(commonSettings)
lazy val tdmlProc = Project("daffodil-tdml-processor", file("daffodil-tdml-processor"))
.dependsOn(tdmlLib, codeGenC, core, slf4jLogger)
.settings(commonSettings)
lazy val cli = Project("daffodil-cli", file("daffodil-cli"))
.dependsOn(
tdmlProc,
codeGenC,
sapi,
japi,
schematron % Runtime,
slf4jLogger
) // causes codegen-c/sapi/japi to be pulled into the helper zip/tar
.settings(commonSettings, nopublish)
.settings(libraryDependencies ++= Dependencies.cli)
.settings(libraryDependencies ++= Dependencies.exi)
lazy val udf = Project("daffodil-udf", file("daffodil-udf"))
.dependsOn(slf4jLogger % "test")
.settings(commonSettings)
lazy val schematron = Project("daffodil-schematron", file("daffodil-schematron"))
.dependsOn(lib, sapi % Test, slf4jLogger % "test")
.settings(commonSettings)
.settings(libraryDependencies ++= Dependencies.schematron)
lazy val testDaf = Project("daffodil-test", file("daffodil-test"))
.dependsOn(tdmlProc % "test", codeGenC % "test->test", udf % "test->test")
.settings(commonSettings, nopublish)
//
// Uncomment the following line to run these tests
// against IBM DFDL using the Cross Tester
//
//.settings(IBMDFDLCrossTesterPlugin.settings)
lazy val testIBM1 = Project("daffodil-test-ibm1", file("daffodil-test-ibm1"))
.dependsOn(tdmlProc % "test")
.settings(commonSettings, nopublish)
//
// Uncomment the following line to run these tests
// against IBM DFDL using the Cross Tester
//
//.settings(IBMDFDLCrossTesterPlugin.settings)
lazy val testIntegration =
Project("daffodil-test-integration", file("daffodil-test-integration"))
.dependsOn(cli % "test->test", udf % "test->test")
.settings(commonSettings, nopublish)
.settings(
// CLI integration tests fork a new process which requires extra memory, so these should
// only be run sequentially. We also need to stage the CLI script if any of the test
// tasks are run
Test / parallelExecution := false,
Test / test := (Test / test).dependsOn(cli / Compile / stage).value,
Test / testOnly := (Test / testOnly).dependsOn(cli / Compile / stage).evaluated,
Test / testQuick := (Test / testQuick).dependsOn(cli / Compile / stage).evaluated
)
lazy val tutorials = Project("daffodil-tutorials", file("tutorials"))
.dependsOn(tdmlProc % "test")
.settings(commonSettings, nopublish)
lazy val testStdLayout = Project("daffodil-test-stdLayout", file("test-stdLayout"))
.dependsOn(tdmlProc % "test")
.settings(commonSettings, nopublish)
// Choices here are Java LTS versions, 8, 11, 17, 21,...
// However 8 is deprecated as of Java 21, so will be phased out.
val minSupportedJavaVersion: String =
if (scala.util.Properties.isJavaAtLeast("21")) "11"
else "8"
lazy val commonSettings = Seq(
organization := "org.apache.daffodil",
version := "3.9.0-SNAPSHOT",
scalaVersion := "2.12.19",
crossScalaVersions := Seq("2.12.19"),
scalacOptions ++= buildScalacOptions(scalaVersion.value),
Compile / compile / javacOptions ++= buildJavacOptions(),
logBuffered := true,
transitiveClassifiers := Seq("sources", "javadoc"),
retrieveManaged := true,
useCoursier := false, // disabled because it breaks retrieveManaged (sbt issue #5078)
exportJars := true,
Test / exportJars := false,
publishMavenStyle := true,
Test / publishArtifact := false,
ThisBuild / pomIncludeRepository := { _ => false },
scmInfo := Some(
ScmInfo(
browseUrl = url("https://github.com/apache/daffodil"),
connection = "scm:git:https://github.com/apache/daffodil"
)
),
licenses := Seq(License.Apache2),
homepage := Some(url("https://daffodil.apache.org")),
releaseNotesURL := Some(url(s"https://daffodil.apache.org/releases/${version.value}/")),
unmanagedBase := baseDirectory.value / "lib" / "jars",
sourceManaged := baseDirectory.value / "src_managed",
resourceManaged := baseDirectory.value / "resource_managed",
libraryDependencies ++= Dependencies.common,
testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "--verbosity=1"),
Compile / packageDoc / publishArtifact := false
)
def buildScalacOptions(scalaVersion: String) = {
val commonOptions = Seq(
s"-release:$minSupportedJavaVersion", // scala 2.12 can only do Java 8, regardless of this setting.
"-feature",
"-deprecation",
"-language:experimental.macros",
"-unchecked",
"-Xfatal-warnings",
"-Xxml:-coalescing",
"-Xfuture",
"-Ywarn-infer-any",
"-Ywarn-inaccessible",
// "-Ywarn-nullary-unit", // we cannot use this. It interferes with the Uniform Access Principle.
// See https://stackoverflow.com/questions/7600910/difference-between-function-with-parentheses-and-without.
"-Ywarn-unused-import"
)
val scalaVersionSpecificOptions = CrossVersion.partialVersion(scalaVersion) match {
case Some((2, 12)) =>
Seq(
"-Ywarn-unused:imports"
)
case _ => Seq.empty
}
commonOptions ++ scalaVersionSpecificOptions
}
val javaVersionSpecificOptions = {
val releaseOption = // as of Java 11, they no longer accept "-release". Must use "--release".
if (scala.util.Properties.isJavaAtLeast("11")) "--release" else "-release"
// Java 21 deprecates Java 8 and warns about it.
// So if you are using Java 21, Java code compilation will specify a newer Java version
// to avoid warnings.
if (scala.util.Properties.isJavaAtLeast("11")) Seq(releaseOption, minSupportedJavaVersion)
else if (scala.util.Properties.isJavaAtLeast("9")) Seq(releaseOption, "8")
else Nil // for Java 8 compilation
}
// Workaround issue that some options are valid for javac, not javadoc.
// These javacOptions are for code compilation only. (Issue sbt/sbt#355)
def buildJavacOptions() = {
val commonOptions = Seq(
"-Werror",
"-Xlint:deprecation"
)
commonOptions ++ javaVersionSpecificOptions
}
lazy val nopublish = Seq(
publish := {},
publishLocal := {},
publishM2 := {},
publish / skip := true
)
// "usesMacros" is a list of settings that should be applied only to
// subprojects that use the Daffodil macroLib subproject. In addition to using
// these settings, projects that use macroLib should add it as
// "compile-internal" and "test-internal" dependency, so that the macroLib jar
// does not need to be published. For example:
//
// lazy val subProject = Project(...)
// .dependsOn(..., macroLib % "compile-internal, test-internal")
// .settings(commonSettings, usesMacros)
//
lazy val usesMacros = Seq(
// Because the macroLib is an internal dependency to projects that use this
// setting, the macroLib is not published. But that means we need to copy the
// macro src/bin into projects that use it, essentially inlining macros into
// the projects that use them. This is standard practice according to:
//
// https://www.scala-sbt.org/1.x/docs/Macro-Projects.html#Distribution
//
// Note that for packageBin, we only copy directories and class files--this
// ignores files such a META-INFA/LICENSE and NOTICE that are duplicated and
// would otherwise cause a conflict.
Compile / packageBin / mappings ++= (macroLib / Compile / packageBin / mappings).value
.filter { case (f, _) => f.isDirectory || f.getPath.endsWith(".class") },
Compile / packageSrc / mappings ++= (macroLib / Compile / packageSrc / mappings).value
)
lazy val libManagedSettings = Seq(
genManaged := {
(Compile / managedSources).value
(Compile / managedResources).value
},
Compile / genProps := {
val cp = (propgen / Runtime / dependencyClasspath).value
val inSrc = (propgen / Runtime / sources).value
val inRSrc = (propgen / Compile / resources).value
val stream = (propgen / streams).value
val outdir = (Compile / sourceManaged).value
val mainClass = "org.apache.daffodil.propGen.PropertyGenerator"
val args = Seq(mainClass, outdir.toString)
val filesToWatch = (inSrc ++ inRSrc).toSet
val cachedFun = FileFunction.cached(stream.cacheDirectory / "propgen") { _ =>
val forkCaptureLogger = ForkCaptureLogger()
val forkOpts = ForkOptions()
.withOutputStrategy(Some(LoggedOutput(forkCaptureLogger)))
.withBootJars(cp.files.toVector)
val ret = Fork.java(forkOpts, args)
forkCaptureLogger.stderr.foreach { stream.log.error(_) }
if (ret != 0) {
sys.error("Failed to generate code")
}
val files = forkCaptureLogger.stdout.map { f =>
new File(f)
}.toSet
stream.log.info(s"generated ${files.size} Scala sources to $outdir")
files
}
cachedFun(filesToWatch).toSeq
},
Compile / genSchemas := {
val inRSrc = (propgen / Compile / resources).value
val stream = (propgen / streams).value
val outdir = (Compile / resourceManaged).value
val filesToWatch = inRSrc.filter { _.isFile }.toSet
val cachedFun =
FileFunction.cached(stream.cacheDirectory / "schemasgen") { (schemas: Set[File]) =>
val files = schemas.map { schema =>
val out = outdir / "org" / "apache" / "daffodil" / "xsd" / schema.getName
IO.copyFile(schema, out)
out
}
stream.log.info(s"generated ${files.size} XML schemas to $outdir")
files
}
cachedFun(filesToWatch).toSeq
},
Compile / genVersion := {
val resourceDir = (Compile / resourceManaged).value
val outFile = resourceDir / "org" / "apache" / "daffodil" / "lib" / "VERSION"
if (!outFile.exists || IO.read(outFile) != version.value) {
// only write the VERSION file if the version has changed. If we always write, then the
// mtime changes and sbt thinks it needs to rebuild everything since a resource changed.
IO.write(outFile, version.value)
}
Seq(outFile)
},
Compile / sourceGenerators ++= Seq(
(Compile / genProps).taskValue
),
Compile / resourceGenerators ++= Seq(
(Compile / genSchemas).taskValue,
(Compile / genVersion).taskValue
)
)
lazy val ratSettings = Seq(
ratLicenses := Seq(
("BSD2 ", Rat.BSD2_LICENSE_NAME, Rat.LICENSE_TEXT_PASSERA)
),
ratLicenseFamilies := Seq(
Rat.BSD2_LICENSE_NAME
),
ratExcludes := Rat.excludes,
ratFailBinaries := true
)
/**
* Filter to include only the doc files in our supported API classes
*
* @param sources - the sequence of files to filter
* @return - the filtered sequence of files
*/
def apiDocSourceFilter(sources: Seq[File]): Seq[File] = sources.filter { source =>
val str = source.toString
val oad = "/org/apache/daffodil"
lazy val excludedForJAPI =
str.contains(oad + "/japi/") && {
// Some things are excluded from the JAPI javadoc because they are internal, non-API
// These cannot be excluded from SAPI because symbols-not-found issues with scaladoc.
str.contains("$") || str.contains("packageprivate")
}
lazy val included = {
str.contains(oad + "/udf/") ||
str.contains(oad + "/sapi/") ||
str.contains(oad + "/japi/") ||
str.contains(oad + "/runtime1/layers/api/")
//
// There are files in runtime1/api that are NOT part of the public, supported API.
// I tried to include all of runtime1/api, and exclude those files, but could not
// get that to work, so now we include individually each file that is part of the
// published runtime1 API
//
// NOTE: Commented out for now. genjavadoc doesn't handle the traits in
// these files, so for now these are undocumented.
//
// FIXME: DAFFODIL-2902
// str.contains(oad + "/runtime1/api/DFDLPrimType") ||
// str.contains(oad + "/runtime1/api/Infoset") ||
// str.contains(oad + "/runtime1/api/Metadata")
}
val res = included && !excludedForJAPI
res
}
lazy val unidocSettings =
Seq(
ScalaUnidoc / unidoc / unidocProjectFilter :=
inProjects(sapi, udf, runtime1),
ScalaUnidoc / unidoc / scalacOptions := Seq(
"-doc-title",
"Apache Daffodil " + version.value + " Scala API",
"-doc-root-content",
(sapi / baseDirectory).value + "/root-doc.txt"
),
ScalaUnidoc / unidoc / unidocAllSources :=
(ScalaUnidoc / unidoc / unidocAllSources).value.map(apiDocSourceFilter),
JavaUnidoc / unidoc / unidocProjectFilter :=
inProjects(japi, udf, runtime1),
JavaUnidoc / unidoc / javacOptions := Seq(
"-windowtitle",
"Apache Daffodil " + version.value + " Java API",
"-doctitle",
"<h1>Apache Daffodil " + version.value + " Java API</h1>",
"-notimestamp",
"-quiet"
),
JavaUnidoc / unidoc / unidocAllSources :=
(JavaUnidoc / unidoc / unidocAllSources).value.map(apiDocSourceFilter)
)
lazy val genCExamplesSettings = Seq(
Compile / genCExamples := {
val cp = (codeGenC / Test / dependencyClasspath).value
val inSrc = (codeGenC / Compile / sources).value
val inRSrc = (codeGenC / Test / resources).value
val stream = (codeGenC / streams).value
val filesToWatch = (inSrc ++ inRSrc).toSet
val cachedFun = FileFunction.cached(stream.cacheDirectory / "genCExamples") { _ =>
val forkCaptureLogger = ForkCaptureLogger()
val forkOpts = ForkOptions()
.withOutputStrategy(Some(LoggedOutput(forkCaptureLogger)))
.withBootJars(cp.files.toVector)
val mainClass = "org.apache.daffodil.codegen.c.DaffodilCExamplesGenerator"
val outdir = (codeGenC / Test / sourceDirectory).value / "examples"
val args = Seq(mainClass, outdir.toString)
val ret = Fork.java(forkOpts, args)
forkCaptureLogger.stderr.foreach { stream.log.error(_) }
if (ret != 0) {
sys.error("failed to generate C example files")
}
val files = forkCaptureLogger.stdout
.filterNot(_.startsWith("WARNING"))
.map { f =>
new File(f)
}
.toSet
stream.log.info(s"generated ${files.size} C examples to $outdir")
files
}
cachedFun(filesToWatch).toSeq
},
Compile / compile := {
val res = (Compile / compile).value
(Compile / genCExamples).value
res
}
)