forked from OpenTSDB/opentsdb
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile.am
416 lines (368 loc) · 14.4 KB
/
Makefile.am
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
# Copyright (C) 2011-2012 The OpenTSDB Authors.
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <http://www.gnu.org/licenses/>.
ACLOCAL_AMFLAGS = -I build-aux
all-am: jar staticroot
package = net.opentsdb
spec_title = OpenTSDB
spec_vendor = The OpenTSDB Authors
jar := tsdb-$(PACKAGE_VERSION).jar
builddata_SRC := src/BuildData.java
BUILT_SOURCES = $(builddata_SRC)
nodist_bin_SCRIPTS = tsdb
dist_noinst_SCRIPTS = src/create_table.sh
dist_pkgdata_SCRIPTS = src/mygnuplot.sh
dist_noinst_DATA = pom.xml.in
tsdb_SRC := \
src/core/Aggregator.java \
src/core/Aggregators.java \
src/core/CompactionQueue.java \
src/core/Const.java \
src/core/DataPoint.java \
src/core/DataPoints.java \
src/core/DataPointsIterator.java \
src/core/IncomingDataPoints.java \
src/core/IllegalDataException.java \
src/core/Internal.java \
src/core/Query.java \
src/core/RowKey.java \
src/core/RowSeq.java \
src/core/SeekableView.java \
src/core/Span.java \
src/core/SpanGroup.java \
src/core/TSDB.java \
src/core/Tags.java \
src/core/TsdbQuery.java \
src/core/WritableDataPoints.java \
src/graph/Plot.java \
src/stats/Histogram.java \
src/stats/StatsCollector.java \
src/tools/ArgP.java \
src/tools/CliOptions.java \
src/tools/CliQuery.java \
src/tools/DumpSeries.java \
src/tools/Fsck.java \
src/tools/TSDMain.java \
src/tools/TextImporter.java \
src/tools/UidManager.java \
src/tsd/BadRequestException.java \
src/tsd/ConnectionManager.java \
src/tsd/GnuplotException.java \
src/tsd/GraphHandler.java \
src/tsd/HttpQuery.java \
src/tsd/HttpRpc.java \
src/tsd/LineBasedFrameDecoder.java \
src/tsd/LogsRpc.java \
src/tsd/PipelineFactory.java \
src/tsd/PutDataPointRpc.java \
src/tsd/RpcHandler.java \
src/tsd/StaticFileRpc.java \
src/tsd/TelnetRpc.java \
src/tsd/WordSplitter.java \
src/uid/NoSuchUniqueId.java \
src/uid/NoSuchUniqueName.java \
src/uid/UniqueId.java \
src/uid/UniqueIdInterface.java
tsdb_DEPS = \
$(ASYNCHBASE) \
$(GUAVA) \
$(LOG4J_OVER_SLF4J) \
$(LOGBACK_CLASSIC) \
$(LOGBACK_CORE) \
$(NETTY) \
$(PROTOBUF) \
$(SLF4J_API) \
$(SUASYNC) \
$(ZOOKEEPER)
# Install all the .jar files in pkgdatadir.
pkgdata_DATA = $(tsdb_DEPS) $(jar)
test_SRC := \
test/core/TestAggregators.java \
test/core/TestCompactionQueue.java \
test/core/TestTags.java \
test/stats/TestHistogram.java \
test/tsd/TestGraphHandler.java \
test/uid/TestNoSuchUniqueId.java \
test/uid/TestUniqueId.java
test_DEPS = \
$(tsdb_DEPS) \
$(JAVASSIST) \
$(JUNIT) \
$(HAMCREST) \
$(MOCKITO) \
$(OBJENESIS) \
$(POWERMOCK_MOCKITO) \
$(jar)
httpui_SRC := \
src/tsd/client/DateTimeBox.java \
src/tsd/client/EventsHandler.java \
src/tsd/client/GotJsonCallback.java \
src/tsd/client/MetricForm.java \
src/tsd/client/QueryString.java \
src/tsd/client/QueryUi.java \
src/tsd/client/RemoteOracle.java \
src/tsd/client/ValidatedTextBox.java
httpui_DEPS = src/tsd/QueryUi.gwt.xml
dist_pkgdata_DATA = src/logback.xml
dist_static_DATA = src/tsd/static/favicon.ico
EXTRA_DIST = tsdb.in $(tsdb_SRC) $(test_SRC) \
$(THIRD_PARTY) $(THIRD_PARTY:=.md5) \
$(httpui_SRC) $(httpui_DEPS) \
tools/check_tsd \
tools/clean_cache.sh \
tools/tsddrain.py \
opentsdb.spec \
bootstrap build.sh build-aux/gen_build_data.sh $(builddata_SRC)
GWTC_JVM_ARGS = # add jvmarg -Xss16M or similar if you see a StackOverflowError
GWTC_ARGS = -ea # Additional arguments like -style PRETTY or -logLevel DEBUG
package_dir := $(subst .,/,$(package))
UNITTESTS := $(test_SRC:test/%.java=$(package_dir)/%.class)
AM_JAVACFLAGS = -Xlint -source 6
JVM_ARGS =
classes := $(tsdb_SRC:src/%.java=$(package_dir)/%.class) \
$(builddata_SRC:src/%.java=$(package_dir)/%.class)
edit_tsdb_script := srcdir=''; test -f ./$$script.in || srcdir=$(srcdir)/; \
sed -e "s:@pkgdatadir[@]:$$pkgdatadir:g" \
-e "s:@abs_srcdir[@]:$$abs_srcdir:g" \
-e "s:@abs_builddir[@]:$$abs_builddir:g" \
$${srcdir}$$script.in >$$script.tmp
tsdb: $(srcdir)/tsdb.in
tsdb: Makefile
rm -f $@ [email protected]
script=$@; pkgdatadir=''; \
abs_srcdir='$(abs_srcdir)'; abs_builddir='$(abs_builddir)'; \
$(edit_tsdb_script)
chmod +x [email protected]
chmod a-w [email protected]
mv [email protected] $@
printdeps:
@echo $(tsdb_DEPS) $(jar)
# Adjust the paths in the 'tsdb' script after it's been installed.
# This is kind of a hack, but I couldn't find a better way to adjust the paths
# in the script before it gets installed...
install-exec-hook:
script=tsdb; pkgdatadir='$(pkgdatadir)'; abs_srcdir=''; abs_builddir=''; \
$(edit_tsdb_script)
cat tsdb.tmp >"$(DESTDIR)$(bindir)/tsdb"
rm -f tsdb.tmp
$(builddata_SRC): .git/HEAD $(tsdb_SRC) $(top_srcdir)/build-aux/gen_build_data.sh
$(srcdir)/build-aux/gen_build_data.sh $(builddata_SRC) $(package)
jar: $(jar) .javac-unittests-stamp .gwtc-stamp
JAVA_COMPILE := $(JAVAC) $(AM_JAVACFLAGS) -d .
# Sets the shell variable $src to the list of `.java' files we depend on
# that need to be recompiled. Runs "exit 0" if there's nothing to compile,
# which can happen if only non-.java dependencies have been updated.
filter_src = \
src=''; \
for i in $?; do \
case $$i in (*.java) \
test -f "$(srcdir)/$$i" && i="$(srcdir)/$$i"; \
src="$$src $$i";; \
esac; \
done; \
test -n "$$src" || exit 0
# Touches all the targets if any of the dependencies are newer.
# This is useful to force-recompile all files if one of the
# dependent libraries gets updated.
refresh_src = \
for i in $@; do \
test -f "$$i" && touch "$$i" && continue; \
i="$(srcdir)/$$i"; \
test -f "$$i" && touch "$$i" && continue; \
done; :
$(tsdb_SRC): $(tsdb_DEPS)
@$(refresh_src)
find_jar = test -f "$$jar" && echo "$$jar" || echo "$(srcdir)/$$jar"
get_dep_classpath = `for jar in $(tsdb_DEPS); do $(find_jar); done | tr '\n' ':'`
.javac-stamp: $(tsdb_SRC) $(builddata_SRC)
@$(filter_src); cp=$(get_dep_classpath); \
echo "$(JAVA_COMPILE) -cp $$cp $$src"; \
$(JAVA_COMPILE) -cp $$cp $$src
@touch "$@"
GWT_CLASSPATH = `jar=$(GWT_DEV); $(find_jar)`:`jar=$(GWT_USER); $(find_jar)`:$(srcdir)/src
# The GWT compiler is way too slow, that's not very Googley. So we save the
# MD5 of the files we compile in the stamp file and everytime `make' things it
# needs to recompile the GWT code, we verify whether the code really changed
# or whether it's just a file that was touched (which happens frequently when
# using Git while rebasing and whatnot).
gwtc: .gwtc-stamp
.gwtc-stamp: $(httpui_SRC) $(httpui_DEPS) $(GWT_DEV) $(GWT_USER)
@$(mkdir_p) gwt
{ cd $(srcdir) && cat $(httpui_SRC); } | $(MD5) >"$@-t"
cmp -s "$@" "$@-t" && exit 0; \
$(JAVA) $(GWTC_JVM_ARGS) -cp $(GWT_CLASSPATH) com.google.gwt.dev.Compiler \
$(GWTC_ARGS) -war gwt tsd.QueryUi
@mv "$@-t" "$@"
DEV_TSD_ARGS = \
--port=$(DEV_TSD_PORT) \
--staticroot=$(DEV_TSD_STATICROOT) --cachedir=$(DEV_TSD_CACHEDIR)
DEV_TSD_PORT = 4242
DEV_TSD_STATICROOT = staticroot
DEV_TSD_CACHEDIR = /tmp/tsd
GWT_DEV_URL = http://127.0.0.1:$(DEV_TSD_PORT)/
GWT_DEV_ARGS = -Xmx512m # The development mode is a memory hog.
gwtdev: .gwtc-stamp
$(JAVA) $(GWT_DEV_ARGS) -ea -cp $(GWT_CLASSPATH) com.google.gwt.dev.DevMode \
-startupUrl $(GWT_DEV_URL) -noserver -war gwt tsd.QueryUi
staticroot: jar .staticroot-stamp
gwttsd: staticroot
./tsdb tsd $(DEV_TSD_ARGS)
.staticroot-stamp: $(dist_static_DATA) .gwtc-stamp
$(mkdir_p) $(DEV_TSD_STATICROOT)
cp $(dist_static_DATA:%=$(srcdir)/%) $(DEV_TSD_STATICROOT)
find -L $(DEV_TSD_STATICROOT) -type l -exec rm {} \;
p=`pwd`/gwt/queryui && cd $(DEV_TSD_STATICROOT) \
&& for i in $$p/*; do ln -s -f "$$i" || break; done
find -L $(DEV_TSD_STATICROOT)/gwt -type f | xargs touch
@touch .staticroot-stamp
# Install all the files from the static dir into $staticdir.
# Ideally I'd like Automake to take care of this, but right now I don't see
# how to tell it to install a bunch of files recursively for which I don't
# know ahead of time what the file names are.
install-data-local: staticroot
@$(NORMAL_INSTALL)
test -z "$(staticdir)" || $(mkdir_p) "$(DESTDIR)$(staticdir)"
@set -e; pwd; ls -lFh; cd "$(DEV_TSD_STATICROOT)"; \
list=`find -L . ! -type d`; for p in $$list; do \
p=$${p#./}; \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
dstdir=`dirname "$(DESTDIR)$(staticdir)/$$p"`; \
if test -d "$$dstdir"; then :; else \
echo " $(mkdir_p) '$$dstdir'"; $(mkdir_p) "$$dstdir"; fi; \
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(staticdir)/$$p'"; \
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(staticdir)/$$p"; \
done
uninstall-local:
@$(NORMAL_UNINSTALL)
rm -rf "$(DESTDIR)$(staticdir)"
# I don't know why Automake leaves this directory behind.
uninstall-hook:
test ! -d "$(pkgdatadir)" || rmdir "$(pkgdatadir)"
get_runtime_dep_classpath = `for jar in $(test_DEPS); do $(find_jar); done | tr '\n' ':'`
$(test_SRC): $(test_DEPS)
@$(refresh_src)
.javac-unittests-stamp: $(jar) $(test_SRC)
@$(filter_src); cp=$(get_runtime_dep_classpath); \
echo "$(JAVA_COMPILE) -cp $$cp $$src"; \
$(JAVA_COMPILE) -cp $$cp $$src
@touch "$@"
@touch .javac-unittests-stamp
classes_with_nested_classes := $(classes:.class=*.class)
test_classes_with_nested_classes := $(UNITTESTS:.class=*.class)
# Little set script to make a pretty-ish banner.
BANNER := sed 's/^.*/ & /;h;s/./=/g;p;x;p;x'
check-local: .javac-unittests-stamp
classes=`echo $(test_classes_with_nested_classes)` \
&& tests=0 && failures=0 \
&& cp="$(get_runtime_dep_classpath):$(srcdir)/src" && \
for i in $$classes; do \
case $$i in (*[$$]*) continue;; esac; \
tests=$$((tests + 1)); \
echo "Running tests for `basename $$i .class`" | $(BANNER); \
$(JAVA) -ea -esa $(JVM_ARGS) -cp "$$cp" org.junit.runner.JUnitCore `echo $${i%.class} | tr / .` $(ARGS) \
|| failures=$$((failures + 1)); \
done; \
if test "$$failures" -eq 0; then \
echo "All $$tests tests passed" | $(BANNER); \
else \
echo "$$failures out of $$tests failed, please send a report to $(PACKAGE_BUGREPORT)" | $(BANNER); \
fi
git_version := \
`git rev-list --pretty=format:%h HEAD --max-count=1 | sed 1d || echo unknown`
manifest: .javac-stamp .git/HEAD
{ echo "Specification-Title: $(spec_title)"; \
echo "Specification-Version: $(PACKAGE_VERSION)"; \
echo "Specification-Vendor: $(spec_vendor)"; \
echo "Implementation-Title: $(package)"; \
echo "Implementation-Version: $(git_version)"; \
echo "Implementation-Vendor: $(spec_vendor)"; } >"$@"
$(jar): manifest .javac-stamp $(classes)
$(JAR) cfm `basename $(jar)` manifest $(classes_with_nested_classes) \
|| { rv=$$? && rm -f `basename $(jar)` && exit $$rv; }
# ^^^^^^^^^^^^^^^^^^^^^^^
# I've seen cases where `jar' exits with an error but leaves a partially built .jar file!
# Generate the file for those who get a tarball without it. This happens if
# you download a tarball off GitHub for instance.
.git/HEAD:
$(mkdir_p) .git && echo unknown >$@
JAVADOC_DIR = api
doc: $(JAVADOC_DIR)/index.html
JDK_JAVADOC = http://download.oracle.com/javase/6/docs/api
NETTY_JAVADOC = http://docs.jboss.org/netty/$(NETTY_MAJOR_VERSION)/api
SUASYNC_JAVADOC = http://tsunanet.net/~tsuna/async/$(SUASYNC_VERSION)
$(JAVADOC_DIR)/index.html: $(tsdb_SRC)
$(JAVADOC) -d $(JAVADOC_DIR) -classpath $(get_dep_classpath) \
-link $(JDK_JAVADOC) -link $(NETTY_JAVADOC) -link $(SUASYNC_JAVADOC) \
$? $(builddata_SRC)
dist-hook:
$(mkdir_p) $(distdir)/.git
echo $(git_version) >$(distdir)/.git/HEAD
mostlyclean-local:
@rm -f .javac-stamp .javac-unittests-stamp .gwtc-stamp* .staticroot-stamp
rm -rf gwt gwt-unitCache staticroot
rm -f manifest $(BUILT_SOURCES)
rm -f $(classes_with_nested_classes) $(test_classes_with_nested_classes)
test -d $(package_dir) || exit 0 \
&& find $(package_dir) -depth -type d -exec rmdir {} ';' \
&& dir=$(package_dir) && dir=$${dir%/*} \
&& while test x"$$dir" != x"$${dir%/*}"; do \
rmdir "$$dir" && dir=$${dir%/*} || break; \
done \
&& rmdir "$$dir"
clean-local:
rm -f $(jar) tsdb $(srcdir)/pom.xml
rm -rf $(JAVADOC_DIR)
distclean-local:
rm -rf $(srcdir)/target
pom.xml: pom.xml.in Makefile
{ \
echo '<!-- Generated by Makefile on '`date`' -->'; \
sed <$< \
-e 's/@ASYNCHBASE_VERSION@/$(ASYNCHBASE_VERSION)/' \
-e 's/@GUAVA_VERSION@/$(GUAVA_VERSION)/' \
-e 's/@GWT_VERSION@/$(GWT_VERSION)/' \
-e 's/@HAMCREST_VERSION@/$(HAMCREST_VERSION)/' \
-e 's/@JAVASSIST_VERSION@/$(JAVASSIST_VERSION)/' \
-e 's/@JUNIT_VERSION@/$(JUNIT_VERSION)/' \
-e 's/@LOG4J_OVER_SLF4J_VERSION@/$(LOG4J_OVER_SLF4J_VERSION)/' \
-e 's/@LOGBACK_CLASSIC_VERSION@/$(LOGBACK_CLASSIC_VERSION)/' \
-e 's/@LOGBACK_CORE_VERSION@/$(LOGBACK_CORE_VERSION)/' \
-e 's/@MOCKITO_VERSION@/$(MOCKITO_VERSION)/' \
-e 's/@NETTY_VERSION@/$(NETTY_VERSION)/' \
-e 's/@OBJENESIS_VERSION@/$(OBJENESIS_VERSION)/' \
-e 's/@POWERMOCK_MOCKITO_VERSION@/$(POWERMOCK_MOCKITO_VERSION)/' \
-e 's/@SLF4J_API_VERSION@/$(SLF4J_API_VERSION)/' \
-e 's/@SUASYNC_VERSION@/$(SUASYNC_VERSION)/' \
-e 's/@ZOOKEEPER_VERSION@/$(ZOOKEEPER_VERSION)/' \
-e 's/@spec_title@/$(spec_title)/' \
-e 's/@spec_vendor@/$(spec_vendor)/' \
-e 's/@spec_version@/$(PACKAGE_VERSION)/' \
; \
} >$@-t
mv $@-t ../$@
RPM_REVISION := 1
RPM := opentsdb-$(PACKAGE_VERSION)-$(RPM_REVISION).noarch.rpm
SOURCE_TARBALL := opentsdb-$(PACKAGE_VERSION).tar.gz
rpm: $(RPM)
$(SOURCE_TARBALL): dist
$(RPM): $(SOURCE_TARBALL)
$(RPM): opentsdb.spec
rpmbuild --target=noarch --buildroot=`pwd`/rpmbuildroot -bb $<
test -f $@ || for rpm in $(RPM_TARGET)/$@ \
`awk '$$1=="Name:"{print $$2}' $<`.`awk '$$1=="BuildArch:"{print $$2}' $<`.rpm; do \
test -f "$$rpm" && mv "$$rpm" $@ && break; \
done
if test -d noarch; then rmdir noarch; fi
.PHONY: jar doc check gwtc gwtdev printdeps staticroot gwttsd rpm
include third_party/include.mk