-
Notifications
You must be signed in to change notification settings - Fork 153
/
build.sbt
267 lines (233 loc) · 10.5 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
import java.io.File
import java.nio.charset.Charset
import java.nio.file.{Files, StandardCopyOption}
import com.typesafe.sbt.packager.linux.{LinuxPackageMapping, LinuxSymlink}
import sbt.Keys.*
resolvers ++= Resolver.sonatypeOssRepos("public")
val NAME = "kaitai-struct-compiler"
val VERSION = "0.11-SNAPSHOT"
val TARGET_LANGS = "C++/STL, C#, Go, Java, JavaScript, Lua, Nim, Perl, PHP, Python, Ruby, Rust"
val UTF8 = Charset.forName("UTF-8")
lazy val root = project.in(file(".")).
aggregate(compilerJS, compilerJVM).
settings(
publish := {},
publishLocal := {}
)
lazy val compiler = crossProject(JSPlatform, JVMPlatform).
in(file(".")).
enablePlugins(JavaAppPackaging).
settings(
organization := "io.kaitai",
version := {
sys.env.get("KAITAI_STRUCT_VERSION") match {
case Some(ver) =>
if (VERSION.endsWith("-SNAPSHOT")) {
if (!ver.startsWith(VERSION))
throw new MessageOnlyException(s"Environment variable KAITAI_STRUCT_VERSION '$ver' doesn't start with build.sbt VERSION '$VERSION'")
} else {
if (ver != VERSION)
throw new MessageOnlyException(s"Environment variable KAITAI_STRUCT_VERSION '$ver' is not equal to build.sbt VERSION '$VERSION'")
}
ver
case None =>
VERSION
}
},
licenses := Seq(("GPL-3.0", url("https://opensource.org/licenses/GPL-3.0"))),
scalaVersion := "2.13.13",
scalacOptions := Seq("-unchecked", "-deprecation"),
// Repo publish options
publishTo := version { (v: String) =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}.value,
pomExtra :=
<url>http://kaitai.io</url>
<scm>
<connection>scm:git:git://github.com/kaitai-io/kaitai_struct_compiler.git</connection>
<developerConnection>scm:git:ssh://github.com:kaitai-io/kaitai_struct_compiler.git</developerConnection>
<url>https://github.com/kaitai-io/kaitai_struct_compiler</url>
</scm>
<developers>
<developer>
<name>Mikhail Yakshin</name>
<email>[email protected]</email>
<organization>Kaitai Project</organization>
<organizationUrl>http://kaitai.io</organizationUrl>
</developer>
</developers>
,
generateVersion := generateVersionTask.value, // register manual sbt command
Compile / sourceGenerators += generateVersionTask.taskValue, // update automatically on every rebuild
libraryDependencies ++= Seq(
"com.github.scopt" %%% "scopt" % "4.1.0",
"com.lihaoyi" %%% "fastparse" % "2.3.3",
"org.yaml" % "snakeyaml" % "2.0"
)
).
jvmSettings(
name := NAME,
Compile / mainClass := Some("io.kaitai.struct.JavaMain"),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-funspec" % "3.2.15" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.2.15" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.15" % "test",
),
Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-u", "target/test_out"),
// o - causes test results to be written back to sbt, which usually displays it on the standard output
// Suppress all other notification events except failures so it is easy to see only failures
Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-oNCXELOPQRM"),
// Universal: add extra files (formats repo) for distribution, removing
// .git special files and various dirty/backup files that git normally
// ignores.
//
// NOTE: This requires formats repo to be checked out on the level higher
// that the compiler
Universal / mappings ++= NativePackagerHelper.directory("../formats").filterNot {
case (_, dst) =>
val dstFile = new File(dst)
val dstFileName = dstFile.getName
dst.startsWith(s"formats${File.separator}_") ||
dst.startsWith(s"formats${File.separator}.git") ||
dstFileName.endsWith("~") ||
dstFileName.endsWith("#")
},
// Uncomment if ever need to debug Windows file lists
// mappings in Windows := (mappings in Universal).value.map { (x) =>
// System.err.println("WINDOWS MAPPING: " + x)
// x
// },
// Create symlink to allow calling compiler quickly as "ksc"
linuxPackageSymlinks += LinuxSymlink("/usr/bin/ksc", s"/usr/bin/${name.value}"),
// Add symlink for ksy files library location for Linux packages
linuxPackageSymlinks += LinuxSymlink(s"/usr/share/${name.value}/formats", "/usr/share/kaitai-struct"),
// Formats should be present in universal (for zips, etc), but
// should be filtered out from Linux package, as we'll pack them
// in separate package there
linuxPackageMappings := {
linuxPackageMappings.value.map { (lpm) =>
// System.err.println("== mapping start")
val r = lpm.copy(mappings = lpm.mappings.filterNot { case (src, dst) =>
// System.err.println(s"DEBIAN MAP FILTER: $src -> $dst")
val srcStr = src.toString
srcStr == "../formats" || srcStr.startsWith("../formats/")
})
// System.err.println(s"== mapping stop: $r")
r
}
},
// We need /usr/share/kaitai-struct (the format directory) to be created as
// empty dir and packaged in compiler package, to be filled in with actual
// repository contents by "kaitai-struct-formats" package.
linuxPackageMappings += packageTemplateMapping("/usr/share/kaitai-struct")(),
// Remove all "maintainer scripts", such as prerm/postrm/preinst/postinst: default
// implementations create per-package virtual user that we won't use anyway
Debian / maintainerScripts := Map(),
// Work around new Debian defaults and sbt-native-packager defaults, which
// build .deb packages that appear to be incompatible with older Debian/Ubuntu's
// dpkg and are not accepted by BinTray.
//
// For more information, see
// https://github.com/sbt/sbt-native-packager/issues/1067
Debian / debianNativeBuildOptions := Seq("-Zgzip", "-z3"),
debianPackageDependencies := Seq("java8-runtime-headless"),
Linux / packageSummary := s"compiler to generate binary data parsers in $TARGET_LANGS",
Windows / packageSummary := "Kaitai Struct compiler",
Linux / packageDescription :=
s"""This is the reference implementation of a compiler for Kaitai Struct (.ksy)
| files. It allows to compile them into source code in:
| $TARGET_LANGS.
| .
| .ksy files describe binary data structures in declarative YAML-based
| language (in contrast to imperative parsing implementation written in a
| single programming language) and allow cross-language, cross-platform data
| formats description.""".stripMargin,
Windows / packageDescription := s"Compiler to translate Kaitai Struct (.ksy) files into $TARGET_LANGS source code",
// Fix version for Windows: Wix doesn't allow stuff like "-SNAPSHOT" to appear in the version
Windows / version := VERSION.replace("-SNAPSHOT", ""),
wixProductId := "ddcf06bc-fd48-434b-93db-1e97ba8d13a7",
wixProductUpgradeId := "63e85f5f-7680-4b3e-9bb9-dea0f70e970a",
wixProductLicense := Some(new File("shared/src/windows/License.rtf")),
rpmVendor := "Kaitai Project",
rpmUrl := Some("https://kaitai.io/"),
rpmLicense := Some("GPLv3+"),
Windows / maintainer := "Kaitai Project",
Debian / maintainer := "Mikhail Yakshin <[email protected]>"
).
jsSettings(
name := NAME + "-js",
buildNpmJsFile := buildNpmJsFileTask.value,
buildNpmPackage := buildNpmPackageTask.value
)
lazy val compilerJVM = compiler.jvm
lazy val compilerJS = compiler.js
lazy val generateVersion = taskKey[Seq[File]]("generateVersion")
lazy val generateVersionTask = Def.task {
// Generate contents of Version.scala
val contents = s"""package io.kaitai.struct
|
|object Version {
| val name = "${name.value}"
| val version = "${version.value}"
| val gitCommit = "${sys.env.getOrElse("GIT_COMMIT", "GIT_COMMIT not defined")}"
| val gitTime = "${sys.env.getOrElse("GIT_DATE_ISO", "GIT_DATE_ISO not defined")}"
|}
|""".stripMargin
// Update Version.scala file, if needed
val file = (Compile / sourceManaged).value / "version" / "Version.scala"
println(s"Version file generated: $file")
IO.write(file, contents)
Seq(file)
}
/**
* Builds JavaScript output file to be packaged as part of NPM package.
* Essentially wraps raw JavaScript output into AMD-style exports.
*/
lazy val buildNpmJsFile = taskKey[Seq[File]]("buildNpmJsFile")
lazy val buildNpmJsFileTask = Def.task {
val compiledFile = target.value / "scala-2.13" / s"${name.value}-fastopt.js"
println(s"buildNpmJsFile: reading $compiledFile")
val compiledFileContents = IO.read(compiledFile, UTF8)
val fileWithExports =
s"""(function (root, factory) {
| if (typeof define === 'function' && define.amd) {
| define([], factory);
| } else if (typeof module === 'object' && module.exports) {
| module.exports = factory();
| } else {
| root.KaitaiStructCompiler = factory();
| }
|}(typeof self !== 'undefined' ? self : this, function () {
|
|$compiledFileContents
|return MainJs;
|}));
|""".stripMargin
val targetFile = new File(s"js/npm/${NAME}.js")
println(s"buildNpmJsFile: writing $targetFile with AMD exports")
IO.write(targetFile, fileWithExports, UTF8)
Seq(targetFile)
}
lazy val buildNpmPackage = taskKey[Seq[File]]("buildNpmPackage")
lazy val buildNpmPackageTask = Def.task {
val licenseFile = new File("js/npm/LICENSE")
val readMeFile = new File("js/npm/README.md")
val packageJsonFile = new File("js/npm/package.json")
Files.copy(new File("LICENSE").toPath, licenseFile.toPath, StandardCopyOption.REPLACE_EXISTING)
Files.copy(new File("js/README.md").toPath, readMeFile.toPath, StandardCopyOption.REPLACE_EXISTING)
val packageJsonTmpl = IO.read(new File("js/package.json"), UTF8)
val packageJsonContents = packageJsonTmpl.replaceFirst(
"\"version\": \".*?\"",
"\"version\": \"" + version.value.replace("-SNAPSHOT", ".0-SNAPSHOT") + "\""
)
IO.write(packageJsonFile, packageJsonContents, UTF8)
Seq(
licenseFile,
readMeFile,
packageJsonFile
)
}