forked from kairosdb/kairos-carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.groovy
executable file
·341 lines (275 loc) · 11 KB
/
build.groovy
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
import org.freecompany.redline.Builder
import org.freecompany.redline.header.Architecture
import org.freecompany.redline.header.Os
import org.freecompany.redline.header.RpmType
import org.freecompany.redline.payload.Directive
//import org.vafer.jdeb.DebMaker
//import org.vafer.jdeb.StdOutConsole
import tablesaw.AbstractFileSet
import tablesaw.RegExFileSet
import tablesaw.SimpleFileSet
import tablesaw.Tablesaw
import tablesaw.TablesawException
import tablesaw.addons.GZipRule
import tablesaw.addons.TarRule
import tablesaw.addons.ivy.IvyAddon
import tablesaw.addons.ivy.PomRule
import tablesaw.addons.java.Classpath
import tablesaw.addons.java.JarRule
import tablesaw.addons.java.JavaCRule
import tablesaw.addons.java.JavaProgram
import tablesaw.addons.junit.JUnitRule
import tablesaw.rules.DirectoryRule
import tablesaw.rules.Rule
import tablesaw.rules.SimpleRule
import javax.swing.*
println("===============================================");
saw.setProperty(Tablesaw.PROP_MULTI_THREAD_OUTPUT, Tablesaw.PROP_VALUE_ON)
programName = "kairos-carbon"
//Do not use '-' in version string, it breaks rpm uninstall.
version = "1.0"
kairos_version = "0.9.4"
release = "1" //package release number
summary = "Kairos-carbon"
description = """\
Plugin for KairosDB ($kairos_version) that provides Carbon protocol listeners and a client
for forwarding data points on to Carbon servers
"""
saw.setProperty(JavaProgram.PROGRAM_NAME_PROPERTY, programName)
saw.setProperty(JavaProgram.PROGRAM_DESCRIPTION_PROPERTY, description)
saw.setProperty(JavaProgram.PROGRAM_VERSION_PROPERTY, version)
saw.setProperty(PomRule.GROUP_ID_PROPERTY, "org.kairosdb")
saw.setProperty(PomRule.URL_PROPERTY, "http://kairosdb.org")
saw = Tablesaw.getCurrentTablesaw()
saw.includeDefinitionFile("definitions.xml")
ivyConfig = ["default", "test"]
rpmDir = "build/rpm"
rpmNoDepDir = "build/rpm-nodep"
new DirectoryRule("build")
rpmDirRule = new DirectoryRule(rpmDir)
rpmNoDepDirRule = new DirectoryRule(rpmNoDepDir)
//------------------------------------------------------------------------------
//Setup java rules
ivy = new IvyAddon()
.addSettingsFile("ivysettings.xml")
.setup()
buildLibraries = new RegExFileSet("lib", ".*\\.jar").recurse()
.addExcludeDir("integration")
.getFullFilePaths()
jp = new JavaProgram()
//.setLibraryJars(buildLibraries)
.setup()
jc = jp.getCompileRule()
jc.addDepend(ivy.getResolveRule("default"))
jc.getDefinition().set("target", "1.6")
jc.getDefinition().set("source", "1.6")
jp.getJarRule().addFiles("src/main/resources", "kairos-carbon.properties")
pomRule = ivy.createPomRule("build/jar/pom.xml", ivy.getResolveRule("default"))
.addDepend(jp.getJarRule())
.addLicense("The Apache Software License, Version 2.0", "http://www.apache.org/licenses/LICENSE-2.0.txt", "repo")
.addDeveloper("brianhks", "Brian", "[email protected]")
.addDeveloper("jeff", "Jeff", "[email protected]")
//------------------------------------------------------------------------------
//==-- Maven Artifacts --==
mavenArtifactsRule = new SimpleRule("maven-artifacts").setDescription("Create maven artifacts for maven central")
.addSource(jp.getJarRule().getTarget())
.addSource(jp.getJavaDocJarRule().getTarget())
.addSource(jp.getSourceJarRule().getTarget())
.addSource("build/jar/pom.xml")
.setMakeAction("signArtifacts")
void signArtifacts(Rule rule)
{
for (String source : rule.getSources())
{
cmd = "gpg -ab "+source
saw.exec(cmd)
}
}
new JarRule("maven-bundle", "build/bundle.jar").setDescription("Create bundle for uploading to maven central")
.addDepend(mavenArtifactsRule)
.addFileSet(new RegExFileSet(saw.getProperty(JavaProgram.JAR_DIRECTORY_PROPERTY), ".*"))
//------------------------------------------------------------------------------
//Set information in the manifest file
manifest = jp.getJarRule().getManifest().getMainAttributes()
manifest.putValue("Manifest-Version", "1.0")
manifest.putValue("Tablesaw-Version", saw.getVersion())
manifest.putValue("Created-By", saw.getProperty("java.vm.version")+" ("+
saw.getProperty("java.vm.vendor")+")")
manifest.putValue("Built-By", saw.getProperty("user.name"))
buildDateFormat = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss z")
manifest.putValue("Build-Date", buildDateFormat.format(new Date()))
buildNumberFormat = new java.text.SimpleDateFormat("yyyyMMddHHmmss");
buildNumber = buildNumberFormat.format(new Date())
manifest.putValue("Implementation-Title", "Kairos-Carbon")
manifest.putValue("Implementation-Vendor", "")
manifest.putValue("Implementation-Version", "${version}.${buildNumber}")
//Add git revision information
gitRevisionFile= ".gitrevision"
new File(gitRevisionFile).text = ""
ret = saw.exec(null, "git rev-parse HEAD", false, null, gitRevisionFile);
revision = new File(gitRevisionFile).text.trim()
new File(gitRevisionFile).delete()
if (ret == 0)
manifest.putValue("Git-Revision", revision);
//------------------------------------------------------------------------------
//Setup unit tests
testClasspath = new Classpath(jp.getLibraryJars())
testClasspath.addPath(jp.getJarRule().getTarget())
testSources = new RegExFileSet("src/test/java", ".*Test\\.java").recurse()
.getFilePaths()
testCompileRule = jp.getTestCompileRule()
testCompileRule.addDepend(ivy.getResolveRule("test"))
junitClasspath = new Classpath(testCompileRule.getClasspath())
junitClasspath.addPaths(testClasspath)
junitClasspath.addPath("src/main/java")
junitClasspath.addPath("src/test/resources")
junitClasspath.addPath("src/main/resources")
junit = new JUnitRule("junit-test").addSources(testSources)
.setClasspath(junitClasspath)
.addDepends(testCompileRule)
if (saw.getProperty("jacoco", "false").equals("true"))
junit.addJvmArgument("-javaagent:lib_test/jacocoagent.jar=destfile=build/jacoco.exec")
if (saw.getProperty("jacoco", "false").equals("true"))
junitAll.addJvmArgument("-javaagent:lib_test/jacocoagent.jar=destfile=build/jacoco.exec")
//------------------------------------------------------------------------------
//Build zip deployable application
rpmFile = "$programName-$version-${release}.rpm"
srcRpmFile = "$programName-$version-${release}.src.rpm"
ivyFileSet = new SimpleFileSet()
//Resolve dependencies for package
ivyResolve = ivy.getResolveRule("default")
resolveIvyFileSetRule = new SimpleRule()
.addDepend(ivyResolve)
.setMakeAction("doIvyResolve")
def doIvyResolve(Rule rule)
{
classpath = ivyResolve.getClasspath()
for (String jar in classpath.getPaths())
{
file = new File(jar)
ivyFileSet.addFile(file.getParent(), file.getName())
}
}
libFileSets = [
new RegExFileSet("build/jar", ".*\\.jar"),
new RegExFileSet("lib", ".*\\.jar"),
ivyFileSet
]
scriptsFileSet = new RegExFileSet("src/scripts", ".*").addExcludeFile("kairosdb-env.sh")
webrootFileSet = new RegExFileSet("webroot", ".*").recurse()
zipLibDir = "kairosdb/lib"
zipConfDir = "kairosdb/conf"
tarRule = new TarRule("build/${programName}-${version}.tar")
.addDepend(jp.getJarRule())
.addFileTo(zipConfDir, "src/main/resources", "kairos-carbon.properties")
for (AbstractFileSet fs in libFileSets)
tarRule.addFileSetTo(zipLibDir, fs)
gzipRule = new GZipRule("package").setSource(tarRule.getTarget())
.setDescription("Create deployable tar file")
.setTarget("build/${programName}-${version}.tar.gz")
.addDepend(tarRule)
//------------------------------------------------------------------------------
//Build rpm file
rpmBaseInstallDir = "/opt/$programName"
rpmRule = new SimpleRule("package-rpm").setDescription("Build RPM Package")
.addDepend(jp.getJarRule())
.addDepend(resolveIvyFileSetRule)
.addDepend(rpmDirRule)
.addTarget("$rpmDir/$rpmFile")
.setMakeAction("doRPM")
def doRPM(Rule rule)
{
//Build rpm using redline rpm library
host = InetAddress.getLocalHost().getHostName()
rpmBuilder = new Builder()
rpmBuilder.with
{
description = description
group = "System Environment/Daemons"
license = "license"
setPackage(programName, version, release)
setPlatform(Architecture.NOARCH, Os.LINUX)
summary = summary
type = RpmType.BINARY
url = "http://code.google.com/p/kairosdb/"
vendor = "Proofpoint Inc."
provides = programName
buildHost = host
sourceRpm = srcRpmFile
}
rpmBuilder.addDependencyMore("kairosdb", "0.9.4")
//rpmBuilder.setPostInstallScript(new File("src/scripts/install/post_install.sh"))
//rpmBuilder.setPreUninstallScript(new File("src/scripts/install/pre_uninstall.sh"))
for (AbstractFileSet fs in libFileSets)
addFileSetToRPM(rpmBuilder, "$rpmBaseInstallDir/lib", fs)
addFileSetToRPM(rpmBuilder, "$rpmBaseInstallDir/bin", scriptsFileSet)
rpmBuilder.addFile("$rpmBaseInstallDir/conf/kairos-carbon.properties",
new File("src/main/resources/kairos-carbon.properties"), 0644, new Directive(Directive.RPMFILE_CONFIG | Directive.RPMFILE_NOREPLACE))
println("Building RPM "+rule.getTarget())
outputFile = new FileOutputStream(rule.getTarget())
rpmBuilder.build(outputFile.channel)
outputFile.close()
}
def addFileSetToRPM(Builder builder, String destination, AbstractFileSet files)
{
for (String filePath : files.getFullFilePaths())
{
File f = new File(filePath)
if (f.getName().endsWith(".sh"))
builder.addFile(destination + "/" +f.getName(), f, 0755)
else
builder.addFile(destination + "/" + f.getName(), f)
}
}
//------------------------------------------------------------------------------
//Build deb file
debRule = new SimpleRule("package-deb").setDescription("Build Deb Package")
.addDepend(rpmRule)
.setMakeAction("doDeb")
def doDeb(Rule rule)
{
//Prompt the user for the sudo password
//TODO: package using jdeb
def jpf = new JPasswordField()
def resp = JOptionPane.showConfirmDialog(null,
jpf, "Enter sudo password:",
JOptionPane.OK_CANCEL_OPTION)
if (resp == 0)
{
def password = jpf.getPassword()
sudo = saw.createAsyncProcess(rpmDir, "sudo -S alien --bump=0 --to-deb $rpmFile")
sudo.run()
//pass the password to the process on stdin
sudo.sendMessage("$password\n")
sudo.waitForProcess()
if (sudo.getExitCode() != 0)
throw new TablesawException("Unable to run alien application")
}
}
//------------------------------------------------------------------------------
//Run the Kairos application
new SimpleRule("run-debug").setDescription("Runs kairosdb so a debugger can attach to port 5005")
.addDepends(jp.getJarRule())
.setMakeAction("doRun")
.setProperty("DEBUG", true)
new SimpleRule("run").setDescription("Runs kairosdb")
.addDepends(jp.getJarRule())
.setMakeAction("doRun")
.setProperty("DEBUG", false)
def doRun(Rule rule)
{
args = "-c run"
//Check if you have a custom kairosdb.properties file and load it.
customProps = new File("kairosdb.properties")
if (customProps.exists())
args += " -p kairosdb.properties"
debug = ""
if (rule.getProperty("DEBUG"))
debug = "-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005"
//this is to load logback into classpath
runClasspath = jc.getClasspath()
runClasspath.addPath("src/main/resources")
ret = saw.exec("java ${debug} -Dio.netty.epollBugWorkaround=true -cp ${runClasspath} org.kairosdb.core.Main ${args}", false)
println(ret);
}
saw.setDefaultTarget("jar")