forked from named-data-ndnSIM/ndnSIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwscript
206 lines (159 loc) · 7.82 KB
/
wscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
import os
from waflib import Logs, Utils, Options, TaskGen, Task
from waflib.Errors import WafError
import wutils
def options(opt):
opt.add_option('--enable-ndn-plugins',
help=("Enable NDN plugins (may require patching). topology plugin enabled by default"),
dest='enable_ndn_plugins')
opt.add_option('--disable-ndn-plugins',
help=("Enable NDN plugins (may require patching). topology plugin enabled by default"),
dest='disable_ndn_plugins')
REQUIRED_BOOST_LIBS = ['graph']
def required_boost_libs(conf):
conf.env.REQUIRED_BOOST_LIBS += REQUIRED_BOOST_LIBS
def configure(conf):
conf.env['ENABLE_NDNSIM']=False;
if not conf.env['LIB_BOOST']:
conf.report_optional_feature("ndnSIM", "ndnSIM", False,
"Required boost libraries not found")
Logs.error ("ndnSIM will not be build as it requires boost libraries of version at least 1.46")
conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
return
else:
present_boost_libs = []
for boost_lib_name in conf.env['LIB_BOOST']:
if boost_lib_name.startswith("boost_"):
boost_lib_name = boost_lib_name[6:]
if boost_lib_name.endswith("-mt"):
boost_lib_name = boost_lib_name[:-3]
present_boost_libs.append(boost_lib_name)
missing_boost_libs = [lib for lib in REQUIRED_BOOST_LIBS if lib not in present_boost_libs]
if missing_boost_libs != []:
conf.report_optional_feature("ndnSIM", "ndnSIM", False,
"ndnSIM requires boost libraries: %s" % ' '.join(missing_boost_libs))
conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
Logs.error ("ndnSIM will not be build as it requires boost libraries: %s" % ' '.join(missing_boost_libs))
Logs.error ("Please upgrade your distribution or install custom boost libraries (http://ndnsim.net/faq.html#boost-libraries)")
return
boost_version = conf.env.BOOST_VERSION.split('_')
if int(boost_version[0]) < 1 or int(boost_version[1]) < 46:
conf.report_optional_feature("ndnSIM", "ndnSIM", False,
"ndnSIM requires at least boost version 1.46")
conf.env['MODULES_NOT_BUILT'].append('ndnSIM')
Logs.error ("ndnSIM will not be build as it requires boost libraries of version at least 1.46")
Logs.error ("Please upgrade your distribution or install custom boost libraries (http://ndnsim.net/faq.html#boost-libraries)")
return
conf.env['NDN_plugins'] = ['topology']
if Options.options.enable_ndn_plugins:
conf.env['NDN_plugins'] = conf.env['NDN_plugins'] + Options.options.enable_ndn_plugins.split(',')
if Options.options.disable_ndn_plugins:
conf.env['NDN_plugins'] = conf.env['NDN_plugins'] - Options.options.disable_ndn_plugins.split(',')
conf.env['ENABLE_NDNSIM']=True;
conf.env['MODULES_BUILT'].append('ndnSIM')
conf.report_optional_feature("ndnSIM", "ndnSIM", 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')
deps.append ('mobility')
if 'mobility' in bld.env['NDN_plugins']:
deps.append ('mobility')
module = bld.create_ns3_module ('ndnSIM', deps)
module.module = 'ndnSIM'
module.features += ' ns3fullmoduleheaders'
module.uselib = 'BOOST BOOST_IOSTREAMS'
headers = bld (features='ns3header')
headers.module = 'ndnSIM'
if not bld.env['ENABLE_NDNSIM']:
bld.env['MODULES_NOT_BUILT'].append('ndnSIM')
return
module.source = bld.path.ant_glob(['model/**/*.cc',
'apps/*.cc',
'utils/**/*.cc',
'helper/**/*.cc',
])
module.full_headers = [p.path_from(bld.path) for p in bld.path.ant_glob([
'utils/**/*.h',
'model/**/*.h',
'apps/**/*.h',
'helper/**/*.h',
])]
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-l3-protocol.h",
"model/ndn-face.h",
"model/ndn-app-face.h",
"model/ndn-net-device-face.h",
"model/ndn-interest.h",
"model/ndn-content-object.h",
"model/ndn-name-components.h",
"model/ndn-name.h",
"model/cs/ndn-content-store.h",
"model/fib/ndn-fib.h",
"model/fib/ndn-fib-entry.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/fw/ndn-forwarding-strategy.h",
"model/fw/ndn-fw-tag.h",
# "utils/batches.h",
"utils/ndn-limits.h",
"utils/ndn-rtt-estimator.h",
# "utils/weights-path-stretch-tag.h",
"utils/ndn-drop-tail-queue.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']))
module.full_headers.extend ([p.path_from(bld.path) for p in bld.path.ant_glob(['plugins/topology/**/*.h'])])
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']))
module.full_headers.extend ([p.path_from(bld.path) for p in bld.path.ant_glob(['plugins/mobility/**/*.h'])])
# bld.install_files('${INCLUDEDIR}/%s%s/ns3/ndnSIM' % (wutils.APPNAME, wutils.VERSION), ndnSIM_headers, relative_trick=True)
# bld.install_files('$PREFIX/include', ndnSIM_headers)
tests = bld.create_ns3_module_test_library('ndnSIM')
tests.source = bld.path.ant_glob('test/*.cc')
if bld.env.ENABLE_EXAMPLES:
bld.recurse ('examples')
bld.recurse ('tools')
bld.ns3_python_bindings()
@TaskGen.feature('ns3fullmoduleheaders')
@TaskGen.after_method('process_rule')
def apply_ns3fullmoduleheaders(self):
# ## get all of the ns3 headers
ns3_dir_node = self.bld.path.find_or_declare("ns3")
mode = getattr(self, "mode", "install")
for filename in set(self.to_list(self.full_headers)):
src_node = self.path.find_resource(filename)
if src_node is None:
raise WafError("source ns3 header file %s not found" % (filename,))
dst_node = ns3_dir_node.find_or_declare(src_node.path_from(self.bld.path.find_dir('src')))
assert dst_node is not None
relpath = src_node.parent.path_from(self.bld.path.find_dir('src'))
task = self.create_task('ns3header')
task.mode = getattr(self, 'mode', 'install')
if task.mode == 'install':
self.bld.install_files('${INCLUDEDIR}/%s%s/ns3/%s' % (wutils.APPNAME, wutils.VERSION, relpath),
[src_node])
task.set_inputs([src_node])
task.set_outputs([dst_node])
else:
task.header_to_remove = dst_node