mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
406 lines
12 KiB
Python
406 lines
12 KiB
Python
|
|
# build file for 10gen db
|
|
# this request scons
|
|
# you can get from http://www.scons.org
|
|
# then just type scons
|
|
|
|
import os
|
|
|
|
# --- options ----
|
|
AddOption('--prefix',
|
|
dest='prefix',
|
|
type='string',
|
|
nargs=1,
|
|
action='store',
|
|
metavar='DIR',
|
|
help='installation prefix')
|
|
|
|
AddOption( "--64",
|
|
dest="force64",
|
|
type="string",
|
|
nargs=0,
|
|
action="store",
|
|
help="whether to force 64 bit" )
|
|
|
|
|
|
AddOption( "--32",
|
|
dest="force32",
|
|
type="string",
|
|
nargs=0,
|
|
action="store",
|
|
help="whether to force 32 bit" )
|
|
|
|
AddOption( "--release",
|
|
dest="release",
|
|
type="string",
|
|
nargs=0,
|
|
action="store",
|
|
help="relase build")
|
|
|
|
AddOption('--java',
|
|
dest='javaHome',
|
|
type='string',
|
|
default="/opt/java/",
|
|
nargs=1,
|
|
action='store',
|
|
metavar='DIR',
|
|
help='java home')
|
|
|
|
AddOption( "--v8" ,
|
|
dest="v8home",
|
|
type="string",
|
|
default="../v8/",
|
|
nargs=1,
|
|
action="store",
|
|
metavar="dir",
|
|
help="v8 location")
|
|
|
|
# --- environment setup ---
|
|
|
|
env = Environment()
|
|
|
|
env.Append( CPPPATH=[ "." ] )
|
|
|
|
|
|
boostLibs = [ "thread" , "filesystem" , "program_options" ]
|
|
|
|
commonFiles = Split( "stdafx.cpp db/jsobj.cpp db/json.cpp db/commands.cpp db/lasterror.cpp db/nonce.cpp" )
|
|
commonFiles += Glob( "util/*.cpp" ) + Glob( "util/*.c" ) + Glob( "grid/*.cpp" )
|
|
commonFiles += Split( "client/connpool.cpp client/dbclient.cpp client/model.cpp" )
|
|
|
|
coreDbFiles = Split( "" )
|
|
|
|
serverOnlyFiles = Split( "db/query.cpp db/introspect.cpp db/btree.cpp db/clientcursor.cpp db/javajs.cpp db/tests.cpp db/repl.cpp db/btreecursor.cpp db/cloner.cpp db/namespace.cpp db/matcher.cpp db/dbcommands.cpp db/dbeval.cpp db/dbwebserver.cpp db/dbinfo.cpp db/dbhelpers.cpp db/instance.cpp db/pdfile.cpp db/cursor.cpp db/security_commands.cpp db/security.cpp" )
|
|
|
|
allClientFiles = commonFiles + coreDbFiles + [ "client/clientOnly.cpp" ];
|
|
|
|
nix = False
|
|
linux64 = False
|
|
force64 = not GetOption( "force64" ) is None
|
|
force32 = not GetOption( "force32" ) is None
|
|
|
|
installDir = "/usr/local"
|
|
nixLibPrefix = "lib"
|
|
|
|
javaHome = GetOption( "javaHome" )
|
|
|
|
def findVersion( root , choices ):
|
|
for c in choices:
|
|
if ( os.path.exists( root + c ) ):
|
|
return root + c
|
|
raise "can't find a version of [" + root + "] choices: " + choices
|
|
|
|
if "darwin" == os.sys.platform:
|
|
env.Append( CPPPATH=[ "-I/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Headers/" ] )
|
|
|
|
env.Append( CPPFLAGS=" -mmacosx-version-min=10.4 " )
|
|
env.Append( FRAMEWORKS=["JavaVM"] )
|
|
|
|
if os.path.exists( "/usr/bin/g++-4.2" ):
|
|
env["CXX"] = "g++-4.2"
|
|
|
|
nix = True
|
|
|
|
if force64:
|
|
env.Append( CPPPATH=["/usr/64/include"] )
|
|
env.Append( LIBPATH=["/usr/64/lib"] )
|
|
installDir = "/usr/64/"
|
|
else:
|
|
env.Append( CPPPATH=[ "/sw/include" , "/opt/local/include"] )
|
|
env.Append( LIBPATH=["/sw/lib/", "/opt/local/lib"] )
|
|
|
|
elif "linux2" == os.sys.platform:
|
|
|
|
env.Append( CPPPATH=[ javaHome + "include" , javaHome + "include/linux"] )
|
|
|
|
javaVersion = "i386";
|
|
|
|
if os.uname()[4] == "x86_64" and not force32:
|
|
linux64 = True
|
|
javaVersion = "amd64"
|
|
nixLibPrefix = "lib64"
|
|
env.Append( LIBPATH=["/usr/lib64"] )
|
|
|
|
env.Append( LIBPATH=[ javaHome + "jre/lib/" + javaVersion + "/server" , javaHome + "jre/lib/" + javaVersion ] )
|
|
env.Append( LIBS=[ "java" , "jvm" ] )
|
|
|
|
env.Append( LINKFLAGS="-Xlinker -rpath -Xlinker " + javaHome + "jre/lib/" + javaVersion + "/server" )
|
|
env.Append( LINKFLAGS="-Xlinker -rpath -Xlinker " + javaHome + "jre/lib/" + javaVersion )
|
|
|
|
if force32:
|
|
env.Append( LIBPATH=["/usr/lib32"] )
|
|
|
|
nix = True
|
|
|
|
elif "win32" == os.sys.platform:
|
|
boostDir = "C:/Program Files/Boost/boost_1_35_0"
|
|
javaHome = findVersion( "C:/Program Files/java/" ,
|
|
[ "jdk" , "jdk1.6.0_10" ] )
|
|
winSDKHome = findVersion( "C:/Program Files/Microsoft SDKs/Windows/" ,
|
|
[ "v6.0" , "v6.0a" , "v6.1" ] )
|
|
|
|
env.Append( CPPPATH=[ boostDir , javaHome + "/include" , javaHome + "/include/win32" , "pcre-7.4" , winSDKHome + "/Include" ] )
|
|
|
|
# /Fo"Debug\\" /Fd"Debug\vc90.pdb"
|
|
|
|
env.Append( CPPFLAGS=" /Od /EHsc /Gm /RTC1 /MDd /ZI /W3 " )
|
|
env.Append( CPPDEFINES=["WIN32","_DEBUG","_CONSOLE","_CRT_SECURE_NO_WARNINGS","HAVE_CONFIG_H","PCRE_STATIC","_UNICODE","UNICODE" ] )
|
|
|
|
env.Append( LIBPATH=[ boostDir + "/Lib" , javaHome + "/Lib" , winSDKHome + "/Lib" ] )
|
|
env.Append( LIBS=[ "jvm" ] )
|
|
|
|
def pcreFilter(x):
|
|
name = x.name
|
|
if x.name.endswith( "dftables.c" ):
|
|
return False
|
|
if x.name.endswith( "pcredemo.c" ):
|
|
return False
|
|
if x.name.endswith( "pcretest.c" ):
|
|
return False
|
|
if x.name.endswith( "unittest.cc" ):
|
|
return False
|
|
if x.name.endswith( "pcregrep.c" ):
|
|
return False
|
|
return True
|
|
|
|
commonFiles += filter( pcreFilter , Glob( "pcre-7.4/*.c" ) )
|
|
commonFiles += filter( pcreFilter , Glob( "pcre-7.4/*.cc" ) )
|
|
|
|
env.Append( LIBS=Split("ws2_32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib" ) )
|
|
|
|
else:
|
|
print( "No special config for [" + os.sys.platform + "] which probably means it won't work" )
|
|
|
|
if nix:
|
|
env.Append( CPPFLAGS="-fPIC -fno-strict-aliasing -ggdb -pthread -O3 -Wall -Wsign-compare -Wno-non-virtual-dtor" )
|
|
env.Append( LINKFLAGS=" -fPIC " )
|
|
env.Append( LIBS=[ "pcrecpp" , "pcre" , "stdc++" ] )
|
|
|
|
if force64:
|
|
env.Append( CFLAGS="-m64" )
|
|
env.Append( CXXFLAGS="-m64" )
|
|
env.Append( LINKFLAGS="-m64" )
|
|
|
|
if force32:
|
|
env.Append( CFLAGS="-m32" )
|
|
env.Append( CXXFLAGS="-m32" )
|
|
env.Append( LINKFLAGS="-m32" )
|
|
|
|
if not GetOption( "release" ) is None:
|
|
env.Append( LINKFLAGS=" -static " )
|
|
|
|
# --- check system ---
|
|
|
|
conf = Configure(env)
|
|
|
|
if not conf.CheckCXXHeader( 'pcrecpp.h' ):
|
|
print( "can't find pcre" )
|
|
Exit(1)
|
|
|
|
if not conf.CheckCXXHeader( "boost/filesystem/operations.hpp" ):
|
|
print( "can't find boost headers" )
|
|
Exit(1)
|
|
|
|
for b in boostLibs:
|
|
l = "boost_" + b
|
|
if not conf.CheckLib( [ l + "-mt" , l ] ):
|
|
print "can't find a required boost library [" + l + "]";
|
|
Exit(1)
|
|
|
|
# this will add it iff it exists and works
|
|
conf.CheckLib( "boost_system-mt" )
|
|
|
|
env = conf.Finish()
|
|
|
|
# --- v8 ---
|
|
|
|
v8Home = GetOption( "v8home" )
|
|
|
|
if not os.path.exists( v8Home ):
|
|
for poss in [ "../v8" , "../open-source/v8" ]:
|
|
if os.path.exists( poss ):
|
|
v8Home = poss
|
|
break
|
|
|
|
# --- js concat ---
|
|
|
|
def concatjs(target, source, env):
|
|
|
|
outFile = str( target[0] )
|
|
|
|
fullSource = ""
|
|
|
|
for s in source:
|
|
f = open( str(s) , 'r' )
|
|
for l in f:
|
|
fullSource += l
|
|
|
|
out = open( outFile , 'w' )
|
|
out.write( fullSource )
|
|
|
|
return None
|
|
|
|
jsBuilder = Builder(action = concatjs,
|
|
suffix = '.jsall',
|
|
src_suffix = '.js')
|
|
|
|
env.Append( BUILDERS={'JSConcat' : jsBuilder})
|
|
|
|
# --- jsh ---
|
|
|
|
def jsToH(target, source, env):
|
|
|
|
outFile = str( target[0] )
|
|
if len( source ) != 1:
|
|
raise Exception( "wrong" )
|
|
|
|
h = "const char * jsconcatcode = \n"
|
|
|
|
for l in open( str(source[0]) , 'r' ):
|
|
l = l.strip()
|
|
l = l.partition( "//" )[0]
|
|
l = l.replace( '\\' , "\\\\" )
|
|
l = l.replace( '"' , "\\\"" )
|
|
|
|
|
|
h += '"' + l + "\\n\"\n "
|
|
|
|
h += ";\n\n"
|
|
|
|
out = open( outFile , 'w' )
|
|
out.write( h )
|
|
|
|
return None
|
|
|
|
jshBuilder = Builder(action = jsToH,
|
|
suffix = '.jsh',
|
|
src_suffix = '.jsall')
|
|
|
|
env.Append( BUILDERS={'JSHeader' : jshBuilder})
|
|
|
|
|
|
# --- targets ----
|
|
|
|
clientEnv = env.Clone();
|
|
clientEnv.Append( CPPPATH=["../"] )
|
|
clientEnv.Append( LIBS=[ "libmongoclient.a"] )
|
|
clientEnv.Append( LIBPATH=["."] )
|
|
|
|
testEnv = env.Clone()
|
|
testEnv.Append( CPPPATH=["../"] )
|
|
testEnv.Append( LIBS=[ "unittest" , "libmongotestfiles.a" ] )
|
|
testEnv.Append( LIBPATH=["."] )
|
|
|
|
|
|
# ----- TARGETS ------
|
|
|
|
|
|
# main db target
|
|
Default( env.Program( "mongod" , commonFiles + coreDbFiles + serverOnlyFiles + [ "db/db.cpp" ] ) )
|
|
|
|
# tools
|
|
env.Program( "mongodump" , allClientFiles + [ "tools/dump.cpp" ] )
|
|
env.Program( "mongoimport" , allClientFiles + [ "tools/import.cpp" ] )
|
|
|
|
# dbgrid
|
|
env.Program( "mongogrid" , commonFiles + coreDbFiles + Glob( "dbgrid/*.cpp" ) )
|
|
|
|
# c++ library
|
|
env.Library( "mongoclient" , allClientFiles )
|
|
env.Library( "mongotestfiles" , commonFiles + coreDbFiles + serverOnlyFiles )
|
|
|
|
# examples
|
|
clientEnv.Program( "firstExample" , [ "client/examples/first.cpp" ] )
|
|
clientEnv.Program( "secondExample" , [ "client/examples/second.cpp" ] )
|
|
clientEnv.Program( "authTest" , [ "client/examples/authTest.cpp" ] )
|
|
|
|
# testing
|
|
test = testEnv.Program( "test" , Glob( "dbtests/*.cpp" ) )
|
|
clientEnv.Program( "clientTest" , [ "client/examples/clientTest.cpp" ] )
|
|
|
|
|
|
# --- shell ---
|
|
# shell is complicated by the fact that v8 doesn't work 64-bit yet
|
|
|
|
shellEnv = env.Clone();
|
|
shellEnv.Append( CPPPATH=[ "../" , v8Home + "/include/" ] )
|
|
shellEnv.Append( LIBS=[ "v8" , "readline" , "history" ] )
|
|
shellEnv.Append( LIBPATH=[ v8Home] )
|
|
|
|
shellEnv.JSConcat( "shell/mongo.jsall" , Glob( "shell/*.js" ) )
|
|
shellEnv.JSHeader( "shell/mongo.jsall" )
|
|
|
|
if linux64:
|
|
shellEnv.Append( CFLAGS="-m32" )
|
|
shellEnv.Append( CXXFLAGS="-m32" )
|
|
shellEnv.Append( LINKFLAGS="-m32" )
|
|
shellEnv.Append( LIBPATH=[ "/usr/lib32" ] )
|
|
l = shellEnv["LIBS"]
|
|
l.remove("java");
|
|
l.remove("jvm");
|
|
l.remove("pcre");
|
|
l.remove("pcrecpp");
|
|
|
|
shell32BitFiles = Glob( "shell/*.cpp" )
|
|
for f in allClientFiles:
|
|
shell32BitFiles.append( "32bit/" + str( f ) )
|
|
|
|
shellEnv.VariantDir( "32bit" , "." )
|
|
shellEnv.Program( "mongo" , shell32BitFiles )
|
|
else:
|
|
shellEnv.Append( LIBPATH=[ "." ] )
|
|
shellEnv.Append( LIBS=[ "mongoclient"] )
|
|
shellEnv.Program( "mongo" , Glob( "shell/*.cpp" ) );
|
|
|
|
|
|
# ---- RUNNING TESTS ----
|
|
|
|
testEnv.Alias( "smoke", "test", test[ 0 ].abspath )
|
|
testEnv.AlwaysBuild( "smoke" )
|
|
|
|
# ---- INSTALL -------
|
|
|
|
if GetOption( "prefix" ):
|
|
installDir = GetOption( "prefix" )
|
|
|
|
#binaries
|
|
env.Install( installDir + "/bin" , "mongodump" )
|
|
env.Install( installDir + "/bin" , "mongoimport" )
|
|
env.Install( installDir + "/bin" , "mongod" )
|
|
env.Install( installDir + "/bin" , "mongo" )
|
|
|
|
#headers
|
|
for id in [ "" , "client/" , "util/" , "grid/" , "db/" ]:
|
|
env.Install( installDir + "/include/mongo/" + id , Glob( id + "*.h" ) )
|
|
|
|
#lib
|
|
# (Using InstallAs syntax so scons doesn't treat the install location as a
|
|
# dependency for the client targets.)
|
|
env.InstallAs( target=installDir + "/" + nixLibPrefix, source="libmongoclient.a" )
|
|
env.Install( installDir + "/" + nixLibPrefix + "/mongo/jars" , Glob( "jars/*" ) )
|
|
|
|
#final alias
|
|
env.Alias( "install" , installDir )
|
|
|
|
# ---- CONVENIENCE ----
|
|
|
|
def tabs( env, target, source ):
|
|
from subprocess import Popen, PIPE
|
|
from re import search, match
|
|
diff = Popen( [ "git", "diff", "-U0", "origin", "master" ], stdout=PIPE ).communicate()[ 0 ]
|
|
sourceFile = False
|
|
for line in diff.split( "\n" ):
|
|
if match( "diff --git", line ):
|
|
sourceFile = not not search( "\.(h|hpp|c|cpp)\s*$", line )
|
|
if sourceFile and match( "\+ *\t", line ):
|
|
return True
|
|
return False
|
|
env.Alias( "checkSource", [], [ tabs ] )
|
|
env.AlwaysBuild( "checkSource" )
|
|
|
|
def gitPush( env, target, source ):
|
|
import subprocess
|
|
return subprocess.call( [ "git", "push" ] )
|
|
env.Alias( "push", [ ".", "smoke", "checkSource" ], gitPush )
|
|
env.AlwaysBuild( "push" )
|