blob: 70cb770dea945659e63ed9017349211fb95e1e6d [file] [log] [blame]
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
import os
import Logs
import Utils
import Options
from waflib.Errors import WafError
def options(opt):
opt.tool_options('boost', tooldir=["waf-tools"])
opt.add_option('--enable-ndn-plugins',
help=("Enable NDN plugins (may require patching)"),
dest='enable_ndn_plugins')
def configure(conf):
try:
conf.check_tool('boost')
conf.check_boost(lib = 'iostreams')
except WafError:
conf.env['LIB_BOOST'] = []
if not conf.env['LIB_BOOST']:
conf.report_optional_feature("ndn-abstract", "NDN abstraction", False,
"Required boost libraries not found")
conf.env['ENABLE_NDN_ABSTRACT']=False;
conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
return
conf.env['NDN_plugins'] = []
if Options.options.enable_ndn_plugins:
conf.env['NDN_plugins'] = Options.options.enable_ndn_plugins.split(',')
conf.env['ENABLE_NDN_ABSTRACT']=True;
def build(bld):
deps = ['core', 'network', 'point-to-point']
deps.append ('internet') # Until RttEstimator is moved to network module
if bld.env['ENABLE_PYTHON_BINDINGS']:
deps.append ('visualizer')
if 'topology' in bld.env['NDN_plugins']:
deps.append ('topology-read')
if 'mobility' in bld.env['NDN_plugins']:
deps.append ('mobility')
module = bld.create_ns3_module ('ndnSIM', deps)
module.uselib = 'BOOST BOOST_IOSTREAMS'
headers = bld.new_task_gen(features=['ns3header'])
headers.module = 'ndnSIM'
if not bld.env['ENABLE_NDN_ABSTRACT']:
bld.env['MODULES_NOT_BUILT'].append('ndnSIM')
return
module.source = bld.path.ant_glob(['model/**/*.cc',
'apps/*.cc',
'utils/*.cc',
'helper/**/*.cc',
])
headers.source = [
"helper/ndn-stack-helper.h",
"helper/ndn-app-helper.h",
"helper/ndn-header-helper.h",
"helper/ndn-face-container.h",
"helper/ndn-global-routing-helper.h",
"apps/ndn-app.h",
"model/ndn.h",
"model/pit/ndn-pit.h",
"model/pit/ndn-pit-entry.h",
"model/pit/ndn-pit-entry-incoming-face.h",
"model/pit/ndn-pit-entry-outgoing-face.h",
"model/content-store/ndn-content-store.h",
"model/fib/ndn-fib.h",
"model/fib/ndn-fib-entry.h",
"model/forwarding-strategy/ndn-forwarding-strategy.h",
"model/ndn-face.h",
"model/ndn-app-face.h",
"model/ndn-net-device-face.h",
"model/ndn-interest-header.h",
"model/ndn-content-object-header.h",
"model/ndn-name-components.h",
# "model/ndn-name-components-hash-helper.h",
"utils/batches.h",
# "utils/weights-path-stretch-tag.h",
]
if 'topology' in bld.env['NDN_plugins']:
headers.source.extend ([
"plugins/topology/rocketfuel-weights-reader.h",
"plugins/topology/annotated-topology-reader.h",
])
module.source.extend (bld.path.ant_glob(['plugins/topology/*.cc']))
if 'mobility' in bld.env['NDN_plugins']:
headers.source.extend ([
"plugins/mobility/spring-mobility-model.h",
"plugins/mobility/spring-mobility-helper.h",
])
module.source.extend (bld.path.ant_glob(['plugins/mobility/*.cc']))
tests = bld.create_ns3_module_test_library('ndnSIM')
tests.source = bld.path.ant_glob('test/*.cc');
if bld.env.ENABLE_EXAMPLES:
bld.add_subdirs('examples')
bld.ns3_python_bindings()