blob: 1dbb9f49ceaedaf2298ffdfae8265e0408671b99 [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
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -07009REQUIRED_BOOST_LIBS = ['graph', 'thread', 'unit_test_framework',
Spyridon Mastorakisb0b22412016-12-07 14:33:46 -080010 'system', 'random', 'date_time', 'iostreams', 'regex',
11 'program_options', 'chrono', 'filesystem']
Alexander Afanasyev3b936292011-09-20 08:45:36 -070012
Alexander Afanasyev0492f872019-07-31 13:48:17 -040013top = '../..'
14
Alexander Afanasyev152660b2013-01-08 09:33:05 -080015def required_boost_libs(conf):
16 conf.env.REQUIRED_BOOST_LIBS += REQUIRED_BOOST_LIBS
17
Alexander Afanasyev8e60bcd2015-01-15 20:55:40 +000018def options(opt):
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -070019 opt.load(['version'], tooldir=['%s/.waf-tools' % opt.path.abspath()])
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -050020 opt.load(['doxygen', 'sphinx_build', 'compiler-features', 'sqlite3', 'openssl'],
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -070021 tooldir=['%s/ndn-cxx/.waf-tools' % opt.path.abspath()])
Alexander Afanasyev8e60bcd2015-01-15 20:55:40 +000022
Alexander Afanasyev152660b2013-01-08 09:33:05 -080023def configure(conf):
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -050024 conf.load(['doxygen', 'sphinx_build', 'compiler-features', 'version', 'sqlite3', 'openssl'])
Alexander Afanasyev8e60bcd2015-01-15 20:55:40 +000025
26 conf.env['ENABLE_NDNSIM']=False
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080027
Alexander Afanasyeve932a212018-03-11 12:40:07 -040028 if 'PKG_CONFIG_PATH' not in os.environ:
29 os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env)
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -070030
31 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False)
32 conf.check_sqlite3(mandatory=True)
Alexander Afanasyevf007a992022-05-05 15:57:08 -040033 conf.check_openssl(mandatory=True, use='OPENSSL', atleast_version='1.1.1')
Alexander Afanasyev60c04622014-12-29 20:43:22 -080034
Alexander Afanasyev3b936292011-09-20 08:45:36 -070035 if not conf.env['LIB_BOOST']:
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080036 conf.report_optional_feature("ndnSIM", "ndnSIM", False,
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070037 "Required boost libraries not found")
Spyridon Mastorakisf6d32852017-09-27 20:28:52 -070038 Logs.error ("ndnSIM will not be built as it requires boost libraries of version at least 1.54.0")
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -070039 conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070040 return
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080041 else:
Alexander Afanasyev152660b2013-01-08 09:33:05 -080042 present_boost_libs = []
43 for boost_lib_name in conf.env['LIB_BOOST']:
44 if boost_lib_name.startswith("boost_"):
45 boost_lib_name = boost_lib_name[6:]
46 if boost_lib_name.endswith("-mt"):
47 boost_lib_name = boost_lib_name[:-3]
Alexander Afanasyevcd38c842013-05-05 00:24:41 -070048 present_boost_libs.append(boost_lib_name)
Alexander Afanasyev152660b2013-01-08 09:33:05 -080049
50 missing_boost_libs = [lib for lib in REQUIRED_BOOST_LIBS if lib not in present_boost_libs]
Alexander Afanasyevb4921ec2013-08-07 17:45:01 -070051
Alexander Afanasyev152660b2013-01-08 09:33:05 -080052 if missing_boost_libs != []:
53 conf.report_optional_feature("ndnSIM", "ndnSIM", False,
54 "ndnSIM requires boost libraries: %s" % ' '.join(missing_boost_libs))
55 conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
56
57 Logs.error ("ndnSIM will not be build as it requires boost libraries: %s" % ' '.join(missing_boost_libs))
58 Logs.error ("Please upgrade your distribution or install custom boost libraries (http://ndnsim.net/faq.html#boost-libraries)")
59 return
Alexander Afanasyevb4921ec2013-08-07 17:45:01 -070060
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080061 boost_version = conf.env.BOOST_VERSION.split('_')
Spyridon Mastorakisb0b22412016-12-07 14:33:46 -080062 if int(boost_version[0]) < 1 or int(boost_version[1]) < 54:
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080063 conf.report_optional_feature("ndnSIM", "ndnSIM", False,
Spyridon Mastorakisb0b22412016-12-07 14:33:46 -080064 "ndnSIM requires at least boost version 1.54")
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080065 conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
66
Spyridon Mastorakisb0b22412016-12-07 14:33:46 -080067 Logs.error ("ndnSIM will not be build as it requires boost libraries of version at least 1.54")
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080068 Logs.error ("Please upgrade your distribution or install custom boost libraries (http://ndnsim.net/faq.html#boost-libraries)")
69 return
Alexander Afanasyevac46d452012-05-31 15:33:21 -070070
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080071 conf.env['ENABLE_NDNSIM']=True;
72 conf.env['MODULES_BUILT'].append('ndnSIM')
Alexander Afanasyev2a5df202011-08-15 22:39:05 -070073
Alexander Afanasyev1bfce322012-11-23 21:38:02 -080074 conf.report_optional_feature("ndnSIM", "ndnSIM", True, "")
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070075
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -050076 conf.write_config_header('../../ns3/ndnSIM/ndn-cxx/detail/config.hpp', define_prefix='NDN_CXX_', remove=False)
Spyridon Mastorakisb0b22412016-12-07 14:33:46 -080077 conf.write_config_header('../../ns3/ndnSIM/NFD/core/config.hpp', remove=False)
Spyridon Mastorakisa1d135b2015-08-20 20:24:59 -070078
Ilya Moiseenko1762af72011-07-18 16:43:10 -070079def build(bld):
Alexander Afanasyevf007a992022-05-05 15:57:08 -040080 (base, build, VERSION_SPLIT) = bld.getVersion('NFD')
81
82 vmajor = int(VERSION_SPLIT[0])
83 vminor = int(VERSION_SPLIT[1]) if len(VERSION_SPLIT) >= 2 else 0
84 vpatch = int(VERSION_SPLIT[2]) if len(VERSION_SPLIT) >= 3 else 0
85
Spyridon Mastorakisa1d135b2015-08-20 20:24:59 -070086 bld(features="subst",
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -070087 name="version-NFD",
Spyridon Mastorakisb0b22412016-12-07 14:33:46 -080088 source='NFD/core/version.hpp.in', target='../../ns3/ndnSIM/NFD/core/version.hpp',
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -070089 install_path=None,
90 VERSION_STRING=base,
91 VERSION_BUILD="%s-ndnSIM" % build,
Alexander Afanasyevf007a992022-05-05 15:57:08 -040092 VERSION=vmajor * 1000000 + vminor * 1000 + vpatch,
93 VERSION_MAJOR=str(vmajor),
94 VERSION_MINOR=str(vminor),
95 VERSION_PATCH=str(vpatch))
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -070096
Alexander Afanasyev11dfcb72019-07-27 17:47:32 -040097 bld(features="subst",
98 name="versioncpp-NFD",
Alexander Afanasyev0492f872019-07-31 13:48:17 -040099 source='NFD/core/version.cpp.in', target=bld.path.find_or_declare('NFD/core/version.cpp'),
Alexander Afanasyev11dfcb72019-07-27 17:47:32 -0400100 install_path=None,
101 VERSION_STRING=base,
102 VERSION_BUILD="%s-ndnSIM" % build,
Alexander Afanasyevf007a992022-05-05 15:57:08 -0400103 VERSION=vmajor * 1000000 + vminor * 1000 + vpatch,
104 VERSION_MAJOR=str(vmajor),
105 VERSION_MINOR=str(vminor),
106 VERSION_PATCH=str(vpatch))
Alexander Afanasyev11dfcb72019-07-27 17:47:32 -0400107
Alexander Afanasyev0492f872019-07-31 13:48:17 -0400108 bld.objects(
109 features="cxx",
110 target='version-NFD-objects',
111 source='NFD/core/version.cpp',
112 includes='../../ns3/ndnSIM/NFD',
113 use='version-NFD versioncpp-NFD')
114
Alexander Afanasyevf007a992022-05-05 15:57:08 -0400115 (base, build, VERSION_SPLIT) = bld.getVersion('ndn-cxx')
116 vmajor = int(VERSION_SPLIT[0])
117 vminor = int(VERSION_SPLIT[1]) if len(VERSION_SPLIT) >= 2 else 0
118 vpatch = int(VERSION_SPLIT[2]) if len(VERSION_SPLIT) >= 3 else 0
119
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700120 bld(features="subst",
121 name="version-ndn-cxx",
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500122 source='ndn-cxx/ndn-cxx/version.hpp.in', target='../../ns3/ndnSIM/ndn-cxx/version.hpp',
Spyridon Mastorakisa1d135b2015-08-20 20:24:59 -0700123 install_path=None,
124 VERSION_STRING=base,
125 VERSION_BUILD="%s-ndnSIM" % build,
Alexander Afanasyevf007a992022-05-05 15:57:08 -0400126 VERSION=vmajor * 1000000 + vminor * 1000 + vpatch,
127 VERSION_MAJOR=str(vmajor),
128 VERSION_MINOR=str(vminor),
129 VERSION_PATCH=str(vpatch))
Spyridon Mastorakisa1d135b2015-08-20 20:24:59 -0700130
Alexander Afanasyev60c04622014-12-29 20:43:22 -0800131 deps = ['core', 'network', 'point-to-point', 'topology-read', 'mobility', 'internet']
Alexander Afanasyev0d584e32013-08-13 10:41:42 -0700132 if 'ns3-visualizer' in bld.env['NS3_ENABLED_MODULES']:
Alexander Afanasyev60c04622014-12-29 20:43:22 -0800133 deps.append('visualizer')
Alexander Afanasyev3bea3702011-11-16 10:27:18 -0800134
Alexander Afanasyev60c04622014-12-29 20:43:22 -0800135 if bld.env.ENABLE_EXAMPLES:
Alexander Afanasyev15db7722015-01-19 17:27:26 -0800136 deps += ['point-to-point-layout', 'csma', 'applications', 'wifi']
Alexander Afanasyev4a3b2be2012-06-29 14:29:13 -0700137
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500138 ndnCxxSrc = bld.path.ant_glob('ndn-cxx/ndn-cxx/**/*.cpp',
139 excl=['ndn-cxx/ndn-cxx/net/impl/*.cpp',
140 'ndn-cxx/ndn-cxx/net/network-monitor*.cpp',
141 'ndn-cxx/ndn-cxx/util/dummy-client-face.cpp',
Alexander Afanasyev59090db2020-02-21 16:37:43 -0500142 'ndn-cxx/ndn-cxx/**/*osx.cpp',
Alexander Afanasyevf007a992022-05-05 15:57:08 -0400143 'ndn-cxx/ndn-cxx/net/network-interface.cpp',
144 'ndn-cxx/**/*-android.cpp'])
Alexander Afanasyev404c0792011-08-09 17:09:59 -0700145
Alexander Afanasyev11dfcb72019-07-27 17:47:32 -0400146 nfdSrc = bld.path.ant_glob(['%s/**/*.cpp' % dir for dir in ['NFD/core', 'NFD/daemon']],
Alexander Afanasyev325c2532016-09-08 15:38:53 -0700147 excl=['NFD/daemon/main.cpp',
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700148 'NFD/daemon/nfd.cpp',
Spyridon Mastorakisf6d32852017-09-27 20:28:52 -0700149 'NFD/daemon/face/*ethernet*',
150 'NFD/daemon/face/*pcap*.cpp',
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700151 'NFD/daemon/face/tcp*',
Alexander Afanasyev325c2532016-09-08 15:38:53 -0700152 'NFD/daemon/face/*udp*',
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700153 'NFD/daemon/face/unix-stream*',
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500154 'NFD/daemon/face/websocket*'])
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700155
156 module = bld.create_ns3_module('ndnSIM', deps)
157 module.module = 'ndnSIM'
158 module.features += ' ns3fullmoduleheaders ndncxxheaders'
Alexander Afanasyev11dfcb72019-07-27 17:47:32 -0400159 module.use += ['version-ndn-cxx', 'version-NFD-objects', 'BOOST', 'SQLITE3', 'RT', 'PTHREAD', 'OPENSSL']
Spyridon Mastorakis8fde22b2015-08-19 23:12:44 -0700160 module.includes = ['../..', '../../ns3/ndnSIM/NFD', './NFD/core', './NFD/daemon', './NFD/rib', '../../ns3/ndnSIM', '../../ns3/ndnSIM/ndn-cxx']
161 module.export_includes = ['../../ns3/ndnSIM/NFD', './NFD/core', './NFD/daemon', './NFD/rib', '../../ns3/ndnSIM']
Alexander Afanasyev6995bb72019-02-23 15:53:26 -0500162 if 'ns3-visualizer' in bld.env['NS3_ENABLED_MODULES']:
163 module.defines = ['HAVE_NS3_VISUALIZER=1']
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700164
165 headers = bld(features='ns3header')
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -0700166 headers.module = 'ndnSIM'
Alexander Afanasyev60c04622014-12-29 20:43:22 -0800167 headers.source = ["ndn-all.hpp"]
Alexander Afanasyev2a5df202011-08-15 22:39:05 -0700168
Alexander Afanasyev1bfce322012-11-23 21:38:02 -0800169 if not bld.env['ENABLE_NDNSIM']:
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -0700170 bld.env['MODULES_NOT_BUILT'].append('ndnSIM')
Alexander Afanasyev2a5df202011-08-15 22:39:05 -0700171 return
Alexander Afanasyev957a84a2013-01-23 10:21:06 -0800172
Spyridon Mastorakisb0b22412016-12-07 14:33:46 -0800173 module_dirs = ['apps', 'helper', 'model', 'utils', 'bindings']
Spyridon Mastorakise4f0d3c2014-10-29 13:20:03 -0700174 module.source = bld.path.ant_glob(['%s/**/*.cpp' % dir for dir in module_dirs],
Alexander Afanasyev325c2532016-09-08 15:38:53 -0700175 excl=[
Alexander Afanasyev325c2532016-09-08 15:38:53 -0700176 'model/ip-faces/*']) + ndnCxxSrc + nfdSrc
Alexander Afanasyev2a5df202011-08-15 22:39:05 -0700177
Alexander Afanasyev11dfcb72019-07-27 17:47:32 -0400178 module_dirs = ['NFD/core', 'NFD/daemon', 'apps', 'helper', 'model', 'utils', 'bindings']
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700179 module.full_headers = bld.path.ant_glob(['%s/**/*.hpp' % dir for dir in module_dirs])
180 module.full_headers += bld.path.ant_glob('NFD/common.hpp')
Alexander Afanasyev3b936292011-09-20 08:45:36 -0700181
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500182 module.ndncxx_headers = bld.path.ant_glob(['ndn-cxx/ndn-cxx/**/*.hpp'],
183 excl=['src/**/*-osx.hpp', 'src/impl/**/*'])
Spyridon Mastorakisf6d32852017-09-27 20:28:52 -0700184
Alexander Afanasyev50ea1a32016-09-08 15:44:08 -0700185 if bld.env.ENABLE_EXAMPLES:
186 bld.recurse('examples')
Lucas64b85362012-01-30 16:28:37 -0800187
Spyridon Mastorakisb4bd4b72015-01-05 17:41:12 -0800188 if bld.env.ENABLE_TESTS:
189 bld.recurse('tests')
190
Alexander Afanasyevc018a562016-09-08 16:27:31 -0700191 bld.ns3_python_bindings()
Alexander Afanasyev59314802012-11-26 14:56:04 -0800192
Alexander Afanasyev59314802012-11-26 14:56:04 -0800193@TaskGen.feature('ns3fullmoduleheaders')
194@TaskGen.after_method('process_rule')
195def apply_ns3fullmoduleheaders(self):
196 # ## get all of the ns3 headers
Alexander Afanasyev1a62e612013-05-02 16:50:48 -0700197 ns3_dir_node = self.bld.path.find_or_declare("ns3")
Alexander Afanasyev59314802012-11-26 14:56:04 -0800198
199 mode = getattr(self, "mode", "install")
200
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700201 for src_node in set(self.full_headers):
Alexander Afanasyev59314802012-11-26 14:56:04 -0800202 dst_node = ns3_dir_node.find_or_declare(src_node.path_from(self.bld.path.find_dir('src')))
203 assert dst_node is not None
204
205 relpath = src_node.parent.path_from(self.bld.path.find_dir('src'))
206
207 task = self.create_task('ns3header')
208 task.mode = getattr(self, 'mode', 'install')
209 if task.mode == 'install':
Alexander Afanasyev957a84a2013-01-23 10:21:06 -0800210 self.bld.install_files('${INCLUDEDIR}/%s%s/ns3/%s' % (wutils.APPNAME, wutils.VERSION, relpath),
Alexander Afanasyev59314802012-11-26 14:56:04 -0800211 [src_node])
212 task.set_inputs([src_node])
213 task.set_outputs([dst_node])
214 else:
215 task.header_to_remove = dst_node
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700216
217@TaskGen.feature('ndncxxheaders')
218@TaskGen.after_method('process_rule')
219def apply_ndnsim_moduleheaders(self):
220 # ## get all of the ns3 headers
221 ndncxx_dir_node = self.bld.path.find_or_declare("ns3/ndnSIM/ndn-cxx")
222
223 mode = getattr(self, "mode", "install")
224
225 for src_node in set(self.ndncxx_headers):
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500226 dst_node = ndncxx_dir_node.find_or_declare(src_node.path_from(self.bld.path.find_dir('src/ndnSIM/ndn-cxx/ndn-cxx')))
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700227 assert dst_node is not None
228
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500229 relpath = src_node.parent.path_from(self.bld.path.find_dir('src/ndnSIM/ndn-cxx/ndn-cxx'))
Spyridon Mastorakisf542c0b2015-08-11 22:59:18 -0700230
231 task = self.create_task('ns3header')
232 task.mode = getattr(self, 'mode', 'install')
233 if task.mode == 'install':
234 self.bld.install_files('${INCLUDEDIR}/%s%s/ns3/ndnSIM/ndn-cxx/%s' % (wutils.APPNAME, wutils.VERSION, relpath),
235 [src_node])
236 task.set_inputs([src_node])
237 task.set_outputs([dst_node])
238 else:
239 task.header_to_remove = dst_node