blob: bafa76ada617452c29bea3b4fffbae060859de2a [file] [log] [blame]
Ilya Moiseenko1762af72011-07-18 16:43:10 -07001## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
Alexander Afanasyev45b92d42011-08-14 23:11:38 -07003import os
Alexander Afanasyev152660b2013-01-08 09:33:05 -08004from waflib import Logs, Utils, Options, TaskGen, Task
Alexander Afanasyev9de011f2011-11-11 00:55:05 -08005from waflib.Errors import WafError
6
Alexander Afanasyeva65ab322012-10-23 21:43:39 -07007import wutils
8
Alexander Afanasyevb66a89b2013-05-05 00:20:12 -07009REQUIRED_BOOST_LIBS = ['graph']
Alexander Afanasyev3b936292011-09-20 08:45:36 -070010
Alexander Afanasyev152660b2013-01-08 09:33:05 -080011def required_boost_libs(conf):
12 conf.env.REQUIRED_BOOST_LIBS += REQUIRED_BOOST_LIBS
13
14def configure(conf):
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080015 conf.env['ENABLE_NDNSIM']=False;
16
Alexander Afanasyev60c04622014-12-29 20:43:22 -080017 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
18 uselib_store='NDN_CXX', mandatory=True)
19
Alexander Afanasyev3b936292011-09-20 08:45:36 -070020 if not conf.env['LIB_BOOST']:
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080021 conf.report_optional_feature("ndnSIM", "ndnSIM", False,
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070022 "Required boost libraries not found")
Alexander Afanasyev9ab7d672013-08-11 11:02:52 -070023 Logs.error ("ndnSIM will not be build as it requires boost libraries of version at least 1.48")
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -070024 conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070025 return
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080026 else:
Alexander Afanasyev152660b2013-01-08 09:33:05 -080027 present_boost_libs = []
28 for boost_lib_name in conf.env['LIB_BOOST']:
29 if boost_lib_name.startswith("boost_"):
30 boost_lib_name = boost_lib_name[6:]
31 if boost_lib_name.endswith("-mt"):
32 boost_lib_name = boost_lib_name[:-3]
Alexander Afanasyevcd38c842013-05-05 00:24:41 -070033 present_boost_libs.append(boost_lib_name)
Alexander Afanasyev152660b2013-01-08 09:33:05 -080034
35 missing_boost_libs = [lib for lib in REQUIRED_BOOST_LIBS if lib not in present_boost_libs]
Alexander Afanasyevb4921ec2013-08-07 17:45:01 -070036
Alexander Afanasyev152660b2013-01-08 09:33:05 -080037 if missing_boost_libs != []:
38 conf.report_optional_feature("ndnSIM", "ndnSIM", False,
39 "ndnSIM requires boost libraries: %s" % ' '.join(missing_boost_libs))
40 conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
41
42 Logs.error ("ndnSIM will not be build as it requires boost libraries: %s" % ' '.join(missing_boost_libs))
43 Logs.error ("Please upgrade your distribution or install custom boost libraries (http://ndnsim.net/faq.html#boost-libraries)")
44 return
Alexander Afanasyevb4921ec2013-08-07 17:45:01 -070045
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080046 boost_version = conf.env.BOOST_VERSION.split('_')
Alexander Afanasyev9ab7d672013-08-11 11:02:52 -070047 if int(boost_version[0]) < 1 or int(boost_version[1]) < 48:
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080048 conf.report_optional_feature("ndnSIM", "ndnSIM", False,
Alexander Afanasyev9ab7d672013-08-11 11:02:52 -070049 "ndnSIM requires at least boost version 1.48")
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080050 conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
51
Alexander Afanasyev9ab7d672013-08-11 11:02:52 -070052 Logs.error ("ndnSIM will not be build as it requires boost libraries of version at least 1.48")
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080053 Logs.error ("Please upgrade your distribution or install custom boost libraries (http://ndnsim.net/faq.html#boost-libraries)")
54 return
Alexander Afanasyevac46d452012-05-31 15:33:21 -070055
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080056 conf.env['ENABLE_NDNSIM']=True;
57 conf.env['MODULES_BUILT'].append('ndnSIM')
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070058
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080059 conf.report_optional_feature("ndnSIM", "ndnSIM", True, "")
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070060
Ilya Moiseenko1762af72011-07-18 16:43:10 -070061def build(bld):
Alexander Afanasyev60c04622014-12-29 20:43:22 -080062 deps = ['core', 'network', 'point-to-point', 'topology-read', 'mobility', 'internet']
Alexander Afanasyev0d584e32013-08-13 10:41:42 -070063 if 'ns3-visualizer' in bld.env['NS3_ENABLED_MODULES']:
Alexander Afanasyev60c04622014-12-29 20:43:22 -080064 deps.append('visualizer')
Alexander Afanasyev3bea3702011-11-16 10:27:18 -080065
Alexander Afanasyev60c04622014-12-29 20:43:22 -080066 if bld.env.ENABLE_EXAMPLES:
67 deps += ['point-to-point-layout', 'csma', 'applications']
Alexander Afanasyev4a3b2be2012-06-29 14:29:13 -070068
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -070069 module = bld.create_ns3_module ('ndnSIM', deps)
Alexander Afanasyev59314802012-11-26 14:56:04 -080070 module.module = 'ndnSIM'
Alexander Afanasyev152660b2013-01-08 09:33:05 -080071 module.features += ' ns3fullmoduleheaders'
Alexander Afanasyev60c04622014-12-29 20:43:22 -080072 module.uselib = 'NDN_CXX BOOST'
73 module.includes = [".", "./NFD", "./NFD/daemon", "./NFD/core"]
74 module.export_includes = [".", "./NFD", "./NFD/daemon", "./NFD/core"]
Alexander Afanasyev404c0792011-08-09 17:09:59 -070075
Alexander Afanasyev152660b2013-01-08 09:33:05 -080076 headers = bld (features='ns3header')
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -070077 headers.module = 'ndnSIM'
Alexander Afanasyev60c04622014-12-29 20:43:22 -080078 headers.source = ["ndn-all.hpp"]
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070079
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080080 if not bld.env['ENABLE_NDNSIM']:
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -070081 bld.env['MODULES_NOT_BUILT'].append('ndnSIM')
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070082 return
Alexander Afanasyev957a84a2013-01-23 10:21:06 -080083
Alexander Afanasyev60c04622014-12-29 20:43:22 -080084 module_dirs = ['NFD', 'apps', 'helper', 'model', 'utils']
85
Spyridon Mastorakise4f0d3c2014-10-29 13:20:03 -070086 module.source = bld.path.ant_glob(['%s/**/*.cpp' % dir for dir in module_dirs],
87 excl=['model/ip-faces/*',
88 'model/cs/*',
89 'apps/*',
90 'helper/*',
91 'utils/**/*'])
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070092
Alexander Afanasyev60c04622014-12-29 20:43:22 -080093 module.full_headers = [p.path_from(bld.path) for p in bld.path.ant_glob(
94 ['%s/**/*.hpp' % dir for dir in module_dirs])]
Alexander Afanasyev3b936292011-09-20 08:45:36 -070095
Spyridon Mastorakise4f0d3c2014-10-29 13:20:03 -070096 # if bld.env.ENABLE_EXAMPLES:
97 # bld.recurse('examples')
Lucas64b85362012-01-30 16:28:37 -080098
Alexander Afanasyev76b11572013-07-16 21:49:50 -070099 bld.ns3_python_bindings()
Alexander Afanasyev59314802012-11-26 14:56:04 -0800100
Alexander Afanasyev59314802012-11-26 14:56:04 -0800101@TaskGen.feature('ns3fullmoduleheaders')
102@TaskGen.after_method('process_rule')
103def apply_ns3fullmoduleheaders(self):
104 # ## get all of the ns3 headers
Alexander Afanasyev1a62e612013-05-02 16:50:48 -0700105 ns3_dir_node = self.bld.path.find_or_declare("ns3")
Alexander Afanasyev59314802012-11-26 14:56:04 -0800106
107 mode = getattr(self, "mode", "install")
108
109 for filename in set(self.to_list(self.full_headers)):
110 src_node = self.path.find_resource(filename)
111 if src_node is None:
112 raise WafError("source ns3 header file %s not found" % (filename,))
113 dst_node = ns3_dir_node.find_or_declare(src_node.path_from(self.bld.path.find_dir('src')))
114 assert dst_node is not None
115
116 relpath = src_node.parent.path_from(self.bld.path.find_dir('src'))
117
118 task = self.create_task('ns3header')
119 task.mode = getattr(self, 'mode', 'install')
120 if task.mode == 'install':
Alexander Afanasyev957a84a2013-01-23 10:21:06 -0800121 self.bld.install_files('${INCLUDEDIR}/%s%s/ns3/%s' % (wutils.APPNAME, wutils.VERSION, relpath),
Alexander Afanasyev59314802012-11-26 14:56:04 -0800122 [src_node])
123 task.set_inputs([src_node])
124 task.set_outputs([dst_node])
125 else:
126 task.header_to_remove = dst_node