forked from pettermahlen/voltdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.py
executable file
·564 lines (489 loc) · 16 KB
/
build.py
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
#!/usr/bin/env python
import os, sys, commands, string
from buildtools import *
# usage:
# The following all work as you might expect:
# python build.py
# ./build.py debug
# python build.py release
# python build.py test
# ./build.py clean
# ./build.py release clean
# python build.py release test
# The command line args can include a build level: release or debug
# the default is debug
# The command line args can include an action: build, clean or test
# the default is build
# The order doesn't matter
# Including multiple levels or actions is a bad idea
###############################################################################
# INITIALIZE BUILD CONTEXT
# - Detect Platform
# - Parse Target and Level from Command Line
###############################################################################
###############################################################################
# CTX is an instance of BuildContext, which is declared in buildtools.py
# BuildContext contains vars that determine how the makefile will be built
# and how the build will go down. It also checks the platform and parses
# command line args to determine target and build level.
###############################################################################
CTX = BuildContext(sys.argv)
###############################################################################
# SET GLOBAL CONTEXT VARIABLES FOR BUILDING
###############################################################################
# these are the base compile options that get added to every compile step
# this does not include header/lib search paths or specific flags for
# specific targets
CTX.CPPFLAGS += """-Wall -Wextra -Werror -Woverloaded-virtual
-Wpointer-arith -Wcast-qual -Wwrite-strings
-Winit-self -Wno-sign-compare -Wno-unused-parameter
-D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -DNOCLOCK
-fno-omit-frame-pointer
-fvisibility=default
-DBOOST_SP_DISABLE_THREADS -DBOOST_DISABLE_THREADS -DBOOST_ALL_NO_LIB"""
# clang doesn't seem to want this
if CTX.compilerName() == 'gcc':
CTX.CPPFLAGS += " -pthread"
CTX.LDFLAGS += " -rdynamic"
if (CTX.compilerMajorVersion() >= 4):
CTX.CPPFLAGS += " -Wno-deprecated-declarations -Wno-unknown-pragmas"
if (CTX.compilerMinorVersion() == 6):
CTX.CPPFLAGS += " -Wno-unused-but-set-variable"
if (CTX.compilerMinorVersion() == 9):
CTX.CPPFLAGS += " -Wno-float-conversion -Wno-unused-but-set-variable -Wno-unused-local-typedefs"
elif (CTX.compilerMinorVersion() == 8):
CTX.CPPFLAGS += " -Wno-conversion -Wno-unused-but-set-variable -Wno-unused-local-typedefs"
if (CTX.compilerMajorVersion() == 5):
CTX.CPPFLAGS += " -Wno-unused-local-typedefs"
if (CTX.compilerName() == 'clang') and (CTX.compilerMajorVersion() == 3 and CTX.compilerMinorVersion() >= 4):
CTX.CPPFLAGS += " -Wno-varargs"
if (CTX.compilerName() == 'clang') and (CTX.compilerMajorVersion() == 7):
CTX.CPPFLAGS += " -Wno-unused-local-typedefs -Wno-absolute-value"
if (CTX.compilerName() != 'gcc') or (CTX.compilerMajorVersion() == 4 and CTX.compilerMinorVersion() >= 3) or (CTX.compilerMajorVersion() == 5):
CTX.CPPFLAGS += " -Wno-ignored-qualifiers -fno-strict-aliasing"
if CTX.PROFILE:
CTX.CPPFLAGS += " -fvisibility=default -DPROFILE_ENABLED"
# Set the compiler version and C++ standard flag.
# GCC before 4.3 is too old.
# GCC 4.4 up to but not including 4.7 use -std=c++0x
# GCC 4.7 and later use -std=c++11
# Clang uses -std=c++11
# This should match the calculation in CMakeLists.txt
if CTX.compilerName() == 'gcc':
if (CTX.compilerMajorVersion() < 4) or (CTX.compilerMajorVersion() == 4) and (CTX.compilerMinorVersion() < 4):
print("GCC Version %d.%d.%d is too old\n"
% (CTX.compilerMajorVersion(), CTX.compilerMinorVersion(), CTX.compilerPatchLevel()));
sys.exit(-1);
if 4 <= CTX.compilerMinorVersion() <= 6:
CTX.CXX_VERSION_FLAG = "--std=c++0x"
print("Building with C++ 0x\n")
else:
CTX.CXX_VERSION_FLAG ="--std=c++11"
print("Building with C++11")
elif CTX.compilerName() == 'clang':
CTX.CXX_VERSION_FLAG="--std=c++11"
CTX.CPPFLAGS += " " + CTX.CXX_VERSION_FLAG
if CTX.COVERAGE:
CTX.LDFLAGS += " -ftest-coverage -fprofile-arcs"
# for the google perftools profiler and the recommended stack unwinder
# which you must have separately built and installed. Take some guesses
# at the library location (/usr/local/lib).
if CTX.PROFILE:
CTX.LDFLAGS = """ -L/usr/local/lib -g3 -lprofiler -lunwind"""
# consider setting CTX.LASTLDFLAGS to " " rather than -ldl if that option really is unwanted.
# this is where the build will look for header files
# - the test source will also automatically look in the test root dir
CTX.SRC_INCLUDE_DIRS += ['src/ee' ]
CTX.SYSTEM_DIRS = ['third_party/cpp']
# don't worry about checking for changes in header files in the following
# directories
CTX.IGNORE_SYS_PREFIXES = ['/usr/include', '/usr/lib', 'third_party']
# where to find the source
CTX.INPUT_PREFIX = "src/ee/"
# where to find the source
CTX.THIRD_PARTY_INPUT_PREFIX = "third_party/cpp"
# where to find the tests
CTX.TEST_PREFIX = "tests/ee/"
# linker flags
CTX.LDFLAGS += """ -g3"""
CTX.LASTLDFLAGS += """ -lpcre2-8 """
CTX.LASTIPCLDFLAGS = """ -ldl """
###############################################################################
# SET RELEASE LEVEL CONTEXT
###############################################################################
if "VOLT_LOG_LEVEL" in os.environ:
LOG_LEVEL = os.environ["VOLT_LOG_LEVEL"]
else:
LOG_LEVEL = "500"
if CTX.LEVEL == "MEMCHECK":
CTX.CPPFLAGS += " -g3 -DDEBUG -DMEMCHECK -DVOLT_LOG_LEVEL=%s" % LOG_LEVEL
CTX.OUTPUT_PREFIX = "obj/memcheck"
if CTX.LEVEL == "DEBUG":
CTX.CPPFLAGS += " -g3 -DDEBUG -DVOLT_LOG_LEVEL=%s" % LOG_LEVEL
CTX.OUTPUT_PREFIX = "obj/debug"
if CTX.LEVEL == "RELEASE":
CTX.CPPFLAGS += " -g3 -O3 -mmmx -msse -msse2 -msse3 -DNDEBUG -DVOLT_LOG_LEVEL=%s" % LOG_LEVEL
CTX.OUTPUT_PREFIX = "obj/release"
# build in parallel directory instead of subdir so that relative paths work
if CTX.COVERAGE:
CTX.CPPFLAGS += " -ftest-coverage -fprofile-arcs"
CTX.OUTPUT_PREFIX += "-coverage"
CTX.OUTPUT_PREFIX += "/"
###############################################################################
# HANDLE PLATFORM SPECIFIC STUFF
###############################################################################
# Defaults Section
CTX.JNIEXT = "so"
CTX.JNILIBFLAGS += " -shared"
CTX.SOFLAGS += " -shared"
CTX.SOEXT = "so"
out = Popen('java -cp tools/ SystemPropertyPrinter java.library.path'.split(),
stdout = PIPE).communicate()[0]
libpaths = ' '.join( '-L' + path for path in out.strip().split(':') if path != '' and path != '/usr/lib' )
CTX.JNIBINFLAGS += " " + libpaths
CTX.JNIBINFLAGS += " -ljava -ljvm -lverify"
if CTX.PLATFORM == "Darwin":
CTX.CPPFLAGS += " -DMACOSX -arch x86_64"
CTX.JNIEXT = "jnilib"
CTX.JNILIBFLAGS = " -bundle"
CTX.JNIBINFLAGS = " -framework JavaVM,1.8"
CTX.SOFLAGS += "-dynamiclib -undefined dynamic_lookup -single_module"
CTX.SOEXT = "dylib"
CTX.JNIFLAGS = "-framework JavaVM,1.8"
if CTX.PLATFORM == "Linux":
CTX.CPPFLAGS += " -Wno-attributes -Wcast-align -DLINUX -fpic"
CTX.NMFLAGS += " --demangle"
###############################################################################
# SPECIFY SOURCE FILE INPUT
###############################################################################
# the input is a map from directory name to a list of whitespace
# separated source files (cpp only for now). Preferred ordering is
# one file per line, indented one space, in alphabetical order.
CTX.INPUT[''] = """
voltdbjni.cpp
"""
CTX.INPUT['catalog'] = """
catalog.cpp
catalogtype.cpp
cluster.cpp
column.cpp
columnref.cpp
connector.cpp
connectortableinfo.cpp
connectorproperty.cpp
constraint.cpp
constraintref.cpp
database.cpp
index.cpp
indexref.cpp
materializedviewinfo.cpp
planfragment.cpp
statement.cpp
table.cpp
"""
CTX.INPUT['structures'] = """
ContiguousAllocator.cpp
"""
CTX.INPUT['common'] = """
FatalException.cpp
ThreadLocalPool.cpp
SegvException.cpp
SerializableEEException.cpp
SQLException.cpp
InterruptException.cpp
StringRef.cpp
tabletuple.cpp
TupleSchema.cpp
types.cpp
UndoLog.cpp
NValue.cpp
RecoveryProtoMessage.cpp
RecoveryProtoMessageBuilder.cpp
DefaultTupleSerializer.cpp
FullTupleSerializer.cpp
executorcontext.cpp
serializeio.cpp
StreamPredicateList.cpp
Topend.cpp
TupleOutputStream.cpp
TupleOutputStreamProcessor.cpp
MiscUtil.cpp
debuglog.cpp
"""
CTX.INPUT['execution'] = """
FragmentManager.cpp
JNITopend.cpp
VoltDBEngine.cpp
ExecutorVector.cpp
"""
CTX.INPUT['executors'] = """
OptimizedProjector.cpp
abstractexecutor.cpp
aggregateexecutor.cpp
deleteexecutor.cpp
executorutil.cpp
indexcountexecutor.cpp
indexscanexecutor.cpp
insertexecutor.cpp
limitexecutor.cpp
materializedscanexecutor.cpp
materializeexecutor.cpp
mergereceiveexecutor.cpp
nestloopexecutor.cpp
nestloopindexexecutor.cpp
orderbyexecutor.cpp
projectionexecutor.cpp
receiveexecutor.cpp
sendexecutor.cpp
seqscanexecutor.cpp
tablecountexecutor.cpp
tuplescanexecutor.cpp
unionexecutor.cpp
updateexecutor.cpp
"""
CTX.INPUT['expressions'] = """
abstractexpression.cpp
expressionutil.cpp
functionexpression.cpp
geofunctions.cpp
operatorexpression.cpp
parametervalueexpression.cpp
scalarvalueexpression.cpp
subqueryexpression.cpp
tupleaddressexpression.cpp
vectorexpression.cpp
"""
CTX.INPUT['plannodes'] = """
abstractjoinnode.cpp
abstractoperationnode.cpp
abstractplannode.cpp
abstractreceivenode.cpp
abstractscannode.cpp
aggregatenode.cpp
deletenode.cpp
indexscannode.cpp
indexcountnode.cpp
tablecountnode.cpp
insertnode.cpp
limitnode.cpp
materializenode.cpp
materializedscanplannode.cpp
mergereceivenode.cpp
nestloopindexnode.cpp
nestloopnode.cpp
orderbynode.cpp
plannodefragment.cpp
plannodeutil.cpp
projectionnode.cpp
receivenode.cpp
SchemaColumn.cpp
sendnode.cpp
seqscannode.cpp
tuplescannode.cpp
unionnode.cpp
updatenode.cpp
"""
CTX.INPUT['indexes'] = """
tableindex.cpp
tableindexfactory.cpp
IndexStats.cpp
"""
CTX.INPUT['storage'] = """
constraintutil.cpp
CopyOnWriteContext.cpp
ElasticContext.cpp
CopyOnWriteIterator.cpp
ConstraintFailureException.cpp
TableStreamer.cpp
ElasticScanner.cpp
MaterializedViewMetadata.cpp
persistenttable.cpp
PersistentTableStats.cpp
StreamedTableStats.cpp
streamedtable.cpp
table.cpp
TableCatalogDelegate.cpp
tablefactory.cpp
TableStats.cpp
tableutil.cpp
temptable.cpp
TempTableLimits.cpp
TupleStreamBase.cpp
ExportTupleStream.cpp
DRTupleStream.cpp
BinaryLogSinkWrapper.cpp
BinaryLogSink.cpp
CompatibleBinaryLogSink.cpp
RecoveryContext.cpp
TupleBlock.cpp
TableStreamerContext.cpp
ElasticIndex.cpp
ElasticIndexReadContext.cpp
AbstractDRTupleStream.cpp
CompatibleDRTupleStream.cpp
"""
CTX.INPUT['stats'] = """
StatsAgent.cpp
StatsSource.cpp
"""
CTX.INPUT['logging'] = """
JNILogProxy.cpp
LogManager.cpp
"""
# specify the third party input
CTX.THIRD_PARTY_INPUT['jsoncpp'] = """
jsoncpp.cpp
"""
CTX.THIRD_PARTY_INPUT['crc'] = """
crc32c.cc
crc32ctables.cc
"""
CTX.THIRD_PARTY_INPUT['murmur3'] = """
MurmurHash3.cpp
"""
CTX.THIRD_PARTY_INPUT['sha1'] = """
sha1.cpp
"""
###############################################################################
# Some special handling for S2.
###############################################################################
CTX.S2GEO_LIBS += "-ls2geo -lcrypto"
CTX.LASTLDFLAGS += CTX.S2GEO_LIBS
###############################################################################
# Some special handling for OpenSSL
###############################################################################
CTX.OPENSSL_VERSION="1.0.2d"
###############################################################################
# SPECIFY THE TESTS
###############################################################################
whichtests = os.getenv("EETESTSUITE")
if whichtests == None:
whichtests = "${eetestsuite}"
# input format similar to source, but the executable name is listed
if whichtests == "${eetestsuite}":
CTX.TESTS['.'] = """
harness_test
"""
if whichtests in ("${eetestsuite}", "catalog"):
CTX.TESTS['catalog'] = """
catalog_test
"""
if whichtests in ("${eetestsuite}", "logging"):
CTX.TESTS['logging'] = """
logging_test
"""
if whichtests in ("${eetestsuite}", "common"):
CTX.TESTS['common'] = """
debuglog_test
elastic_hashinator_test
nvalue_test
pool_test
serializeio_test
tabletuple_test
ThreadLocalPoolTest
tupleschema_test
undolog_test
valuearray_test
"""
if whichtests in ("${eetestsuite}", "execution"):
CTX.TESTS['execution'] = """
add_drop_table
engine_test
FragmentManagerTest
"""
if whichtests in ("${eetestsuite}", "executors"):
CTX.TESTS['executors'] = """
OptimizedProjectorTest
MergeReceiveExecutorTest
"""
if whichtests in ("${eetestsuite}", "expressions"):
CTX.TESTS['expressions'] = """
expression_test
function_test
"""
if whichtests in ("${eetestsuite}", "indexes"):
CTX.TESTS['indexes'] = """
index_key_test
index_scripted_test
index_test
compacting_hash_index
CompactingTreeMultiIndexTest
"""
if whichtests in ("${eetestsuite}", "storage"):
CTX.TESTS['storage'] = """
CompactionTest
CopyOnWriteTest
DRBinaryLog_test
DRTupleStream_test
ExportTupleStream_test
PersistentTableMemStatsTest
StreamedTable_test
TempTableLimitsTest
constraint_test
filter_test
persistent_table_log_test
persistenttable_test
serialize_test
table_and_indexes_test
table_test
tabletuple_export_test
"""
if whichtests in ("${eetestsuite}", "structures"):
CTX.TESTS['structures'] = """
CompactingMapTest
CompactingMapIndexCountTest
CompactingHashTest
CompactingPoolTest
CompactingMapBenchmark
"""
if whichtests in ("${eetestsuite}", "plannodes"):
CTX.TESTS['plannodes'] = """
PlanNodeFragmentTest
"""
###############################################################################
#
# Print some configuration information. This is useful for debugging.
#
###############################################################################
print("Compiler: %s %d.%d.%d" % (CTX.compilerName(), CTX.compilerMajorVersion(), CTX.compilerMinorVersion(), CTX.compilerPatchLevel()))
print("OpenSSL: version %s, config %s\n" % (CTX.getOpenSSLVersion(), CTX.getOpenSSLToken()))
###############################################################################
# BUILD THE MAKEFILE
###############################################################################
# this function (in buildtools.py) generates the makefile
# it's currently a bit ugly but it'll get cleaned up soon
if not os.environ.get('EESKIPBUILDMAKEFILE'):
print "build.py: Making the makefile"
buildMakefile(CTX)
if os.environ.get('EEONLYBUILDMAKEFILE'):
sys.exit()
###############################################################################
# RUN THE MAKEFILE
###############################################################################
numHardwareThreads = 4
if CTX.PLATFORM == "Darwin":
numHardwareThreads = 0
output = commands.getstatusoutput("sysctl hw.ncpu")
numHardwareThreads = int(string.strip(string.split(output[1])[1]))
elif CTX.PLATFORM == "Linux":
numHardwareThreads = 0
for line in open('/proc/cpuinfo').readlines():
name_value = map(string.strip, string.split(line, ':', 1))
if len(name_value) != 2:
continue
name,value = name_value
if name == "processor":
numHardwareThreads = numHardwareThreads + 1
retval = os.system("make --directory=%s -j%d" % (CTX.OUTPUT_PREFIX, numHardwareThreads))
if retval != 0:
sys.exit(-1)
###############################################################################
# RUN THE TESTS IF ASKED TO
###############################################################################
retval = 0
if CTX.TARGET == "TEST":
retval = runTests(CTX)
elif CTX.TARGET == "VOLTDBIPC":
retval = buildIPC(CTX)
if retval != 0:
sys.exit(-1)