forked from GMOD/Apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
455 lines (387 loc) · 14.7 KB
/
build.gradle
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
import org.apache.tools.ant.taskdefs.condition.Os
//defaultTasks 'bower'
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'nathandunn' at '3/14/16 12:08 PM' with Gradle 2.11
*
* This generated file contains a commented-out sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at https://docs.gradle.org/2.11/userguide/tutorial_java_projects.html
*/
buildscript {
repositories {
mavenCentral()
}
dependencies {
}
}
plugins {
// id "com.eriwen.gradle.js" version "1.12.1"
// id "com.moowork.node" version "0.12"
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
ext {
npmCommand = Os.isFamily(Os.FAMILY_WINDOWS) ? 'npm.cmd' : 'npm'
bowerCommand = Os.isFamily(Os.FAMILY_WINDOWS) ? 'bower.cmd' : 'bower'
githubURL = "https://github.com/"
}
ant.importBuild 'build.xml'
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'eclipse'
apply plugin: 'idea'
//apply plugin: "de.qaware.seu.as.code.git"
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
// compile 'org.slf4j:slf4j-api:1.7.14'
// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
// testCompile 'junit:junit:4.12'
}
def jbrowseConfig
def jbrowsePlugins
def jbrowseDirectory = "jbrowse-download"
def pluginsDirectory = "${jbrowseDirectory}/plugins"
task evaluateJBrowseConfigs {
// gradle read in Config.groovy
def config = new ConfigSlurper().parse(new File("grails-app/conf/Config.groovy").toURI().toURL())
jbrowseConfig = config.jbrowse
jbrowsePlugins = jbrowseConfig.plugins
// if apollo-config.groovy exists, read THAT in and apply it as well
File testFile = new File("./apollo-config.groovy")
def revisedConfig
if (testFile.exists()) {
revisedConfig = new ConfigSlurper().parse(new File("apollo-config.groovy").toURI().toURL())
} else {
try {
Class scriptClass = getClass().classLoader.loadClass('apollo-config.groovy')
revisedConfig = new ConfigSlurper().parse(scriptClass)
} catch (e) {
println "No log file found in classpath."
}
}
if (revisedConfig) {
jbrowseConfig = revisedConfig.jbrowse ?: jbrowseConfig
jbrowsePlugins << revisedConfig.jbrowse.plugins
}
println "final JBrowse settings ${jbrowseConfig}"
println "final plugins ${jbrowsePlugins}"
}
task installJBrowse(dependsOn: evaluateJBrowseConfigs) << {
println "installing jbrowse ${jbrowseConfig}"
File jbrowseFile = new File(jbrowseDirectory)
if (jbrowseConfig.git) {
def git = jbrowseConfig.git
if (jbrowseFile.exists()) {
if ( (git.alwaysRecheck || git.alwaysPull)) {
if(hasBower()) {
refreshBowerRepo(jbrowseDirectory)
}
else{
if (git.tag) {
fetchTags(jbrowseFile)
checkoutBranch(jbrowseFile, "tags/" + git.tag)
} else if (git.branch) {
checkoutBranch(jbrowseFile, git.branch)
}
if (git.alwaysPull && git.branch) {
println "Pulling ${git.url}"
gitPull(jbrowseFile)
}
}
}
} else {
println "Cloning: ${git.url} into ${jbrowseDirectory}."
def branch = git.branch ?: (git.tag ? "tags/${git.tag}" : null)
cloneRepo(git.url, jbrowseDirectory, branch, 1)
if(!hasBower()){
checkoutBranch(jbrowseFile, branch)
}
}
} else if (jbrowseConfig.url && !jbrowseFile.exists()) {
if (jbrowseConfig.url.type == "zip") {
// assume its a zip
def f = new File(jbrowseDirectory + ".zip")
new URL(jbrowseConfig.url.url).withInputStream { i -> f.withOutputStream { it << i } }
File tempFile = File.createTempDir()
ant.unzip(src: f.absolutePath, dest: tempFile, overwrite: false)
org.gradle.util.GFileUtils.moveDirectory(new File(tempFile.absolutePath + "/" + jbrowseConfig.url.fileName), jbrowseFile)
org.gradle.util.GFileUtils.deleteDirectory(new File(jbrowseFile.absolutePath + "/sample_data"))
tempFile.deleteDir()
f.delete()
} else {
// new URL(jbrowseConfig.url.url).withInputStream { i -> f.withOutputStream { it << i } }
println "Must specify type"
throw new GradleException("Unable to specify jbrowse download type")
}
}
}
task installJBrowseLocal(dependsOn: installJBrowse,type: Exec) {
workingDir = '.'
commandLine './install_jbrowse.sh'
}
task copyResourcesDev(dependsOn: installJBrowse) << {
File jbrowse = new File("web-app/jbrowse")
println "found jbrowse directory ${jbrowse.file}"
if(jbrowse.exists()){
tasks["copy-resources-dev"].execute()
}
else{
tasks["copy-resources"].execute()
}
installJBrowseLocal.execute()
}
task copyApolloPlugin(dependsOn:installJBrowse,type:Copy){
println "Copying apollo plugin"
from("client/apollo")
into("jbrowse-download/plugins/WebApollo")
}
// wrapper for ant script
task setupJBrowse(dependsOn: "setup-jbrowse") << {}
task installJBrowsePlugins(dependsOn: copyApolloPlugin) << {
println "installing jbrowse plugins ${jbrowsePlugins}"
for (plugin in jbrowsePlugins) {
def path = pluginsDirectory + "/" + plugin.key
println "Evaluating plugin ${plugin}"
def pluginExists = confirmPlugin(path)
if (plugin.value.included==true) {
if (pluginExists) {
println "Plugin ${path} exists and appears valid."
} else {
println "ERROR: There is a problem with the plugin at ${path}!"
throw new GradleException("Included plugin ${path} not found in build")
}
}
else if (plugin.value.included==false) {
if (pluginExists) {
println "Plugin ${path} exists but is not included."
} else {
println "Plugin ${path} does not exist but is also not included."
}
}
else if (plugin.value.git) {
println "Plugin is supplied by git"
if (pluginExists) {
println "Plugin ${path} exists and appears valid."
if (plugin.value.alwaysRecheck || plugin.value.alwaysPull) {
println "Checking out branch ${plugin.value.branch}"
if (plugin.value.tag) {
checkoutBranch(new File(path),"tags/${plugin.value.tag}")
} else if (plugin.value.branch) {
checkoutBranch(new File(path),plugin.value.branch)
}
if (plugin.value.alwaysPull) {
println "Pulling ${plugin.value.git}"
gitPull(new File(path))
}
}
} else {
println "Cloning '${plugin.value.git}' into '${path}'"
cloneRepo(plugin.value.git, path, plugin.value.branch)
println "CLONED from ${plugin.value.git} into ${path}"
}
} else if (plugin.value.url == true) {
// TODO: test
if (!pluginExists) {
println "Plugin ${path} exists and appears valid . . . downloading."
def f = new File(path)
new URL(plugin.value.url).withInputStream { i -> f.withOutputStream { it << i } }
}
} else {
throw new GradleException("Invalid plugin settings for path [${path}] and setting [${plugin.value}]")
}
}
}
// wrapper for ant script
task buildJBrowse(dependsOn: 'build.jbrowse'){}
// TODO: should inherent handleJBrowse
task handleJBrowseRelease(dependsOn: [copyApolloPlugin]) {
println "handling jbrowse release ${jbrowseConfig}"
doLast {
installJBrowsePlugins
setupJBrowse
copyResourcesDev
buildJBrowse
installJBrowseLocal
}
}
// root task
task handleJBrowse(dependsOn: [installJBrowsePlugins]) {
println "handling jbrowse ${jbrowseConfig}"
doLast {
setupJBrowse
copyResourcesDev
installJBrowseLocal
}
}
def confirmPlugin(String path) {
File file = new File(path)
return file.exists() && file.isDirectory() && file.canRead()
}
def cloneRepo(String url, String directory, String branch) {
cloneRepo(url, directory, branch, null)
}
def cloneRepoNoBower(String url, String directory, String branch, Integer depth) {
String depthString = depth != null && depth > 0 ? " --recursive --depth ${depth} " : ""
def commandToExecute = "git clone ${depthString} ${url} ${directory} "
println "command to execute [${commandToExecute}]"
def proc = commandToExecute.execute()
def outputStream = new StringBuffer();
def errorStream = new StringBuffer();
proc.waitForProcessOutput(outputStream, errorStream);
println outputStream
println errorStream
if (branch.startsWith("tags")) {
fetchTags(new File(directory))
}
checkoutBranch(new File(directory), branch)
}
Boolean hasBower(){
return true
}
task removeJBrowseDownload(type:Delete){
delete("jbrowse-download")
}
task moveBowerJBrowse(dependsOn:removeJBrowseDownload) {
doLast {
file("bower_components/jbrowse").renameTo(file("jbrowse-download"))
file("bower_components").deleteDir()
}
}
task installJBrowseBower(type:Exec) {
workingDir 'jbrowse-download'
commandLine './setup.sh'
}
def refreshBowerRepo(String directory){
exec{
println "using bower to update: ${directory}"
workingDir directory
commandLine "bower","update","-F","--allow-root"
}
}
def cloneRepoBower(String url,String directory,String branch){
String finalUrl = url + "#${branch}"
finalUrl = finalUrl.replaceAll("tags/","")
if(finalUrl.startsWith(githubURL)){
finalUrl = finalUrl.substring(githubURL.length())
}
exec{
println "using bower to install: ${finalUrl}"
commandLine "bower","install","--allow-root",finalUrl
}
File bowerDirectory = new File('bower_components')
if((finalUrl.contains("#")&&finalUrl.endsWith("jbrowse")) || finalUrl.split("#")[0].endsWith("jbrowse")) {
println "Moving JBrowse into position ${finalUrl}"
tasks.moveBowerJBrowse.execute()
tasks.installJBrowseBower.execute()
}
else{
bowerDirectory.eachDir {
File targetFile = new File(directory)
println "Moving plugin into place: ${bowerDirectory.absolutePath} -> ${targetFile}"
it.renameTo(targetFile)
}
}
// delete on exit
if(bowerDirectory.exists() && bowerDirectory.listFiles()?.length==0){
assert bowerDirectory.delete()
}
}
// Get the path for the locally installed binaries
task npmBin << {
new ByteArrayOutputStream().withStream { os ->
exec {
executable = npmCommand
args = ['bin']
standardOutput = os
}
ext.binPath = os.toString().trim() + File.separator
}
}
// Install packages from package.json
task npm(type: Exec) {
description = "Grab NodeJS dependencies (from package.json)"
commandLine = [npmCommand, "install"]
inputs.file "package.json"
outputs.dir "node_modules"
tasks.npmBin.execute()
}
//<target name="clean-all" description="Cleans this project">
//<delete dir="web-app/WEB-INF/deploy" failonerror="false"/>
//<delete dir="web-app/annotator" failonerror="false"/>
//<delete dir="target" failonerror="false"/>
//</target>
task cleanAll(type:Delete){
delete 'web-app/WEB-INF/deploy', 'web-app/annotator','target'
}
// Install the bower components for front-end library management
task bower(dependsOn: 'npm', type: Exec){
commandLine "${npmBin.binPath}${bowerCommand}", 'install'
}
def cloneRepo(String url, String directory, String branch, Integer depth) {
if(hasBower()){
cloneRepoBower(url,directory,branch)
}
else{
cloneRepoNoBower(url,directory,branch,depth)
}
}
def fetchTags(File file) {
println "fetching tags"
if(!isValidGitDirectory(file)) return
def processBuilder = new ProcessBuilder()
processBuilder.redirectErrorStream(true)
processBuilder.directory(file)
processBuilder.command("git", "fetch", "--tags")
def proc = processBuilder.start()
def outputStream = new StringBuffer();
def errorStream = new StringBuffer();
proc.waitForProcessOutput(outputStream, errorStream);
if(outputStream.length()>0) println "Out: " + outputStream
if(errorStream.length()>0) println "Error: " + errorStream
}
Boolean isValidGitDirectory(File file){
File gitFile = new File(file.absolutePath+"/.git")
if(!gitFile.exists() || !gitFile.canRead()){
println "Not a valid git directory so no git operations will run ${file.absolutePath}"
return false
}
return true
}
def checkoutBranch(File file, String branch) {
println "checkout out branch ${branch}"
if(!isValidGitDirectory(file)) return
def processBuilder = new ProcessBuilder()
processBuilder.redirectErrorStream(true)
processBuilder.directory(file)
processBuilder.command("git", "checkout", branch)
def proc = processBuilder.start()
def outputStream = new StringBuffer();
def errorStream = new StringBuffer();
proc.waitForProcessOutput(outputStream, errorStream);
if(outputStream.length()>0) println "Out: " + outputStream
if(errorStream.length()>0) println "Error: " + errorStream
}
def gitPull(File file) {
println "git pull ${file.absolutePath}"
if(!isValidGitDirectory(file)) return
def processBuilder = new ProcessBuilder()
processBuilder.redirectErrorStream(true)
processBuilder.directory(file)
processBuilder.command("git", "pull")
def proc = processBuilder.start()
def outputStream = new StringBuffer();
def errorStream = new StringBuffer();
proc.waitForProcessOutput(outputStream, errorStream);
if(outputStream.length()>0) println "Out: " + outputStream
if(errorStream.length()>0) println "Error: " + errorStream
}