-
Notifications
You must be signed in to change notification settings - Fork 85
/
build.gradle
490 lines (439 loc) · 16.5 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
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
import org.apache.tools.ant.taskdefs.condition.Os
/*
* 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 {
}
// 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'
githubURL = "https://github.com/"
nodeModulesDirectory = "node_modules"
jbrowseDirectory = "jbrowse"
pluginsDirectory = "jbrowse/plugins"
defaultGitMethod = "shell"
}
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'
// In this section you declare the dependencies for your production and test code
dependencies {
}
def jbrowseConfig
def jbrowsePlugins
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) {
logger.error "No log file found in classpath."
}
}
if (revisedConfig) {
jbrowseConfig = revisedConfig.jbrowse ?: jbrowseConfig
jbrowsePlugins << revisedConfig.jbrowse.plugins
}
logger.quiet "Final JBrowse settings ${jbrowseConfig}"
logger.quiet "Final plugins ${jbrowsePlugins}"
}
task cloneRepo3(dependsOn: evaluateJBrowseConfigs) {
doLast {
println "installing $jbrowseConfig"
File jbrowseFile = new File("jbrowse")
if (jbrowseConfig.git) {
def git = jbrowseConfig.git
if (jbrowseFile.exists()) {
if ((git.alwaysRecheck || git.alwaysPull)) {
if (!git.hash) {
String branchName = (git.branch ?: git.tag) ?: "dev"
exec {
workingDir 'jbrowse'
commandLine 'git', 'pull', 'origin', branchName
}
}
}
} else {
// always default to dev if nothing found
String branchName = (git.branch ?: git.tag) ?: "dev"
println "branchName ${branchName}"
exec {
commandLine = ['git', 'clone', git.url,'--branch', branchName, '--single-branch']
}
}
} else if (jbrowseConfig.url && !jbrowseFile.exists()) {
if (jbrowseConfig.url.type == "zip") {
// assume its a zip
def f = new File("jbrowse-directory" + ".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 } }
logger.error "Must specify JBrowse download type"
throw new GradleException("Unable to specify JBrowse download type")
}
}
}
}
//task copyResourcesDev(dependsOn: installJBrowse) {
task copyResourcesDev() {
doLast {
File jbrowse = new File("web-app/jbrowse")
logger.quiet "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) {
task copyApolloPlugin(type: Copy) {
doLast{
logger.quiet "Copying apollo plugin"
from("client/apollo")
into("jbrowse/plugins/WebApollo")
}
}
task installJBrowsePlugins2 {
doLast {
logger.quiet "Installing JBrowse plugins ${jbrowsePlugins}"
for (plugin in jbrowsePlugins) {
def path = pluginsDirectory + "/" + plugin.key
logger.quiet "Evaluating plugin ${plugin}"
def pluginExists = confirmPlugin(path)
if (plugin.value.included == true) {
if (pluginExists) {
logger.quiet "Plugin ${path} exists and appears valid."
} else {
logger.error "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) {
logger.quiet "Plugin ${path} exists but is not included."
} else {
logger.quiet "Plugin ${path} does not exist but is also not included."
}
} else if (plugin.value.git) {
logger.quiet "Plugin is supplied by git"
if (pluginExists) {
logger.quiet "Plugin ${path} exists and appears valid."
if (plugin.value.alwaysRecheck || plugin.value.alwaysPull) {
logger.quiet "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) {
logger.quiet "Pulling ${plugin.value.git}"
gitPull(new File(path))
}
}
} else {
logger.quiet "Cloning '${plugin.value.git}' into '${path}'"
// checking if gitMethod exists, otherwise setting the default to 'shell'
// def gitMethod = plugin.value.gitMethod ? plugin.value.gitMethod : defaultGitMethod
// Currently we only support the shell git method.
// At a future time (when we install plugins as npm modules in JBrowse), this method can be optional.
def gitMethod = defaultGitMethod
cloneRepo(plugin.value.git, path, plugin.value.branch, 0, gitMethod)
logger.quiet "Cloned from ${plugin.value.git} into ${path}"
}
} else if (plugin.value.url == true) {
// TODO: test
if (!pluginExists) {
logger.quiet "Plugin ${path} exists and appears valid. Downloading..."
def f = new File(path)
new URL(plugin.value.url).withInputStream { i -> f.withOutputStream { it << i } }
}
} else {
logger.error "Invalid plugin settings"
throw new GradleException("Invalid plugin settings for path [${path}] and setting [${plugin.value}]")
}
}
}
}
def confirmPlugin(String path) {
File file = new File(path)
return file.exists() && file.isDirectory() && file.canRead()
}
def cloneRepo(String url, String directory, String branch, Integer depth = 0, String method = defaultGitMethod) {
logger.quiet "Cloning ${url} via ${method}"
switch (method) {
case "npm":
cloneRepoNpm(url, directory, branch)
break
case "shell":
cloneRepoShell(url, directory, branch, depth)
break
default:
throw new GradleException("Error in cloneRepo: invalid method ${method}")
break
}
}
def cloneRepoShell(String url, String directory, String branch, Integer depth) {
String depthString = depth != null && depth > 0 ? " --recursive --depth ${depth} " : ""
def commandToExecute = "git clone ${depthString} ${url} ${directory} "
logger.quiet "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) {
branch = "master"
} else if (branch.startsWith("tags")) {
fetchTags(new File(directory))
}
checkoutBranch(new File(directory), branch)
// tasks.installJBrowseScript.execute()
}
def cloneRepoNpm(String url, String directory, String branch) {
logger.quiet "Cloning repo with ${url},${directory},${branch}"
String finalUrl = url + (branch ? "#${branch}" : "")
finalUrl = finalUrl.replaceAll("tags/", "")
if (finalUrl.startsWith(githubURL)) {
finalUrl = finalUrl.substring(githubURL.length())
logger.quiet "Final github URL: ${finalUrl}"
} else {
logger.quiet "Final non-github URL: ${finalUrl}"
}
exec {
logger.quiet "Using npm to install: ${finalUrl}"
commandLine "npm", "install", finalUrl, "--ignore-scripts"
}
println "CURRENT DIRECTORY"
println new File(".").absolutePath
// commandLine "npm","install",finalUrl,"--ignore-scripts"
File npmDirectory = new File('node_modules')
if (finalUrl.contains("#") && (finalUrl.endsWith("jbrowse") || finalUrl.split("#")[0].endsWith("jbrowse"))) {
logger.quiet "Moving JBrowse into position ${finalUrl}"
tasks.moveNodeModulesJBrowse.execute()
tasks.installJBrowseScript.execute()
} else {
npmDirectory.eachDir {
File targetFile = new File(directory)
logger.quiet "Moving plugin into place: ${npmDirectory.absolutePath} -> ${targetFile}"
it.renameTo(targetFile)
}
}
// delete on exit
if (npmDirectory.exists() && npmDirectory.listFiles()?.length == 0) {
assert npmDirectory.delete()
}
}
task installJBrowseTools() {
doLast {
exec {
workingDir 'jbrowse'
commandLine 'node', './utils/jb_setup.js'
}
}
}
// Get the path for the locally installed binaries
//task npmBin {
// doLast {
// 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()
//}
task cleanAll(type: Delete) {
doLast{
delete 'web-app/WEB-INF/deploy', 'web-app/annotator', 'target'
}
}
def fetchTags(File file) {
logger.quiet "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 outputStream
if (errorStream.length() > 0) println "Error: " + errorStream
}
Boolean isValidGitDirectory(File file) {
File gitFile = new File(file.absolutePath + "/.git")
if (!gitFile.exists() || !gitFile.canRead()) {
logger.warn "Not a valid git directory so no git operations will run ${file.absolutePath}"
return false
}
return true
}
def checkoutBranch(File file, String branch) {
logger.quiet "Checkout out branch ${branch}"
if (!isValidGitDirectory(file)) return
def processBuilder = new ProcessBuilder()
processBuilder.redirectErrorStream(true)
processBuilder.directory(file)
if (branch.startsWith("tags/")) {
branch = branch.substring("tags/".length())
}
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 outputStream
if (errorStream.length() > 0) println "Error: " + errorStream
}
def gitPull(File file) {
logger.quiet "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 outputStream
if (errorStream.length() > 0) println "Error: " + errorStream
}
task updateRepo2(dependsOn: evaluateJBrowseConfigs) {
doLast {
def git = jbrowseConfig.git
if (!git.hash) {
String branchName = (git.branch ?: git.tag) ?: "dev"
exec{
workingDir = 'jbrowse'
commandLine = ['git', 'pull', 'origin', branchName]
}
}
}
}
task installJBrowse {
doLast {
if (!file('jbrowse').exists()) {
println "Cloning a new JBrowse"
tasks.cloneRepo3.execute()
} else {
println "JBrowse already exists"
tasks.updateRepo2.execute()
}
exec {
workingDir 'jbrowse'
commandLine 'yarn'
}
exec {
workingDir 'jbrowse'
executable 'rm' args '-rf','plugins/WebApollo'
}
exec {
workingDir 'jbrowse'
executable 'cp' args '-r', '../client/apollo', 'plugins/WebApollo'
}
exec {
workingDir 'jbrowse/plugins/WebApollo'
commandLine 'yarn'
}
tasks.installJBrowsePlugins2.execute()
exec {
workingDir 'jbrowse'
commandLine './setup.sh'
}
tasks.copyJBrowseDirectory.execute()
}
}
task installJBrowseWebOnly {
doLast {
if (!file('jbrowse').exists()) {
println "Cloning a new JBrowse"
tasks.cloneRepo3.execute()
} else {
println "JBrowse already exists"
tasks.updateRepo2.execute()
}
exec {
workingDir 'jbrowse'
commandLine 'yarn'
}
exec {
workingDir 'jbrowse'
executable 'rm' args '-rf','plugins/WebApollo'
}
exec {
workingDir 'jbrowse'
executable 'cp' args '-r', '../client/apollo', 'plugins/WebApollo'
}
exec {
workingDir 'jbrowse/plugins/WebApollo'
commandLine 'yarn'
}
tasks.installJBrowsePlugins2.execute()
exec {
workingDir 'jbrowse'
commandLine 'npm', 'run', 'build'
}
tasks.copyJBrowseDirectory.execute()
}
}
task copyJBrowseDirectory(type: Copy) {
from('jbrowse') {
exclude "sample_data/**", "node_modules/**", "tests/**"
}
into("web-app/jbrowse/")
}
task cleanJBrowse(type: Delete) {
doLast{
delete 'jbrowse', 'web-app/jbrowse'
}
}