annotate src/main/groovy/org/ssdt_ohio/gradle/plugins/VersionClassPlugin.groovy @ 10:99fda13725c3 version-0.2.1

create 0.2.1 branch
author smith@nwoca.org
date Thu, 25 Oct 2012 14:25:18 +0100
parents 9f9063d3c17c
children 4ff2030d2074
rev   line source
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
1 package org.ssdt_ohio.gradle.plugins
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
2
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
3 import org.gradle.api.Plugin
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
4 import org.gradle.api.Project
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
5 import org.gradle.api.plugins.GroovyPlugin
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
6
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
7 class VersionClassPlugin implements Plugin<Project> {
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
8
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
9 def void apply(Project project) {
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
10 project.getPlugins().apply(GroovyPlugin.class)
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
11 def genSrc = 'generated-src/version'
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
12 def generatedSrcDir = new File(project.buildDir, genSrc)
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
13
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
14 def makeVersionClassTask = project.task('makeVersionClass') << {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
15
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
16 def now = new Date().format('yyyy-MM-dd hh:mm:ss')
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
17
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
18 def buildNumber = -1
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
19 if (project.rootProject?.file('build-number.txt').exists()) {
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
20 def props = new Properties()
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
21 project.rootProject?.file('build-number.txt').withInputStream {stream ->
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
22 props.load(stream)
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
23 }
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
24 buildNumber = props['build.number']
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
25 }
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
26
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
27 def targetPackage = getTargetClass(project)
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
28
9
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
29 if (!targetPackage) {
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
30 return
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
31 }
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
32
3
1756755e4e71 improve up-to-date check so version does not cause recompile
smith@nwoca.org
parents: 2
diff changeset
33 def outFile = new File(generatedSrcDir, "groovy/" + targetPackage.replaceAll('\\.', "/") + "/ProjectVersion.groovy")
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
34
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
35 outFile.getParentFile().mkdirs()
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
36 logger.info("creating $targetPackage in $outFile")
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
37 def f = new FileWriter(outFile)
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
38 f.write("""
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
39 package $targetPackage
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
40 /**
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
41 * Generated by gradle build. $now ($buildNumber)
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
42 * @version ${project.version}
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
43 */
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
44 public class ProjectVersion {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
45
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
46 final String name = "${project.name}"
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
47 final String group = "${project.group}"
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
48 final String version = "${project.version}"
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
49 final String buildDate = "$now"
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
50 final int buildNumber = $buildNumber
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
51
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
52 String getFullVersion() {
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
53 "\$version \$buildDate (#\$buildNumber)"
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
54 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
55
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
56 String getId() {
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
57 "\$group:\$name:\$version"
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
58 }
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
59
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
60 String toString() {
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
61 "\$id \$buildDate (#\$buildNumber)"
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
62 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
63 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
64 """)
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
65 f.close()
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
66 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
67
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
68 project.sourceSets {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
69 main {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
70 groovy {
3
1756755e4e71 improve up-to-date check so version does not cause recompile
smith@nwoca.org
parents: 2
diff changeset
71 srcDir project.buildDir.name + '/' + genSrc + '/groovy'
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
72 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
73 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
74 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
75
3
1756755e4e71 improve up-to-date check so version does not cause recompile
smith@nwoca.org
parents: 2
diff changeset
76 makeVersionClassTask.getInputs().files(project.sourceSets.main.getAllSource().findAll{ !it.name.startsWith('ProjectVersion')}
1756755e4e71 improve up-to-date check so version does not cause recompile
smith@nwoca.org
parents: 2
diff changeset
77 )
1756755e4e71 improve up-to-date check so version does not cause recompile
smith@nwoca.org
parents: 2
diff changeset
78 makeVersionClassTask.getOutputs().file( project.buildDir.name + '/' + genSrc)
1756755e4e71 improve up-to-date check so version does not cause recompile
smith@nwoca.org
parents: 2
diff changeset
79
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
80 if (project.getBuildFile() != null && project.getBuildFile().exists()) {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
81 makeVersionClassTask.getInputs().files(project.getBuildFile())
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
82 }
3
1756755e4e71 improve up-to-date check so version does not cause recompile
smith@nwoca.org
parents: 2
diff changeset
83
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
84 project.getTasks().getByName('compileGroovy').dependsOn('makeVersionClass')
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
85
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
86
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
87 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
88
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
89
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
90
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
91 private getTargetClass(project) {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
92 def source = project.sourceSets.main.groovy.getSrcDirTrees()
9
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
93
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
94 def files = project.sourceSets.main.groovy as File[]
9
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
95 if (!files ) {
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
96 return null
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
97 }
9f9063d3c17c cope with subproject without src files
smith@nwoca.org
parents: 6
diff changeset
98
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
99 def targetDir = files.first().parentFile.toString()
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
100
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
101 def targetPackage = targetDir
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
102 source.each {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
103 targetPackage -= it.getDir().getPath().toString()
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
104 }
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
105 targetPackage = targetPackage.replaceAll("\\\\", '.').replaceAll('/', '.')
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
106 targetPackage = targetPackage.startsWith(".") ? targetPackage - "." : targetPackage
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
107
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
108 return targetPackage
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
109
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
110 }
2
4db19f1c5ad0 create ProjectVersion as instance instead of static. Add build info to jar manifest
smith@nwoca.org
parents: 0
diff changeset
111
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
112 }