2009-01-06 00:19:56 +01:00
|
|
|
|
|
|
|
# build file for 10gen db
|
|
|
|
# this request scons
|
|
|
|
# you can get from http://www.scons.org
|
|
|
|
# then just type scons
|
|
|
|
|
2009-02-02 01:13:12 +01:00
|
|
|
# some common tasks
|
|
|
|
# build 64-bit mac and pushing to s3
|
2009-02-06 22:51:14 +01:00
|
|
|
# scons --64 s3dist
|
2009-02-11 03:37:18 +01:00
|
|
|
# scons --distname=0.8 s3dist
|
2009-02-12 15:10:11 +01:00
|
|
|
# all s3 pushes require settings.py and simples3
|
2009-02-02 01:13:12 +01:00
|
|
|
|
2009-01-06 00:19:56 +01:00
|
|
|
import os
|
2009-01-27 19:08:44 +01:00
|
|
|
import sys
|
2009-04-22 17:12:13 +02:00
|
|
|
import types
|
2009-02-01 23:39:07 +01:00
|
|
|
import re
|
2009-04-22 17:12:13 +02:00
|
|
|
import shutil
|
2009-04-22 23:06:31 +02:00
|
|
|
import urllib
|
|
|
|
import urllib2
|
2009-01-06 00:19:56 +01:00
|
|
|
|
2009-01-14 16:58:32 +01:00
|
|
|
# --- options ----
|
|
|
|
AddOption('--prefix',
|
|
|
|
dest='prefix',
|
|
|
|
type='string',
|
|
|
|
nargs=1,
|
|
|
|
action='store',
|
|
|
|
metavar='DIR',
|
|
|
|
help='installation prefix')
|
|
|
|
|
2009-02-11 03:37:18 +01:00
|
|
|
AddOption('--distname',
|
|
|
|
dest='distname',
|
|
|
|
type='string',
|
|
|
|
nargs=1,
|
|
|
|
action='store',
|
|
|
|
metavar='DIR',
|
|
|
|
help='dist name (0.8.0)')
|
|
|
|
|
|
|
|
|
2009-01-20 16:22:09 +01:00
|
|
|
AddOption( "--64",
|
|
|
|
dest="force64",
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="whether to force 64 bit" )
|
|
|
|
|
2009-01-14 16:58:32 +01:00
|
|
|
|
2009-01-22 15:12:58 +01:00
|
|
|
AddOption( "--32",
|
|
|
|
dest="force32",
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="whether to force 32 bit" )
|
|
|
|
|
2009-01-30 04:31:13 +01:00
|
|
|
|
|
|
|
AddOption( "--mm",
|
|
|
|
dest="mm",
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="use main memory instead of memory mapped files" )
|
|
|
|
|
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
AddOption( "--release",
|
|
|
|
dest="release",
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="relase build")
|
2009-01-22 15:12:58 +01:00
|
|
|
|
2009-01-19 19:02:41 +01:00
|
|
|
AddOption('--java',
|
|
|
|
dest='javaHome',
|
|
|
|
type='string',
|
|
|
|
default="/opt/java/",
|
|
|
|
nargs=1,
|
|
|
|
action='store',
|
|
|
|
metavar='DIR',
|
|
|
|
help='java home')
|
|
|
|
|
2009-04-15 16:45:15 +02:00
|
|
|
AddOption('--nojni',
|
|
|
|
dest='nojni',
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="turn off jni support" )
|
|
|
|
|
2009-04-23 23:40:43 +02:00
|
|
|
|
|
|
|
AddOption('--usesm',
|
|
|
|
dest='usesm',
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="use spider monkey for javascript" )
|
|
|
|
|
2009-05-08 23:02:32 +02:00
|
|
|
AddOption('--usejvm',
|
|
|
|
dest='usejvm',
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="use java for javascript" )
|
|
|
|
|
2009-02-18 05:29:28 +01:00
|
|
|
AddOption( "--d",
|
|
|
|
dest="debugBuild",
|
2009-01-30 16:29:07 +01:00
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
2009-02-18 05:29:28 +01:00
|
|
|
help="debug build no optimization, etc..." )
|
2009-01-30 16:29:07 +01:00
|
|
|
|
2009-03-12 16:53:50 +01:00
|
|
|
AddOption( "--dd",
|
|
|
|
dest="debugBuildAndLogging",
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="debug build no optimization, additional debug logging, etc..." )
|
2009-02-04 21:08:55 +01:00
|
|
|
|
|
|
|
AddOption( "--recstore",
|
|
|
|
dest="recstore",
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="use new recstore" )
|
|
|
|
|
2009-02-09 20:30:45 +01:00
|
|
|
AddOption( "--noshell",
|
|
|
|
dest="noshell",
|
|
|
|
type="string",
|
|
|
|
nargs=0,
|
|
|
|
action="store",
|
|
|
|
help="don't build shell" )
|
2009-02-04 21:08:55 +01:00
|
|
|
|
2009-06-30 22:08:42 +02:00
|
|
|
AddOption( "--extrapath",
|
|
|
|
dest="extrapath",
|
|
|
|
type="string",
|
|
|
|
nargs=1,
|
|
|
|
action="store",
|
|
|
|
help="comma seperated list of add'l paths (--extrapath /opt/foo/,/foo" )
|
|
|
|
|
2009-01-14 16:58:32 +01:00
|
|
|
# --- environment setup ---
|
|
|
|
|
2009-03-18 19:26:27 +01:00
|
|
|
def printLocalInfo():
|
|
|
|
import sys, SCons
|
|
|
|
print( "scons version: " + SCons.__version__ )
|
|
|
|
print( "python version: " + " ".join( [ `i` for i in sys.version_info ] ) )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-03-18 19:26:27 +01:00
|
|
|
printLocalInfo()
|
|
|
|
|
2009-01-06 00:19:56 +01:00
|
|
|
env = Environment()
|
2009-05-22 22:20:45 +02:00
|
|
|
env["LIBPATH"] = []
|
2009-01-06 00:19:56 +01:00
|
|
|
|
2009-02-04 21:08:55 +01:00
|
|
|
if GetOption( "recstore" ) != None:
|
|
|
|
env.Append( CPPDEFINES=[ "_RECSTORE" ] )
|
2009-03-17 15:22:26 +01:00
|
|
|
env.Append( CPPDEFINES=[ "_SCONS" ] )
|
2009-01-30 22:21:30 +01:00
|
|
|
env.Append( CPPPATH=[ "." ] )
|
2009-01-06 00:19:56 +01:00
|
|
|
|
|
|
|
boostLibs = [ "thread" , "filesystem" , "program_options" ]
|
|
|
|
|
2009-04-28 22:44:17 +02:00
|
|
|
onlyServer = len( COMMAND_LINE_TARGETS ) == 0 or ( len( COMMAND_LINE_TARGETS ) == 1 and str( COMMAND_LINE_TARGETS[0] ) in [ "mongod" , "mongos" , "test" ] )
|
2009-04-23 22:51:51 +02:00
|
|
|
nix = False
|
|
|
|
useJavaHome = False
|
|
|
|
linux = False
|
|
|
|
linux64 = False
|
|
|
|
darwin = False
|
|
|
|
windows = False
|
2009-05-22 09:58:03 +02:00
|
|
|
freebsd = False
|
2009-06-01 22:09:16 +02:00
|
|
|
solaris = False
|
2009-06-30 19:45:55 +02:00
|
|
|
force64 = not GetOption( "force64" ) is None
|
|
|
|
if not force64 and os.getcwd().endswith( "mongo-64" ):
|
|
|
|
force64 = True
|
|
|
|
print( "*** assuming you want a 64-bit build b/c of directory *** " )
|
2009-04-23 22:51:51 +02:00
|
|
|
force32 = not GetOption( "force32" ) is None
|
|
|
|
release = not GetOption( "release" ) is None
|
|
|
|
|
|
|
|
debugBuild = ( not GetOption( "debugBuild" ) is None ) or ( not GetOption( "debugBuildAndLogging" ) is None )
|
|
|
|
debugLogging = not GetOption( "debugBuildAndLogging" ) is None
|
|
|
|
noshell = not GetOption( "noshell" ) is None
|
|
|
|
nojni = not GetOption( "nojni" ) is None
|
2009-05-08 23:02:32 +02:00
|
|
|
|
2009-04-23 23:40:43 +02:00
|
|
|
usesm = not GetOption( "usesm" ) is None
|
2009-05-08 23:02:32 +02:00
|
|
|
usejvm = not GetOption( "usejvm" ) is None
|
|
|
|
|
|
|
|
if ( usesm and usejvm ):
|
|
|
|
print( "can't say usesm and usejvm at the same time" )
|
|
|
|
Exit(1)
|
2009-04-23 22:51:51 +02:00
|
|
|
|
2009-05-08 23:02:32 +02:00
|
|
|
if ( not ( usesm or usejvm ) ):
|
2009-05-11 17:05:39 +02:00
|
|
|
usesm = True
|
2009-04-23 22:51:51 +02:00
|
|
|
|
2009-06-30 22:08:42 +02:00
|
|
|
if GetOption( "extrapath" ) is not None:
|
|
|
|
for x in GetOption( "extrapath" ).split( "," ):
|
|
|
|
env.Append( CPPPATH=[ x + "/include" ] )
|
|
|
|
env.Append( LIBPATH=[ x + "/lib" ] )
|
|
|
|
release = True
|
|
|
|
|
2009-04-23 22:51:51 +02:00
|
|
|
# ------ SOURCE FILE SETUP -----------
|
|
|
|
|
2009-05-08 15:15:56 +02:00
|
|
|
commonFiles = Split( "stdafx.cpp buildinfo.cpp db/jsobj.cpp db/json.cpp db/commands.cpp db/lasterror.cpp db/nonce.cpp db/queryutil.cpp shell/mongo.cpp" )
|
2009-06-04 13:25:58 +02:00
|
|
|
commonFiles += [ "util/background.cpp" , "util/mmap.cpp" , "util/sock.cpp" , "util/util.cpp" , "util/message.cpp" , "util/assert_util.cpp" ]
|
2009-05-04 17:49:18 +02:00
|
|
|
commonFiles += Glob( "util/*.c" )
|
2009-04-22 17:12:13 +02:00
|
|
|
commonFiles += Split( "client/connpool.cpp client/dbclient.cpp client/model.cpp" )
|
2009-05-04 17:49:18 +02:00
|
|
|
commonFiles += [ "scripting/engine.cpp" ]
|
2009-01-06 00:19:56 +01:00
|
|
|
|
2009-01-30 04:21:33 +01:00
|
|
|
#mmap stuff
|
|
|
|
|
2009-01-30 04:31:13 +01:00
|
|
|
if GetOption( "mm" ) != None:
|
|
|
|
commonFiles += [ "util/mmap_mm.cpp" ]
|
|
|
|
elif os.sys.platform == "win32":
|
2009-01-30 04:21:33 +01:00
|
|
|
commonFiles += [ "util/mmap_win.cpp" ]
|
|
|
|
else:
|
|
|
|
commonFiles += [ "util/mmap_posix.cpp" ]
|
|
|
|
|
2009-02-20 15:34:25 +01:00
|
|
|
if os.path.exists( "util/processinfo_" + os.sys.platform + ".cpp" ):
|
|
|
|
commonFiles += [ "util/processinfo_" + os.sys.platform + ".cpp" ]
|
|
|
|
else:
|
|
|
|
commonFiles += [ "util/processinfo_none.cpp" ]
|
|
|
|
|
2009-03-02 19:35:34 +01:00
|
|
|
coreDbFiles = []
|
|
|
|
coreServerFiles = [ "util/message_server_port.cpp" , "util/message_server_asio.cpp" ]
|
2009-01-15 16:08:20 +01:00
|
|
|
|
2009-04-23 20:28:22 +02:00
|
|
|
serverOnlyFiles = Split( "db/query.cpp db/introspect.cpp db/btree.cpp db/clientcursor.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 util/miniwebserver.cpp db/storage.cpp db/reccache.cpp db/queryoptimizer.cpp" )
|
2009-04-23 22:51:51 +02:00
|
|
|
|
2009-04-23 23:40:43 +02:00
|
|
|
if usesm:
|
2009-05-13 23:00:02 +02:00
|
|
|
commonFiles += [ "scripting/engine_spidermonkey.cpp" ]
|
2009-04-28 14:47:56 +02:00
|
|
|
nojni = True
|
2009-04-23 23:40:43 +02:00
|
|
|
elif not nojni:
|
2009-05-13 23:00:02 +02:00
|
|
|
commonFiles += [ "scripting/engine_java.cpp" ]
|
2009-04-23 22:51:51 +02:00
|
|
|
else:
|
2009-05-13 23:00:02 +02:00
|
|
|
commonFiles += [ "scripting/engine_none.cpp" ]
|
|
|
|
nojni = True
|
2009-01-15 16:08:20 +01:00
|
|
|
|
2009-03-11 22:28:49 +01:00
|
|
|
coreShardFiles = []
|
2009-04-22 21:58:12 +02:00
|
|
|
shardServerFiles = coreShardFiles + Glob( "s/strategy*.cpp" ) + [ "s/commands_admin.cpp" , "s/commands_public.cpp" , "s/request.cpp" , "s/cursors.cpp" , "s/server.cpp" ] + [ "s/shard.cpp" , "s/shardkey.cpp" , "s/config.cpp" ]
|
2009-03-17 22:25:10 +01:00
|
|
|
serverOnlyFiles += coreShardFiles + [ "s/d_logic.cpp" ]
|
2009-03-11 22:28:49 +01:00
|
|
|
|
2009-02-02 23:13:38 +01:00
|
|
|
allClientFiles = commonFiles + coreDbFiles + [ "client/clientOnly.cpp" , "client/gridfs.cpp" ];
|
2009-01-06 00:19:56 +01:00
|
|
|
|
2009-04-23 22:51:51 +02:00
|
|
|
# ---- other build setup -----
|
2009-01-20 16:22:09 +01:00
|
|
|
|
2009-02-06 16:48:39 +01:00
|
|
|
platform = os.sys.platform
|
2009-02-10 16:07:18 +01:00
|
|
|
if "uname" in dir(os):
|
|
|
|
processor = os.uname()[4]
|
|
|
|
else:
|
|
|
|
processor = "i386"
|
2009-02-06 16:48:39 +01:00
|
|
|
|
|
|
|
if force32:
|
|
|
|
processor = "i386"
|
|
|
|
if force64:
|
|
|
|
processor = "x86_64"
|
|
|
|
|
2009-02-01 23:51:00 +01:00
|
|
|
DEFAULT_INSTALl_DIR = "/usr/local"
|
|
|
|
installDir = DEFAULT_INSTALl_DIR
|
2009-01-22 15:12:58 +01:00
|
|
|
nixLibPrefix = "lib"
|
2009-01-07 19:27:01 +01:00
|
|
|
|
2009-02-11 03:37:18 +01:00
|
|
|
distName = GetOption( "distname" )
|
2009-05-29 16:21:43 +02:00
|
|
|
dontReplacePackage = False
|
2009-02-11 03:37:18 +01:00
|
|
|
|
2009-01-19 20:25:50 +01:00
|
|
|
javaHome = GetOption( "javaHome" )
|
2009-02-01 15:06:49 +01:00
|
|
|
javaVersion = "i386";
|
2009-01-27 17:38:41 +01:00
|
|
|
javaLibs = []
|
2009-01-19 19:02:41 +01:00
|
|
|
|
2009-02-06 16:48:39 +01:00
|
|
|
distBuild = len( COMMAND_LINE_TARGETS ) == 1 and ( str( COMMAND_LINE_TARGETS[0] ) == "s3dist" or str( COMMAND_LINE_TARGETS[0] ) == "dist" )
|
2009-02-01 23:51:00 +01:00
|
|
|
if distBuild:
|
|
|
|
release = True
|
|
|
|
|
|
|
|
if GetOption( "prefix" ):
|
|
|
|
installDir = GetOption( "prefix" )
|
|
|
|
|
2009-01-09 18:16:32 +01:00
|
|
|
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
|
|
|
|
|
2009-04-12 03:19:29 +02:00
|
|
|
def choosePathExist( choices , default=None):
|
|
|
|
for c in choices:
|
2009-04-28 14:47:56 +02:00
|
|
|
if c != None and os.path.exists( c ):
|
2009-04-12 03:19:29 +02:00
|
|
|
return c
|
|
|
|
return default
|
|
|
|
|
2009-01-06 00:19:56 +01:00
|
|
|
if "darwin" == os.sys.platform:
|
2009-01-28 23:27:12 +01:00
|
|
|
darwin = True
|
2009-02-06 16:48:39 +01:00
|
|
|
platform = "osx" # prettier than darwin
|
2009-01-28 23:27:12 +01:00
|
|
|
|
2009-01-25 16:01:43 +01:00
|
|
|
env.Append( CPPPATH=[ "-I/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Headers/" ] )
|
2009-01-06 00:19:56 +01:00
|
|
|
|
|
|
|
env.Append( CPPFLAGS=" -mmacosx-version-min=10.4 " )
|
2009-04-15 16:45:15 +02:00
|
|
|
if not nojni:
|
|
|
|
env.Append( FRAMEWORKS=["JavaVM"] )
|
2009-01-06 00:19:56 +01:00
|
|
|
|
|
|
|
if os.path.exists( "/usr/bin/g++-4.2" ):
|
|
|
|
env["CXX"] = "g++-4.2"
|
2009-01-06 00:53:46 +01:00
|
|
|
|
2009-01-07 19:27:01 +01:00
|
|
|
nix = True
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-25 16:01:43 +01:00
|
|
|
if force64:
|
2009-01-26 22:29:19 +01:00
|
|
|
env.Append( CPPPATH=["/usr/64/include"] )
|
|
|
|
env.Append( LIBPATH=["/usr/64/lib"] )
|
2009-02-06 16:48:39 +01:00
|
|
|
if installDir == DEFAULT_INSTALl_DIR and not distBuild:
|
2009-02-01 23:51:00 +01:00
|
|
|
installDir = "/usr/64/"
|
2009-01-25 16:01:43 +01:00
|
|
|
else:
|
|
|
|
env.Append( CPPPATH=[ "/sw/include" , "/opt/local/include"] )
|
|
|
|
env.Append( LIBPATH=["/sw/lib/", "/opt/local/lib"] )
|
|
|
|
|
2009-01-06 00:53:46 +01:00
|
|
|
elif "linux2" == os.sys.platform:
|
2009-03-25 18:22:09 +01:00
|
|
|
linux = True
|
2009-02-01 15:06:49 +01:00
|
|
|
useJavaHome = True
|
|
|
|
javaOS = "linux"
|
2009-02-06 22:53:08 +01:00
|
|
|
platform = "linux"
|
2009-02-01 15:06:49 +01:00
|
|
|
|
2009-04-12 03:19:29 +02:00
|
|
|
javaHome = choosePathExist( [ javaHome , "/usr/lib/jvm/java/" , os.environ.get( "JAVA_HOME" ) ] , "/usr/lib/jvm/java/" )
|
2009-01-06 00:53:46 +01:00
|
|
|
|
2009-01-22 16:14:03 +01:00
|
|
|
if os.uname()[4] == "x86_64" and not force32:
|
2009-01-27 17:27:34 +01:00
|
|
|
linux64 = True
|
2009-01-06 00:53:46 +01:00
|
|
|
javaVersion = "amd64"
|
2009-01-22 15:12:58 +01:00
|
|
|
nixLibPrefix = "lib64"
|
2009-04-01 04:08:55 +02:00
|
|
|
env.Append( LIBPATH=["/usr/lib64" , "/lib64" ] )
|
2009-02-05 18:42:35 +01:00
|
|
|
env.Append( LIBS=["pthread"] )
|
2009-06-11 18:32:03 +02:00
|
|
|
|
|
|
|
if force64:
|
|
|
|
print( "error: force64 doesn't make sense on a 64-bit machine" )
|
|
|
|
Exit(1)
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
if force32:
|
2009-01-27 14:57:15 +01:00
|
|
|
env.Append( LIBPATH=["/usr/lib32"] )
|
2009-01-27 04:19:15 +01:00
|
|
|
|
2009-01-07 19:27:01 +01:00
|
|
|
nix = True
|
|
|
|
|
2009-02-01 15:06:49 +01:00
|
|
|
elif "sunos5" == os.sys.platform:
|
|
|
|
nix = True
|
2009-06-01 22:09:16 +02:00
|
|
|
solaris = True
|
2009-02-01 15:06:49 +01:00
|
|
|
useJavaHome = True
|
|
|
|
javaHome = "/usr/lib/jvm/java-6-sun/"
|
|
|
|
javaOS = "solaris"
|
2009-03-26 19:55:00 +01:00
|
|
|
env.Append( CPPDEFINES=[ "__linux__" , "__sunos__" ] )
|
2009-05-11 17:36:22 +02:00
|
|
|
env.Append( LIBS=["socket"] )
|
2009-02-01 15:06:49 +01:00
|
|
|
|
2009-05-27 16:44:45 +02:00
|
|
|
elif "freebsd7" == os.sys.platform:
|
|
|
|
nix = True
|
|
|
|
freebsd = True
|
|
|
|
env.Append( CPPPATH=[ "/usr/local/include" ] )
|
|
|
|
env.Append( LIBPATH=[ "/usr/local/lib" ] )
|
|
|
|
env.Append( CPPDEFINES=[ "__freebsd__" ] )
|
|
|
|
|
2009-01-07 21:51:42 +01:00
|
|
|
elif "win32" == os.sys.platform:
|
2009-02-10 16:07:18 +01:00
|
|
|
windows = True
|
2009-01-07 21:51:42 +01:00
|
|
|
boostDir = "C:/Program Files/Boost/boost_1_35_0"
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-06-04 14:56:51 +02:00
|
|
|
serverOnlyFiles += [ "util/ntservice.cpp" ]
|
|
|
|
|
2009-02-10 16:07:18 +01:00
|
|
|
if not os.path.exists( boostDir ):
|
|
|
|
print( "can't find boost" )
|
|
|
|
Exit(1)
|
|
|
|
|
|
|
|
boostLibs = []
|
|
|
|
|
2009-05-22 19:40:32 +02:00
|
|
|
if usesm:
|
|
|
|
env.Append( CPPPATH=[ "js/src/" ] )
|
2009-06-01 17:28:03 +02:00
|
|
|
env.Append(CPPPATH=["../js/src/"])
|
|
|
|
env.Append(LIBPATH=["../js/src"])
|
2009-05-22 19:40:32 +02:00
|
|
|
env.Append( CPPDEFINES=[ "OLDJS" ] )
|
|
|
|
else:
|
|
|
|
javaHome = findVersion( "C:/Program Files/java/" ,
|
|
|
|
[ "jdk" , "jdk1.6.0_10" ] )
|
|
|
|
env.Append( CPPPATH=[ javaHome + "/include" , javaHome + "/include/win32" ] )
|
|
|
|
env.Append( LIBPATH=[ javaHome + "/Lib" ] )
|
|
|
|
javaLibs += [ "jvm" ];
|
|
|
|
|
2009-04-22 17:12:13 +02:00
|
|
|
winSDKHome = findVersion( "C:/Program Files/Microsoft SDKs/Windows/" ,
|
2009-01-09 18:16:32 +01:00
|
|
|
[ "v6.0" , "v6.0a" , "v6.1" ] )
|
2009-01-07 21:51:42 +01:00
|
|
|
|
2009-05-22 19:40:32 +02:00
|
|
|
env.Append( CPPPATH=[ boostDir , "pcre-7.4" , winSDKHome + "/Include" ] )
|
2009-01-07 21:51:42 +01:00
|
|
|
|
2009-02-10 21:12:15 +01:00
|
|
|
env.Append( CPPFLAGS=" /EHsc /W3 " )
|
2009-07-02 20:55:05 +02:00
|
|
|
env.Append( CPPFLAGS=" /wd4355 /wd4800 " ) #some warnings we don't like
|
2009-06-30 22:39:31 +02:00
|
|
|
env.Append( CPPDEFINES=["WIN32","_CONSOLE","_CRT_SECURE_NO_WARNINGS","HAVE_CONFIG_H","PCRE_STATIC","_UNICODE","UNICODE","SUPPORT_UCP","SUPPORT_UTF8" ] )
|
2009-01-08 00:05:22 +01:00
|
|
|
|
2009-05-22 19:40:32 +02:00
|
|
|
#env.Append( CPPFLAGS=' /Yu"stdafx.h" ' ) # this would be for pre-compiled headers, could play with it later
|
2009-06-01 17:28:03 +02:00
|
|
|
|
2009-02-10 21:12:15 +01:00
|
|
|
if release:
|
|
|
|
env.Append( CPPDEFINES=[ "NDEBUG" ] )
|
2009-02-10 21:38:20 +01:00
|
|
|
env.Append( CPPFLAGS= " /O2 /Oi /GL /FD /MT /Gy /nologo /Zi /TP /errorReport:prompt /Gm " )
|
2009-02-10 21:12:15 +01:00
|
|
|
else:
|
|
|
|
env.Append( CPPDEFINES=[ "_DEBUG" ] )
|
|
|
|
env.Append( CPPFLAGS=" /Od /Gm /RTC1 /MDd /ZI " )
|
2009-05-22 19:40:32 +02:00
|
|
|
env.Append( CPPFLAGS=' /Fd"mongod.pdb" ' )
|
2009-01-07 21:51:42 +01:00
|
|
|
|
2009-05-22 19:40:32 +02:00
|
|
|
env.Append( LIBPATH=[ boostDir + "/Lib" , winSDKHome + "/Lib" ] )
|
2009-01-08 15:53:46 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2009-02-10 16:48:52 +01:00
|
|
|
pcreFiles = []
|
|
|
|
pcreFiles += filter( pcreFilter , Glob( "pcre-7.4/*.c" ) )
|
|
|
|
pcreFiles += filter( pcreFilter , Glob( "pcre-7.4/*.cc" ) )
|
|
|
|
commonFiles += pcreFiles
|
|
|
|
allClientFiles += pcreFiles
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-08 15:53:46 +01:00
|
|
|
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" ) )
|
2009-01-08 00:05:22 +01:00
|
|
|
|
2009-01-06 00:53:46 +01:00
|
|
|
else:
|
|
|
|
print( "No special config for [" + os.sys.platform + "] which probably means it won't work" )
|
2009-01-06 00:19:56 +01:00
|
|
|
|
2009-05-21 15:55:08 +02:00
|
|
|
if not nojni and useJavaHome:
|
2009-02-01 15:06:49 +01:00
|
|
|
env.Append( CPPPATH=[ javaHome + "include" , javaHome + "include/" + javaOS ] )
|
|
|
|
env.Append( LIBPATH=[ javaHome + "jre/lib/" + javaVersion + "/server" , javaHome + "jre/lib/" + javaVersion ] )
|
|
|
|
|
2009-04-15 16:45:15 +02:00
|
|
|
if not nojni:
|
|
|
|
javaLibs += [ "java" , "jvm" ]
|
2009-02-01 15:06:49 +01:00
|
|
|
|
|
|
|
env.Append( LINKFLAGS="-Xlinker -rpath -Xlinker " + javaHome + "jre/lib/" + javaVersion + "/server" )
|
|
|
|
env.Append( LINKFLAGS="-Xlinker -rpath -Xlinker " + javaHome + "jre/lib/" + javaVersion )
|
|
|
|
|
2009-01-07 19:27:01 +01:00
|
|
|
if nix:
|
2009-04-06 22:33:34 +02:00
|
|
|
env.Append( CPPFLAGS="-fPIC -fno-strict-aliasing -ggdb -pthread -Wall -Wsign-compare -Wno-unknown-pragmas" )
|
2009-04-06 22:10:31 +02:00
|
|
|
env.Append( CXXFLAGS=" -Wnon-virtual-dtor " )
|
2009-05-12 14:07:09 +02:00
|
|
|
env.Append( LINKFLAGS=" -fPIC -pthread " )
|
2009-02-17 18:24:47 +01:00
|
|
|
env.Append( LIBS=[] )
|
2009-01-08 00:05:22 +01:00
|
|
|
|
2009-02-18 05:29:28 +01:00
|
|
|
if debugBuild:
|
2009-03-12 16:53:50 +01:00
|
|
|
env.Append( CPPFLAGS=" -O0 -fstack-protector -fstack-check" );
|
2009-01-30 16:29:07 +01:00
|
|
|
else:
|
|
|
|
env.Append( CPPFLAGS=" -O3" )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-03-12 16:53:50 +01:00
|
|
|
if debugLogging:
|
|
|
|
env.Append( CPPFLAGS=" -D_DEBUG" );
|
2009-01-30 16:29:07 +01:00
|
|
|
|
2009-01-20 16:22:09 +01:00
|
|
|
if force64:
|
2009-01-30 16:29:07 +01:00
|
|
|
env.Append( CFLAGS="-m64" )
|
2009-01-20 16:22:09 +01:00
|
|
|
env.Append( CXXFLAGS="-m64" )
|
2009-01-22 16:14:03 +01:00
|
|
|
env.Append( LINKFLAGS="-m64" )
|
2009-01-20 16:22:09 +01:00
|
|
|
|
2009-01-22 15:12:58 +01:00
|
|
|
if force32:
|
2009-01-30 16:29:07 +01:00
|
|
|
env.Append( CFLAGS="-m32" )
|
2009-01-22 15:12:58 +01:00
|
|
|
env.Append( CXXFLAGS="-m32" )
|
2009-01-22 16:14:03 +01:00
|
|
|
env.Append( LINKFLAGS="-m32" )
|
2009-01-20 16:22:09 +01:00
|
|
|
|
|
|
|
|
2009-01-18 21:32:00 +01:00
|
|
|
# --- check system ---
|
|
|
|
|
2009-03-17 15:22:26 +01:00
|
|
|
def getGitVersion():
|
|
|
|
if not os.path.exists( ".git" ):
|
|
|
|
return "nogitversion"
|
|
|
|
|
|
|
|
version = open( ".git/HEAD" ,'r' ).read().strip()
|
|
|
|
if not version.startswith( "ref: " ):
|
|
|
|
return version
|
|
|
|
version = version[5:]
|
|
|
|
f = ".git/" + version
|
|
|
|
if not os.path.exists( f ):
|
|
|
|
return version
|
|
|
|
return open( f , 'r' ).read().strip()
|
|
|
|
|
2009-03-18 19:15:52 +01:00
|
|
|
def getSysInfo():
|
|
|
|
import os, sys
|
|
|
|
if windows:
|
2009-03-19 13:51:04 +01:00
|
|
|
return "windows " + str( sys.getwindowsversion() )
|
2009-03-18 19:15:52 +01:00
|
|
|
else:
|
|
|
|
return " ".join( os.uname() )
|
|
|
|
|
2009-03-18 19:29:14 +01:00
|
|
|
def setupBuildInfoFile( outFile ):
|
2009-03-17 15:22:26 +01:00
|
|
|
version = getGitVersion()
|
2009-03-18 19:15:52 +01:00
|
|
|
sysInfo = getSysInfo()
|
2009-03-17 15:22:26 +01:00
|
|
|
contents = "#include \"stdafx.h\"\n"
|
|
|
|
contents += "#include <iostream>\n"
|
2009-04-20 20:23:42 +02:00
|
|
|
contents += "namespace mongo { const char * gitVersion(){ return \"" + version + "\"; } }\n"
|
|
|
|
contents += "namespace mongo { const char * sysInfo(){ return \"" + sysInfo + "\"; } }\n"
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-03-17 15:22:26 +01:00
|
|
|
if os.path.exists( outFile ) and open( outFile ).read().strip() == contents.strip():
|
|
|
|
return
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-03-17 15:22:26 +01:00
|
|
|
out = open( outFile , 'w' )
|
|
|
|
out.write( contents )
|
2009-03-18 19:15:52 +01:00
|
|
|
out.close()
|
2009-03-17 15:22:26 +01:00
|
|
|
|
2009-03-18 19:29:14 +01:00
|
|
|
setupBuildInfoFile( "buildinfo.cpp" )
|
2009-03-17 15:22:26 +01:00
|
|
|
|
2009-04-28 14:47:56 +02:00
|
|
|
def bigLibString( myenv ):
|
|
|
|
s = str( myenv["LIBS"] )
|
|
|
|
if 'SLIBS' in myenv._dict:
|
|
|
|
s += str( myenv["SLIBS"] )
|
|
|
|
return s
|
2009-06-01 17:28:03 +02:00
|
|
|
|
2009-04-28 14:47:56 +02:00
|
|
|
|
2009-02-04 15:17:15 +01:00
|
|
|
def doConfigure( myenv , needJava=True , needPcre=True , shell=False ):
|
2009-02-01 23:39:07 +01:00
|
|
|
conf = Configure(myenv)
|
2009-02-04 15:41:52 +01:00
|
|
|
myenv["LINKFLAGS_CLEAN"] = list( myenv["LINKFLAGS"] )
|
|
|
|
myenv["LIBS_CLEAN"] = list( myenv["LIBS"] )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-05-28 19:19:02 +02:00
|
|
|
if 'CheckCXX' in dir( conf ):
|
|
|
|
if not conf.CheckCXX():
|
2009-05-28 19:19:19 +02:00
|
|
|
print( "c++ compiler not installed!" )
|
2009-05-28 19:19:02 +02:00
|
|
|
Exit(1)
|
2009-05-28 19:16:03 +02:00
|
|
|
|
2009-02-17 18:24:47 +01:00
|
|
|
if nix and not shell:
|
|
|
|
if not conf.CheckLib( "stdc++" ):
|
|
|
|
print( "can't find stdc++ library which is needed" );
|
|
|
|
Exit(1)
|
|
|
|
|
2009-04-01 04:05:53 +02:00
|
|
|
def myCheckLib( poss , failIfNotFound=False , java=False , staticOnly=False):
|
2009-01-28 23:27:12 +01:00
|
|
|
|
2009-02-01 23:39:07 +01:00
|
|
|
if type( poss ) != types.ListType :
|
|
|
|
poss = [poss]
|
2009-01-28 23:27:12 +01:00
|
|
|
|
2009-02-04 00:08:38 +01:00
|
|
|
allPlaces = [];
|
|
|
|
if nix and release:
|
2009-02-01 23:39:07 +01:00
|
|
|
allPlaces += myenv["LIBPATH"]
|
|
|
|
if not force64:
|
|
|
|
allPlaces += [ "/usr/lib" , "/usr/local/lib" ]
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-02-01 23:39:07 +01:00
|
|
|
for p in poss:
|
|
|
|
for loc in allPlaces:
|
|
|
|
fullPath = loc + "/lib" + p + ".a"
|
|
|
|
if os.path.exists( fullPath ):
|
2009-02-08 16:42:10 +01:00
|
|
|
myenv['_LIBFLAGS']='${_stripixes(LIBLINKPREFIX, LIBS, LIBLINKSUFFIX, LIBPREFIXES, LIBSUFFIXES, __env__)} $SLIBS'
|
|
|
|
myenv.Append( SLIBS=" " + fullPath + " " )
|
2009-02-01 23:39:07 +01:00
|
|
|
return True
|
2009-01-18 21:32:00 +01:00
|
|
|
|
2009-02-04 15:21:39 +01:00
|
|
|
|
2009-05-22 19:40:32 +02:00
|
|
|
if release and not java and not windows and failIfNotFound:
|
2009-05-29 13:32:30 +02:00
|
|
|
print( "ERROR: can't find static version of: " + str( poss ) + " in: " + str( allPlaces ) )
|
2009-02-04 15:49:57 +01:00
|
|
|
Exit(1)
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-04-01 04:05:53 +02:00
|
|
|
res = not staticOnly and conf.CheckLib( poss )
|
2009-02-04 15:21:39 +01:00
|
|
|
if res:
|
|
|
|
return True
|
|
|
|
|
|
|
|
if failIfNotFound:
|
2009-02-17 18:18:13 +01:00
|
|
|
print( "can't find " + str( poss ) + " in " + str( myenv["LIBPATH"] ) )
|
2009-02-04 15:21:39 +01:00
|
|
|
Exit(1)
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-02-04 15:21:39 +01:00
|
|
|
return False
|
2009-02-01 23:39:07 +01:00
|
|
|
|
2009-02-04 15:17:15 +01:00
|
|
|
if needPcre and not conf.CheckCXXHeader( 'pcrecpp.h' ):
|
2009-02-01 23:39:07 +01:00
|
|
|
print( "can't find pcre" )
|
2009-01-27 15:37:33 +01:00
|
|
|
Exit(1)
|
2009-01-25 16:01:43 +01:00
|
|
|
|
2009-02-01 23:39:07 +01:00
|
|
|
if not conf.CheckCXXHeader( "boost/filesystem/operations.hpp" ):
|
|
|
|
print( "can't find boost headers" )
|
2009-02-03 23:19:00 +01:00
|
|
|
if shell:
|
|
|
|
print( "\tshell might not compile" )
|
|
|
|
else:
|
|
|
|
Exit(1)
|
2009-01-27 17:38:41 +01:00
|
|
|
|
2009-03-02 19:35:34 +01:00
|
|
|
if conf.CheckCXXHeader( "boost/asio.hpp" ):
|
2009-04-21 15:48:34 +02:00
|
|
|
# TODO: turn this back on when ASIO working
|
2009-04-22 17:12:13 +02:00
|
|
|
myenv.Append( CPPDEFINES=[ "USE_ASIO_OFF" ] )
|
2009-03-02 22:49:05 +01:00
|
|
|
else:
|
|
|
|
print( "WARNING: old version of boost - you should consider upgrading" )
|
2009-03-02 19:35:34 +01:00
|
|
|
|
2009-02-01 23:39:07 +01:00
|
|
|
for b in boostLibs:
|
|
|
|
l = "boost_" + b
|
2009-02-04 15:49:57 +01:00
|
|
|
myCheckLib( [ l + "-mt" , l ] , release or not shell)
|
2009-02-01 23:39:07 +01:00
|
|
|
|
2009-02-04 15:17:15 +01:00
|
|
|
if needJava:
|
2009-02-02 00:41:25 +01:00
|
|
|
for j in javaLibs:
|
2009-02-04 15:17:15 +01:00
|
|
|
myCheckLib( j , True , True )
|
2009-01-28 23:27:12 +01:00
|
|
|
|
2009-02-04 15:17:15 +01:00
|
|
|
if nix and needPcre:
|
2009-02-01 23:39:07 +01:00
|
|
|
myCheckLib( "pcrecpp" , True )
|
|
|
|
myCheckLib( "pcre" , True )
|
2009-06-01 17:28:03 +02:00
|
|
|
|
2009-04-01 04:05:53 +02:00
|
|
|
myenv["_HAVEPCAP"] = myCheckLib( "pcap", staticOnly=release )
|
2009-03-12 14:30:14 +01:00
|
|
|
|
2009-05-11 19:10:26 +02:00
|
|
|
# this is outside of usesm block so don't have to rebuild for java
|
|
|
|
if windows:
|
|
|
|
myenv.Append( CPPDEFINES=[ "XP_WIN" ] )
|
|
|
|
else:
|
|
|
|
myenv.Append( CPPDEFINES=[ "XP_UNIX" ] )
|
|
|
|
|
2009-04-23 23:40:43 +02:00
|
|
|
if usesm:
|
2009-05-11 19:10:26 +02:00
|
|
|
|
2009-04-28 14:47:56 +02:00
|
|
|
myCheckLib( [ "js" , "mozjs" ] , True )
|
2009-05-11 19:10:26 +02:00
|
|
|
mozHeader = "js"
|
2009-04-28 14:47:56 +02:00
|
|
|
if bigLibString(myenv).find( "mozjs" ) >= 0:
|
|
|
|
myenv.Append( CPPDEFINES=[ "MOZJS" ] )
|
2009-05-11 19:10:26 +02:00
|
|
|
mozHeader = "mozjs"
|
|
|
|
|
|
|
|
if not conf.CheckHeader( mozHeader + "/jsapi.h" ):
|
|
|
|
if conf.CheckHeader( "jsapi.h" ):
|
|
|
|
myenv.Append( CPPDEFINES=[ "OLDJS" ] )
|
|
|
|
else:
|
|
|
|
print( "no spider monkey headers!" )
|
|
|
|
Exit(1)
|
2009-04-23 23:40:43 +02:00
|
|
|
|
2009-02-12 03:05:28 +01:00
|
|
|
if shell:
|
2009-02-12 05:16:29 +01:00
|
|
|
haveReadLine = False
|
|
|
|
if darwin:
|
|
|
|
myenv.Append( CPPDEFINES=[ "USE_READLINE" ] )
|
2009-03-04 14:18:50 +01:00
|
|
|
if force64:
|
|
|
|
myCheckLib( "readline" , True )
|
|
|
|
myCheckLib( "ncurses" , True )
|
|
|
|
else:
|
|
|
|
myenv.Append( LINKFLAGS=" /usr/lib/libreadline.dylib " )
|
2009-05-29 18:08:51 +02:00
|
|
|
elif myCheckLib( "readline" , release and nix , staticOnly=release ):
|
2009-02-12 03:05:28 +01:00
|
|
|
myenv.Append( CPPDEFINES=[ "USE_READLINE" ] )
|
2009-06-29 19:09:30 +02:00
|
|
|
myCheckLib( "ncurses" , staticOnly=release )
|
2009-04-17 22:23:01 +02:00
|
|
|
myCheckLib( "tinfo" , staticOnly=release )
|
2009-02-12 03:16:08 +01:00
|
|
|
else:
|
2009-05-29 13:32:30 +02:00
|
|
|
print( "warning: no readline, shell will be a bit ugly" )
|
2009-01-18 21:32:00 +01:00
|
|
|
|
2009-03-25 18:22:09 +01:00
|
|
|
if linux:
|
|
|
|
myCheckLib( "rt" , True )
|
|
|
|
|
2009-05-27 16:44:45 +02:00
|
|
|
# requires ports devel/libexecinfo to be installed
|
|
|
|
if freebsd:
|
|
|
|
myCheckLib( "execinfo", True )
|
|
|
|
env.Append( LIBS=[ "execinfo" ] )
|
|
|
|
|
2009-02-01 23:39:07 +01:00
|
|
|
# this will add it iff it exists and works
|
|
|
|
myCheckLib( "boost_system-mt" )
|
|
|
|
|
|
|
|
return conf.Finish()
|
|
|
|
|
|
|
|
env = doConfigure( env )
|
2009-01-27 04:19:15 +01:00
|
|
|
|
|
|
|
# --- js concat ---
|
|
|
|
|
|
|
|
def concatjs(target, source, env):
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
outFile = str( target[0] )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
fullSource = ""
|
|
|
|
|
|
|
|
for s in source:
|
|
|
|
f = open( str(s) , 'r' )
|
|
|
|
for l in f:
|
|
|
|
fullSource += l
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
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):
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
outFile = str( target[0] )
|
|
|
|
if len( source ) != 1:
|
|
|
|
raise Exception( "wrong" )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
h = "const char * jsconcatcode = \n"
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
for l in open( str(source[0]) , 'r' ):
|
|
|
|
l = l.strip()
|
|
|
|
l = l.partition( "//" )[0]
|
|
|
|
l = l.replace( '\\' , "\\\\" )
|
|
|
|
l = l.replace( '"' , "\\\"" )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
|
|
|
|
h += '"' + l + "\\n\"\n "
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 04:19:15 +01:00
|
|
|
h += ";\n\n"
|
|
|
|
|
|
|
|
out = open( outFile , 'w' )
|
|
|
|
out.write( h )
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
jshBuilder = Builder(action = jsToH,
|
2009-04-30 15:09:12 +02:00
|
|
|
suffix = '.cpp',
|
2009-01-27 04:19:15 +01:00
|
|
|
src_suffix = '.jsall')
|
|
|
|
|
|
|
|
env.Append( BUILDERS={'JSHeader' : jshBuilder})
|
|
|
|
|
|
|
|
|
2009-01-18 21:32:00 +01:00
|
|
|
# --- targets ----
|
2009-01-08 00:05:22 +01:00
|
|
|
|
2009-05-11 20:57:26 +02:00
|
|
|
def removeIfInList( lst , thing ):
|
|
|
|
if thing in lst:
|
|
|
|
lst.remove( thing )
|
|
|
|
|
2009-01-13 15:56:18 +01:00
|
|
|
clientEnv = env.Clone();
|
2009-01-30 22:21:30 +01:00
|
|
|
clientEnv.Append( CPPPATH=["../"] )
|
2009-05-28 17:16:19 +02:00
|
|
|
clientEnv.Prepend( LIBS=[ "mongoclient"] )
|
2009-01-13 15:56:18 +01:00
|
|
|
clientEnv.Append( LIBPATH=["."] )
|
2009-05-11 20:57:26 +02:00
|
|
|
l = clientEnv[ "LIBS" ]
|
|
|
|
removeIfInList( l , "pcre" )
|
|
|
|
removeIfInList( l , "pcrecpp" )
|
2009-01-13 15:56:18 +01:00
|
|
|
|
2009-01-15 16:08:20 +01:00
|
|
|
testEnv = env.Clone()
|
|
|
|
testEnv.Append( CPPPATH=["../"] )
|
2009-05-28 17:16:19 +02:00
|
|
|
testEnv.Prepend( LIBS=[ "mongotestfiles" , "unittest" ] )
|
2009-01-15 16:08:20 +01:00
|
|
|
testEnv.Append( LIBPATH=["."] )
|
|
|
|
|
2009-01-12 21:27:55 +01:00
|
|
|
|
|
|
|
# ----- TARGETS ------
|
|
|
|
|
2009-01-06 00:19:56 +01:00
|
|
|
|
2009-01-12 16:34:12 +01:00
|
|
|
# main db target
|
2009-03-27 18:45:48 +01:00
|
|
|
mongod = env.Program( "mongod" , commonFiles + coreDbFiles + serverOnlyFiles + [ "db/db.cpp" ] )
|
|
|
|
Default( mongod )
|
2009-01-12 16:34:12 +01:00
|
|
|
|
|
|
|
# tools
|
2009-05-20 17:39:12 +02:00
|
|
|
allToolFiles = commonFiles + coreDbFiles + serverOnlyFiles + [ "client/gridfs.cpp", "tools/Tool.cpp" ]
|
2009-01-27 21:16:09 +01:00
|
|
|
env.Program( "mongodump" , allToolFiles + [ "tools/dump.cpp" ] )
|
2009-02-09 17:24:21 +01:00
|
|
|
env.Program( "mongorestore" , allToolFiles + [ "tools/restore.cpp" ] )
|
2009-02-08 16:37:39 +01:00
|
|
|
|
2009-02-02 18:17:20 +01:00
|
|
|
env.Program( "mongoexport" , allToolFiles + [ "tools/export.cpp" ] )
|
2009-01-29 19:01:45 +01:00
|
|
|
env.Program( "mongoimportjson" , allToolFiles + [ "tools/importJSON.cpp" ] )
|
2009-01-06 00:19:56 +01:00
|
|
|
|
2009-02-08 16:37:39 +01:00
|
|
|
env.Program( "mongofiles" , allToolFiles + [ "tools/files.cpp" ] )
|
|
|
|
|
2009-04-02 21:10:52 +02:00
|
|
|
env.Program( "mongobridge" , allToolFiles + [ "tools/bridge.cpp" ] )
|
|
|
|
|
2009-02-13 15:22:04 +01:00
|
|
|
# mongos
|
2009-03-11 22:28:49 +01:00
|
|
|
mongos = env.Program( "mongos" , commonFiles + coreDbFiles + coreServerFiles + shardServerFiles )
|
2009-03-02 15:13:20 +01:00
|
|
|
|
2009-01-12 16:34:12 +01:00
|
|
|
# c++ library
|
2009-02-10 16:48:52 +01:00
|
|
|
clientLibName = str( env.Library( "mongoclient" , allClientFiles )[0] )
|
2009-01-15 16:08:20 +01:00
|
|
|
env.Library( "mongotestfiles" , commonFiles + coreDbFiles + serverOnlyFiles )
|
2009-01-12 21:27:55 +01:00
|
|
|
|
2009-01-29 15:19:51 +01:00
|
|
|
clientTests = []
|
|
|
|
|
2009-01-13 15:15:47 +01:00
|
|
|
# examples
|
2009-01-29 15:19:51 +01:00
|
|
|
clientTests += [ clientEnv.Program( "firstExample" , [ "client/examples/first.cpp" ] ) ]
|
|
|
|
clientTests += [ clientEnv.Program( "secondExample" , [ "client/examples/second.cpp" ] ) ]
|
2009-01-29 16:30:25 +01:00
|
|
|
clientTests += [ clientEnv.Program( "whereExample" , [ "client/examples/whereExample.cpp" ] ) ]
|
2009-01-29 15:19:51 +01:00
|
|
|
clientTests += [ clientEnv.Program( "authTest" , [ "client/examples/authTest.cpp" ] ) ]
|
2009-01-12 21:27:55 +01:00
|
|
|
|
2009-01-13 15:15:47 +01:00
|
|
|
# testing
|
2009-01-17 15:22:55 +01:00
|
|
|
test = testEnv.Program( "test" , Glob( "dbtests/*.cpp" ) )
|
2009-02-11 19:17:52 +01:00
|
|
|
perftest = testEnv.Program( "perftest", "dbtests/perf/perftest.cpp" )
|
2009-01-29 15:19:51 +01:00
|
|
|
clientTests += [ clientEnv.Program( "clientTest" , [ "client/examples/clientTest.cpp" ] ) ]
|
2009-01-12 21:27:55 +01:00
|
|
|
|
2009-02-13 22:18:57 +01:00
|
|
|
# --- sniffer ---
|
2009-03-12 14:30:14 +01:00
|
|
|
if darwin or clientEnv["_HAVEPCAP"]:
|
2009-02-13 22:18:57 +01:00
|
|
|
sniffEnv = clientEnv.Clone()
|
|
|
|
sniffEnv.Append( LIBS=[ "pcap" ] )
|
|
|
|
sniffEnv.Program( "mongosniff" , "tools/sniffer.cpp" )
|
|
|
|
|
2009-01-27 17:27:34 +01:00
|
|
|
# --- shell ---
|
|
|
|
|
2009-05-02 03:25:26 +02:00
|
|
|
env.JSConcat( "shell/mongo.jsall" , Glob( "shell/*.js" ) )
|
|
|
|
env.JSHeader( "shell/mongo.jsall" )
|
|
|
|
|
2009-01-27 17:27:34 +01:00
|
|
|
shellEnv = env.Clone();
|
2009-02-01 23:39:07 +01:00
|
|
|
|
2009-02-05 18:42:35 +01:00
|
|
|
if release and ( ( darwin and force64 ) or linux64 ):
|
2009-02-01 23:39:07 +01:00
|
|
|
shellEnv["LINKFLAGS"] = env["LINKFLAGS_CLEAN"]
|
|
|
|
shellEnv["LIBS"] = env["LIBS_CLEAN"]
|
2009-02-05 18:42:35 +01:00
|
|
|
shellEnv["SLIBS"] = ""
|
2009-02-01 23:39:07 +01:00
|
|
|
|
2009-02-09 20:30:45 +01:00
|
|
|
if noshell:
|
|
|
|
print( "not building shell" )
|
2009-02-12 03:05:28 +01:00
|
|
|
elif not onlyServer:
|
2009-05-13 23:00:02 +02:00
|
|
|
weird = force64
|
2009-02-12 03:05:28 +01:00
|
|
|
|
|
|
|
if force64:
|
2009-01-27 19:19:35 +01:00
|
|
|
shellEnv["CFLAGS"].remove("-m64")
|
|
|
|
shellEnv["CXXFLAGS"].remove("-m64")
|
|
|
|
shellEnv["LINKFLAGS"].remove("-m64")
|
|
|
|
shellEnv["CPPPATH"].remove( "/usr/64/include" )
|
|
|
|
shellEnv["LIBPATH"].remove( "/usr/64/lib" )
|
|
|
|
shellEnv.Append( CPPPATH=[ "/sw/include" , "/opt/local/include"] )
|
2009-05-18 16:22:51 +02:00
|
|
|
shellEnv.Append( LIBPATH=[ "/sw/lib/", "/opt/local/lib" , "/usr/lib" ] )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-01-27 17:27:34 +01:00
|
|
|
l = shellEnv["LIBS"]
|
2009-01-27 19:19:35 +01:00
|
|
|
if linux64:
|
2009-02-05 18:42:35 +01:00
|
|
|
removeIfInList( l , "java" )
|
|
|
|
removeIfInList( l , "jvm" )
|
2009-02-02 00:41:25 +01:00
|
|
|
|
2009-02-01 23:39:07 +01:00
|
|
|
removeIfInList( l , "pcre" )
|
|
|
|
removeIfInList( l , "pcrecpp" )
|
2009-01-27 17:27:34 +01:00
|
|
|
|
2009-02-12 03:05:28 +01:00
|
|
|
if windows:
|
|
|
|
shellEnv.Append( LIBS=["winmm.lib"] )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-05-14 05:15:59 +02:00
|
|
|
coreShellFiles = [ "shell/dbshell.cpp" , "shell/utils.cpp" ]
|
2009-05-08 15:15:56 +02:00
|
|
|
|
2009-02-12 03:05:28 +01:00
|
|
|
if weird:
|
2009-05-08 15:15:56 +02:00
|
|
|
shell32BitFiles = coreShellFiles
|
2009-02-12 03:05:28 +01:00
|
|
|
for f in allClientFiles:
|
|
|
|
shell32BitFiles.append( "32bit/" + str( f ) )
|
2009-01-27 17:27:34 +01:00
|
|
|
|
2009-02-12 03:05:28 +01:00
|
|
|
shellEnv.VariantDir( "32bit" , "." )
|
|
|
|
else:
|
|
|
|
shellEnv.Append( LIBPATH=[ "." ] )
|
2009-02-02 00:26:18 +01:00
|
|
|
|
2009-02-04 15:21:39 +01:00
|
|
|
shellEnv = doConfigure( shellEnv , needPcre=False , needJava=False , shell=True )
|
2009-02-02 00:26:18 +01:00
|
|
|
|
2009-02-12 03:05:28 +01:00
|
|
|
if weird:
|
2009-03-13 15:12:52 +01:00
|
|
|
mongo = shellEnv.Program( "mongo" , shell32BitFiles )
|
2009-02-12 03:05:28 +01:00
|
|
|
else:
|
2009-05-27 23:37:59 +02:00
|
|
|
shellEnv.Prepend( LIBS=[ "mongoclient"] )
|
2009-05-08 15:15:56 +02:00
|
|
|
mongo = shellEnv.Program( "mongo" , coreShellFiles )
|
2009-02-12 03:05:28 +01:00
|
|
|
|
2009-01-27 17:27:34 +01:00
|
|
|
|
2009-01-17 15:22:55 +01:00
|
|
|
# ---- RUNNING TESTS ----
|
|
|
|
|
2009-03-13 19:32:38 +01:00
|
|
|
testEnv.Alias( "dummySmokeSideEffect", [], [] )
|
|
|
|
|
2009-03-13 15:12:52 +01:00
|
|
|
def addSmoketest( name, deps, actions ):
|
2009-05-29 19:36:42 +02:00
|
|
|
if type( actions ) == type( list() ):
|
|
|
|
actions = [ testSetup ] + actions
|
|
|
|
else:
|
|
|
|
actions = [ testSetup, actions ]
|
2009-03-13 15:12:52 +01:00
|
|
|
testEnv.Alias( name, deps, actions )
|
|
|
|
testEnv.AlwaysBuild( name )
|
|
|
|
# Prevent smoke tests from running in parallel
|
|
|
|
testEnv.SideEffect( "dummySmokeSideEffect", name )
|
|
|
|
|
2009-05-11 18:41:49 +02:00
|
|
|
def ensureDir( name ):
|
|
|
|
d = os.path.dirname( name )
|
|
|
|
if not os.path.exists( d ):
|
|
|
|
print( "Creating dir: " + name );
|
|
|
|
os.makedirs( d )
|
|
|
|
if not os.path.exists( d ):
|
|
|
|
print( "Failed to create dir: " + name );
|
|
|
|
Exit( 1 )
|
|
|
|
|
2009-05-29 19:36:42 +02:00
|
|
|
def ensureTestDirs():
|
2009-05-11 18:41:49 +02:00
|
|
|
ensureDir( "/tmp/unittest/" )
|
2009-05-29 19:36:42 +02:00
|
|
|
ensureDir( "/data/" )
|
|
|
|
ensureDir( "/data/db/" )
|
|
|
|
|
|
|
|
def testSetup( env , target , source ):
|
|
|
|
ensureTestDirs()
|
2009-01-29 15:19:51 +01:00
|
|
|
|
2009-06-12 02:13:14 +02:00
|
|
|
if len( COMMAND_LINE_TARGETS ) == 1 and str( COMMAND_LINE_TARGETS[0] ) == "test":
|
|
|
|
ensureDir( "/tmp/unittest/" );
|
|
|
|
|
2009-05-29 19:36:42 +02:00
|
|
|
addSmoketest( "smoke", [ "test" ] , [ test[ 0 ].abspath ] )
|
2009-04-20 22:00:28 +02:00
|
|
|
addSmoketest( "smokePerf", [ "perftest" ] , [ perftest[ 0 ].abspath ] )
|
2009-02-11 19:17:52 +01:00
|
|
|
|
2009-05-11 18:41:49 +02:00
|
|
|
clientExec = [ x[0].abspath for x in clientTests ]
|
|
|
|
def runClientTests( env, target, source ):
|
|
|
|
global clientExec
|
|
|
|
global mongodForTestsPort
|
|
|
|
import subprocess
|
|
|
|
for i in clientExec:
|
2009-05-19 16:55:13 +02:00
|
|
|
if subprocess.call( [ i, "--port", mongodForTestsPort ] ) != 0:
|
2009-05-11 18:41:49 +02:00
|
|
|
return True
|
2009-05-19 16:55:13 +02:00
|
|
|
if subprocess.Popen( [ mongod[0].abspath, "msg", "ping", mongodForTestsPort ], stdout=subprocess.PIPE ).communicate()[ 0 ].count( "****ok" ) == 0:
|
|
|
|
return True
|
|
|
|
if subprocess.call( [ mongod[0].abspath, "msg", "ping", mongodForTestsPort ] ) != 0:
|
|
|
|
return True
|
2009-05-11 18:41:49 +02:00
|
|
|
return False
|
|
|
|
addSmoketest( "smokeClient" , clientExec, runClientTests )
|
2009-03-13 15:12:52 +01:00
|
|
|
addSmoketest( "mongosTest" , [ mongos[0].abspath ] , [ mongos[0].abspath + " --test" ] )
|
|
|
|
|
|
|
|
def jsSpec( suffix ):
|
|
|
|
import os.path
|
|
|
|
args = [ os.path.dirname( mongo[0].abspath ), "jstests" ] + suffix
|
|
|
|
return apply( os.path.join, args )
|
|
|
|
|
|
|
|
def jsDirTestSpec( dir ):
|
|
|
|
return mongo[0].abspath + " --nodb " + jsSpec( [ dir, "*.js" ] )
|
|
|
|
|
2009-05-11 19:40:55 +02:00
|
|
|
def runShellTest( env, target, source ):
|
|
|
|
global mongodForTestsPort
|
|
|
|
import subprocess
|
|
|
|
target = str( target[0] )
|
|
|
|
if target == "smokeJs":
|
2009-05-28 00:42:37 +02:00
|
|
|
spec = [ jsSpec( [ "_runner.js" ] ) ]
|
2009-05-11 19:40:55 +02:00
|
|
|
elif target == "smokeQuota":
|
2009-05-28 00:42:37 +02:00
|
|
|
g = Glob( jsSpec( [ "quota", "*.js" ] ) )
|
|
|
|
spec = [ x.abspath for x in g ]
|
|
|
|
elif target == "smokeJsPerf":
|
|
|
|
g = Glob( jsSpec( [ "perf", "*.js" ] ) )
|
|
|
|
spec = [ x.abspath for x in g ]
|
2009-05-11 19:40:55 +02:00
|
|
|
else:
|
|
|
|
print( "invalid target for runShellTest()" )
|
|
|
|
Exit( 1 )
|
2009-05-28 00:42:37 +02:00
|
|
|
return subprocess.call( [ mongo[0].abspath, "--port", mongodForTestsPort ] + spec )
|
2009-05-11 19:40:55 +02:00
|
|
|
|
2009-06-01 20:04:12 +02:00
|
|
|
def add_exe(target):
|
|
|
|
if windows:
|
|
|
|
return target + ".exe"
|
|
|
|
return target
|
|
|
|
|
2009-03-13 15:12:52 +01:00
|
|
|
# These tests require the mongo shell
|
2009-03-26 19:55:00 +01:00
|
|
|
if not onlyServer and not noshell:
|
2009-06-01 20:04:12 +02:00
|
|
|
addSmoketest( "smokeJs", [add_exe("mongo")], runShellTest )
|
2009-03-13 15:12:52 +01:00
|
|
|
addSmoketest( "smokeClone", [ "mongo", "mongod" ], [ jsDirTestSpec( "clone" ) ] )
|
2009-05-29 21:32:24 +02:00
|
|
|
addSmoketest( "smokeRepl", [ "mongo", "mongod", "mongobridge" ], [ jsDirTestSpec( "repl" ) ] )
|
2009-05-11 16:48:08 +02:00
|
|
|
addSmoketest( "smokeDisk", [ "mongo", "mongod" ], [ jsDirTestSpec( "disk" ) ] )
|
2009-03-13 15:12:52 +01:00
|
|
|
addSmoketest( "smokeSharding", [ "mongo", "mongod", "mongos" ], [ jsDirTestSpec( "sharding" ) ] )
|
2009-05-28 00:42:37 +02:00
|
|
|
addSmoketest( "smokeJsPerf", [ "mongo" ], runShellTest )
|
2009-05-11 20:05:56 +02:00
|
|
|
addSmoketest( "smokeQuota", [ "mongo" ], runShellTest )
|
2009-05-20 17:29:40 +02:00
|
|
|
addSmoketest( "smokeTool", [ "mongo" ], [ jsDirTestSpec( "tool" ) ] )
|
2009-03-13 15:12:52 +01:00
|
|
|
|
|
|
|
mongodForTests = None
|
2009-05-11 18:41:49 +02:00
|
|
|
mongodForTestsPort = "27017"
|
2009-03-13 15:12:52 +01:00
|
|
|
|
|
|
|
def startMongodForTests( env, target, source ):
|
|
|
|
global mongodForTests
|
2009-05-11 18:41:49 +02:00
|
|
|
global mongodForTestsPort
|
2009-03-27 18:45:48 +01:00
|
|
|
global mongod
|
2009-03-13 15:12:52 +01:00
|
|
|
if mongodForTests:
|
|
|
|
return
|
2009-05-11 18:41:49 +02:00
|
|
|
mongodForTestsPort = "40000"
|
|
|
|
import os
|
2009-05-29 19:36:42 +02:00
|
|
|
ensureTestDirs()
|
2009-05-11 18:41:49 +02:00
|
|
|
dirName = "/data/db/sconsTests/"
|
|
|
|
ensureDir( dirName )
|
2009-03-13 15:12:52 +01:00
|
|
|
from subprocess import Popen
|
2009-05-11 18:41:49 +02:00
|
|
|
mongodForTests = Popen( [ mongod[0].abspath, "--port", mongodForTestsPort, "--dbpath", dirName ] )
|
2009-03-13 15:12:52 +01:00
|
|
|
# Wait for mongod to start
|
2009-05-19 20:02:14 +02:00
|
|
|
import time
|
|
|
|
time.sleep( 2 )
|
2009-04-02 17:36:02 +02:00
|
|
|
if mongodForTests.poll() is not None:
|
|
|
|
print( "Failed to start mongod" )
|
|
|
|
mongodForTests = None
|
|
|
|
Exit( 1 )
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-03-13 15:12:52 +01:00
|
|
|
def stopMongodForTests():
|
|
|
|
global mongodForTests
|
|
|
|
if not mongodForTests:
|
|
|
|
return
|
2009-04-02 17:36:02 +02:00
|
|
|
if mongodForTests.poll() is not None:
|
|
|
|
print( "Failed to start mongod" )
|
|
|
|
mongodForTests = None
|
|
|
|
Exit( 1 )
|
2009-03-13 15:12:52 +01:00
|
|
|
try:
|
|
|
|
# This function not available in Python 2.5
|
|
|
|
mongodForTests.terminate()
|
|
|
|
except AttributeError:
|
|
|
|
from os import kill
|
|
|
|
kill( mongodForTests.pid, 15 )
|
|
|
|
mongodForTests.wait()
|
|
|
|
|
2009-06-01 20:04:12 +02:00
|
|
|
testEnv.Alias( "startMongod", [add_exe("mongod")], [startMongodForTests] );
|
2009-03-13 15:12:52 +01:00
|
|
|
testEnv.AlwaysBuild( "startMongod" );
|
2009-05-19 20:02:14 +02:00
|
|
|
testEnv.SideEffect( "dummySmokeSideEffect", "startMongod" )
|
2009-03-13 15:12:52 +01:00
|
|
|
|
|
|
|
def addMongodReqTargets( env, target, source ):
|
2009-04-15 23:53:01 +02:00
|
|
|
mongodReqTargets = [ "smokeClient", "smokeJs", "smokeQuota" ]
|
2009-03-13 15:12:52 +01:00
|
|
|
for target in mongodReqTargets:
|
|
|
|
testEnv.Depends( target, "startMongod" )
|
|
|
|
testEnv.Depends( "smokeAll", target )
|
|
|
|
|
|
|
|
testEnv.Alias( "addMongodReqTargets", [], [addMongodReqTargets] )
|
|
|
|
testEnv.AlwaysBuild( "addMongodReqTargets" )
|
|
|
|
|
2009-05-20 17:33:19 +02:00
|
|
|
testEnv.Alias( "smokeAll", [ "smoke", "mongosTest", "smokeClone", "smokeRepl", "addMongodReqTargets", "smokeDisk", "smokeSharding", "smokeTool" ] )
|
2009-03-13 15:12:52 +01:00
|
|
|
testEnv.AlwaysBuild( "smokeAll" )
|
|
|
|
|
2009-04-02 22:56:39 +02:00
|
|
|
def addMongodReqNoJsTargets( env, target, source ):
|
|
|
|
mongodReqTargets = [ "smokeClient" ]
|
|
|
|
for target in mongodReqTargets:
|
|
|
|
testEnv.Depends( target, "startMongod" )
|
|
|
|
testEnv.Depends( "smokeAllNoJs", target )
|
|
|
|
|
|
|
|
testEnv.Alias( "addMongodReqNoJsTargets", [], [addMongodReqNoJsTargets] )
|
|
|
|
testEnv.AlwaysBuild( "addMongodReqNoJsTargets" )
|
|
|
|
|
|
|
|
testEnv.Alias( "smokeAllNoJs", [ "smoke", "mongosTest", "addMongodReqNoJsTargets" ] )
|
|
|
|
testEnv.AlwaysBuild( "smokeAllNoJs" )
|
|
|
|
|
2009-03-13 15:12:52 +01:00
|
|
|
import atexit
|
|
|
|
atexit.register( stopMongodForTests )
|
2009-02-18 16:10:39 +01:00
|
|
|
|
2009-04-22 23:06:31 +02:00
|
|
|
def machine_info(extra_info=""):
|
|
|
|
"""Get a dict representing the "machine" section of a benchmark result.
|
|
|
|
|
|
|
|
ie:
|
|
|
|
{
|
|
|
|
"os_name": "OS X",
|
|
|
|
"os_version": "10.5",
|
|
|
|
"processor": "2.4 GHz Intel Core 2 Duo",
|
|
|
|
"memory": "3 GB 667 MHz DDR2 SDRAM",
|
|
|
|
"extra_info": "Python 2.6"
|
|
|
|
}
|
|
|
|
|
|
|
|
Must have a settings.py file on sys.path that defines "processor" and "memory"
|
|
|
|
variables.
|
|
|
|
"""
|
|
|
|
sys.path.append("")
|
|
|
|
import settings
|
|
|
|
|
|
|
|
machine = {}
|
|
|
|
(machine["os_name"], _, machine["os_version"], _, _) = os.uname()
|
|
|
|
machine["processor"] = settings.processor
|
|
|
|
machine["memory"] = settings.memory
|
|
|
|
machine["extra_info"] = extra_info
|
|
|
|
return machine
|
|
|
|
|
|
|
|
def post_data(data, machine_extra_info="", post_url="http://mongo-db.appspot.com/benchmark"):
|
|
|
|
"""Post a benchmark data point.
|
|
|
|
|
|
|
|
data should be a Python dict that looks like:
|
|
|
|
{
|
|
|
|
"benchmark": {
|
|
|
|
"project": "http://github.com/mongodb/mongo-python-driver",
|
|
|
|
"name": "insert test",
|
|
|
|
"description": "test inserting 10000 documents with the C extension enabled",
|
|
|
|
"tags": ["insert", "python"]
|
|
|
|
},
|
|
|
|
"trial": {
|
|
|
|
"server_hash": "4f5a8d52f47507a70b6c625dfb5dbfc87ba5656a",
|
|
|
|
"client_hash": "8bf2ad3d397cbde745fd92ad41c5b13976fac2b5",
|
|
|
|
"result": 67.5,
|
|
|
|
"extra_info": "some logs or something"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
import json
|
|
|
|
except:
|
|
|
|
import simplejson as json # needed for python < 2.6
|
|
|
|
|
|
|
|
data["machine"] = machine_info(machine_extra_info)
|
2009-05-13 00:43:06 +02:00
|
|
|
print( data )
|
2009-04-22 23:06:31 +02:00
|
|
|
urllib2.urlopen(post_url, urllib.urlencode({"payload": json.dumps(data)}))
|
2009-04-20 22:00:28 +02:00
|
|
|
|
|
|
|
def recordPerformance( env, target, source ):
|
|
|
|
global perftest
|
|
|
|
import subprocess, re
|
|
|
|
p = subprocess.Popen( [ perftest[0].abspath ], stdout=subprocess.PIPE )
|
|
|
|
b = p.communicate()[ 0 ]
|
2009-05-01 16:40:42 +02:00
|
|
|
print( "perftest results:" );
|
|
|
|
print( b );
|
2009-05-07 21:08:26 +02:00
|
|
|
if p.returncode != 0:
|
|
|
|
return True
|
2009-04-20 22:00:28 +02:00
|
|
|
entries = re.findall( "{.*?}", b )
|
2009-05-13 20:33:33 +02:00
|
|
|
import sys
|
2009-04-20 22:00:28 +02:00
|
|
|
for e in entries:
|
|
|
|
matches = re.match( "{'(.*?)': (.*?)}", e )
|
|
|
|
name = matches.group( 1 )
|
|
|
|
val = float( matches.group( 2 ) )
|
|
|
|
sub = { "benchmark": { "project": "http://github.com/mongodb/mongo", "description": "" }, "trial": {} }
|
|
|
|
sub[ "benchmark" ][ "name" ] = name
|
|
|
|
sub[ "benchmark" ][ "tags" ] = [ "c++", re.match( "(.*)__", name ).group( 1 ) ]
|
|
|
|
sub[ "trial" ][ "server_hash" ] = getGitVersion()
|
|
|
|
sub[ "trial" ][ "client_hash" ] = ""
|
|
|
|
sub[ "trial" ][ "result" ] = val
|
2009-05-13 20:33:33 +02:00
|
|
|
try:
|
|
|
|
post_data(sub)
|
|
|
|
except:
|
|
|
|
print( "exception posting perf results" )
|
|
|
|
print( sys.exc_info() )
|
2009-05-07 21:08:26 +02:00
|
|
|
return False
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-04-20 22:00:28 +02:00
|
|
|
addSmoketest( "recordPerf", [ "perftest" ] , [ recordPerformance ] )
|
|
|
|
|
2009-01-12 21:27:55 +01:00
|
|
|
# ---- INSTALL -------
|
|
|
|
|
2009-05-29 04:35:26 +02:00
|
|
|
def getCodeVersion():
|
|
|
|
fullSource = open( "stdafx.cpp" , "r" ).read()
|
|
|
|
allMatches = re.findall( r"versionString.. = \"(.*?)\"" , fullSource );
|
|
|
|
if len(allMatches) != 1:
|
|
|
|
print( "can't find version # in code" )
|
|
|
|
return None
|
|
|
|
return allMatches[0]
|
|
|
|
|
|
|
|
def getDistName( sofar ):
|
|
|
|
global distName
|
2009-05-29 16:21:43 +02:00
|
|
|
global dontReplacePackage
|
|
|
|
|
2009-05-29 04:35:26 +02:00
|
|
|
if distName is not None:
|
|
|
|
return distName
|
|
|
|
|
|
|
|
if str( COMMAND_LINE_TARGETS[0] ) == "s3dist":
|
|
|
|
version = getCodeVersion()
|
|
|
|
if not version.endswith( "+" ):
|
2009-05-29 16:21:43 +02:00
|
|
|
print( "got real code version, doing release build for: " + version )
|
|
|
|
dontReplacePackage = True
|
|
|
|
distName = version
|
|
|
|
return version
|
2009-05-29 04:35:26 +02:00
|
|
|
|
|
|
|
return today.strftime( "%Y-%m-%d" )
|
|
|
|
|
2009-02-06 16:48:39 +01:00
|
|
|
if distBuild:
|
2009-02-08 20:58:52 +01:00
|
|
|
from datetime import date
|
|
|
|
today = date.today()
|
2009-02-11 16:53:51 +01:00
|
|
|
installDir = "mongodb-" + platform + "-" + processor + "-";
|
2009-05-29 04:35:26 +02:00
|
|
|
installDir += getDistName( installDir )
|
2009-02-08 20:58:52 +01:00
|
|
|
print "going to make dist: " + installDir
|
2009-01-12 21:27:55 +01:00
|
|
|
|
2009-02-08 16:37:39 +01:00
|
|
|
# binaries
|
|
|
|
|
2009-05-16 13:17:12 +02:00
|
|
|
allBinaries = []
|
|
|
|
|
2009-02-10 16:48:52 +01:00
|
|
|
def installBinary( e , name ):
|
2009-05-16 13:17:12 +02:00
|
|
|
global allBinaries
|
2009-05-29 19:23:25 +02:00
|
|
|
|
2009-02-10 16:48:52 +01:00
|
|
|
if windows:
|
|
|
|
name += ".exe"
|
2009-05-29 19:23:25 +02:00
|
|
|
|
|
|
|
inst = e.Install( installDir + "/bin" , name )
|
|
|
|
|
2009-05-16 13:17:12 +02:00
|
|
|
allBinaries += [ name ]
|
2009-06-01 22:09:16 +02:00
|
|
|
if linux or solaris:
|
2009-05-29 19:23:25 +02:00
|
|
|
e.AddPostAction( inst, e.Action( 'strip ' + installDir + "/bin/" + name ) )
|
2009-02-08 16:37:39 +01:00
|
|
|
|
2009-02-10 16:48:52 +01:00
|
|
|
installBinary( env , "mongodump" )
|
|
|
|
installBinary( env , "mongorestore" )
|
2009-02-08 16:37:39 +01:00
|
|
|
|
2009-02-10 16:48:52 +01:00
|
|
|
installBinary( env , "mongoexport" )
|
|
|
|
installBinary( env , "mongoimportjson" )
|
|
|
|
|
|
|
|
installBinary( env , "mongofiles" )
|
|
|
|
|
|
|
|
installBinary( env , "mongod" )
|
2009-04-22 18:58:39 +02:00
|
|
|
installBinary( env , "mongos" )
|
2009-02-08 16:37:39 +01:00
|
|
|
|
2009-02-09 20:30:45 +01:00
|
|
|
if not noshell:
|
2009-02-10 16:48:52 +01:00
|
|
|
installBinary( env , "mongo" )
|
2009-01-12 21:27:55 +01:00
|
|
|
|
2009-05-16 13:17:12 +02:00
|
|
|
env.Alias( "all" , allBinaries )
|
|
|
|
|
|
|
|
|
2009-01-27 19:19:35 +01:00
|
|
|
# NOTE: In some cases scons gets confused between installation targets and build
|
|
|
|
# dependencies. Here, we use InstallAs instead of Install to prevent such confusion
|
|
|
|
# on a case-by-case basis.
|
|
|
|
|
2009-01-12 21:27:55 +01:00
|
|
|
#headers
|
2009-02-08 01:20:15 +01:00
|
|
|
for id in [ "", "util/", "db/" , "client/" ]:
|
2009-01-12 21:27:55 +01:00
|
|
|
env.Install( installDir + "/include/mongo/" + id , Glob( id + "*.h" ) )
|
|
|
|
|
|
|
|
#lib
|
2009-02-10 16:48:52 +01:00
|
|
|
env.Install( installDir + "/" + nixLibPrefix, clientLibName )
|
2009-05-16 00:39:53 +02:00
|
|
|
if usejvm:
|
|
|
|
env.Install( installDir + "/" + nixLibPrefix + "/mongo/jars" , Glob( "jars/*" ) )
|
2009-01-12 21:27:55 +01:00
|
|
|
|
2009-02-11 12:39:00 +01:00
|
|
|
#textfiles
|
2009-02-11 17:26:28 +01:00
|
|
|
if distBuild or release:
|
2009-02-11 12:39:00 +01:00
|
|
|
#don't want to install these /usr/local/ for example
|
|
|
|
env.Install( installDir , "distsrc/README" )
|
|
|
|
env.Install( installDir , "distsrc/THIRD-PARTY-NOTICES" )
|
|
|
|
env.Install( installDir , "distsrc/GNU-AGPL-3.0" )
|
|
|
|
|
2009-01-12 21:27:55 +01:00
|
|
|
#final alias
|
|
|
|
env.Alias( "install" , installDir )
|
|
|
|
|
2009-01-17 15:22:55 +01:00
|
|
|
# ---- 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 ):
|
2009-01-18 16:23:57 +01:00
|
|
|
sourceFile = not not search( "\.(h|hpp|c|cpp)\s*$", line )
|
2009-01-17 16:33:43 +01:00
|
|
|
if sourceFile and match( "\+ *\t", line ):
|
2009-01-17 15:22:55 +01:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
env.Alias( "checkSource", [], [ tabs ] )
|
|
|
|
env.AlwaysBuild( "checkSource" )
|
|
|
|
|
|
|
|
def gitPush( env, target, source ):
|
|
|
|
import subprocess
|
|
|
|
return subprocess.call( [ "git", "push" ] )
|
2009-01-26 22:29:19 +01:00
|
|
|
env.Alias( "push", [ ".", "smoke", "checkSource" ], gitPush )
|
2009-01-17 15:22:55 +01:00
|
|
|
env.AlwaysBuild( "push" )
|
2009-01-27 19:08:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
# ---- deploying ---
|
|
|
|
|
2009-02-11 03:37:18 +01:00
|
|
|
def s3push( localName , remoteName=None , remotePrefix=None , fixName=True , platformDir=True ):
|
|
|
|
|
|
|
|
if remotePrefix is None:
|
|
|
|
if distName is None:
|
|
|
|
remotePrefix = "-latest"
|
|
|
|
else:
|
|
|
|
remotePrefix = "-" + distName
|
|
|
|
|
2009-01-27 19:08:44 +01:00
|
|
|
sys.path.append( "." )
|
|
|
|
|
|
|
|
import simples3
|
|
|
|
import settings
|
|
|
|
|
2009-02-02 15:54:11 +01:00
|
|
|
s = simples3.S3Bucket( settings.bucket , settings.id , settings.key )
|
2009-01-27 19:08:44 +01:00
|
|
|
|
|
|
|
if remoteName is None:
|
|
|
|
remoteName = localName
|
2009-04-22 17:12:13 +02:00
|
|
|
|
2009-02-02 04:11:26 +01:00
|
|
|
if fixName:
|
2009-02-06 16:48:39 +01:00
|
|
|
(root,dot,suffix) = localName.rpartition( "." )
|
|
|
|
name = remoteName + "-" + platform + "-" + processor + remotePrefix
|
|
|
|
if dot == "." :
|
|
|
|
name += "." + suffix
|
2009-02-02 04:11:26 +01:00
|
|
|
name = name.lower()
|
|
|
|
else:
|
|
|
|
name = remoteName
|
2009-01-27 19:08:44 +01:00
|
|
|
|
2009-02-06 16:48:39 +01:00
|
|
|
if platformDir:
|
|
|
|
name = platform + "/" + name
|
|
|
|
|
2009-02-11 03:37:18 +01:00
|
|
|
print( "uploading " + localName + " to http://s3.amazonaws.com/" + s.name + "/" + name )
|
2009-05-29 16:21:43 +02:00
|
|
|
if dontReplacePackage:
|
|
|
|
for ( key , modify , etag , size ) in s.listdir( prefix=name ):
|
|
|
|
print( "error: already a file with that name, not uploading" )
|
|
|
|
Exit(2)
|
2009-02-10 16:54:43 +01:00
|
|
|
s.put( name , open( localName , "rb" ).read() , acl="public-read" );
|
2009-02-11 03:37:18 +01:00
|
|
|
print( " done uploading!" )
|
2009-01-27 19:08:44 +01:00
|
|
|
|
|
|
|
def s3shellpush( env , target , source ):
|
|
|
|
s3push( "mongo" , "mongo-shell" )
|
|
|
|
|
|
|
|
env.Alias( "s3shell" , [ "mongo" ] , [ s3shellpush ] )
|
|
|
|
env.AlwaysBuild( "s3shell" )
|
2009-02-02 00:27:04 +01:00
|
|
|
|
|
|
|
def s3dist( env , target , source ):
|
2009-02-11 16:53:51 +01:00
|
|
|
s3push( distFile , "mongodb" )
|
2009-02-02 01:11:45 +01:00
|
|
|
|
|
|
|
env.Append( TARFLAGS=" -z " )
|
2009-02-10 16:07:18 +01:00
|
|
|
if windows:
|
|
|
|
distFile = installDir + ".zip"
|
|
|
|
env.Zip( distFile , installDir )
|
|
|
|
else:
|
|
|
|
distFile = installDir + ".tgz"
|
|
|
|
env.Tar( distFile , installDir )
|
2009-02-02 00:27:04 +01:00
|
|
|
|
2009-02-06 22:51:14 +01:00
|
|
|
env.Alias( "dist" , distFile )
|
2009-02-02 01:11:45 +01:00
|
|
|
env.Alias( "s3dist" , [ "install" , distFile ] , [ s3dist ] )
|
2009-02-02 00:27:04 +01:00
|
|
|
env.AlwaysBuild( "s3dist" )
|
|
|
|
|
2009-04-22 17:12:13 +02:00
|
|
|
def clean_old_dist_builds(env, target, source):
|
|
|
|
prefix = "mongodb-%s-%s" % (platform, processor)
|
|
|
|
filenames = sorted(os.listdir("."))
|
|
|
|
filenames = [x for x in filenames if x.startswith(prefix)]
|
|
|
|
to_keep = [x for x in filenames if x.endswith(".tgz") or x.endswith(".zip")][-2:]
|
|
|
|
for filename in [x for x in filenames if x not in to_keep]:
|
2009-04-22 17:15:22 +02:00
|
|
|
print "removing %s" % filename
|
2009-04-22 17:12:13 +02:00
|
|
|
try:
|
|
|
|
shutil.rmtree(filename)
|
|
|
|
except:
|
|
|
|
os.remove(filename)
|
|
|
|
|
|
|
|
env.Alias("dist_clean", [], [clean_old_dist_builds])
|
|
|
|
env.AlwaysBuild("dist_clean")
|