Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 1 | ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 3 | import os |
| 4 | import Logs |
| 5 | import Utils |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 6 | import Options |
| 7 | |
Alexander Afanasyev | 9de011f | 2011-11-11 00:55:05 -0800 | [diff] [blame] | 8 | from waflib.Errors import WafError |
| 9 | |
Alexander Afanasyev | 3b93629 | 2011-09-20 08:45:36 -0700 | [diff] [blame] | 10 | def options(opt): |
| 11 | opt.tool_options('boost', tooldir=["waf-tools"]) |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 12 | |
| 13 | def configure(conf): |
Alexander Afanasyev | 3b93629 | 2011-09-20 08:45:36 -0700 | [diff] [blame] | 14 | try: |
| 15 | conf.check_tool('boost') |
| 16 | conf.check_boost(lib = 'iostreams') |
| 17 | except WafError: |
| 18 | conf.env['LIB_BOOST'] = [] |
| 19 | |
| 20 | if not conf.env['LIB_BOOST']: |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 21 | conf.report_optional_feature("ndn-abstract", "NDN abstraction", False, |
| 22 | "Required boost libraries not found") |
| 23 | conf.env['ENABLE_NDN_ABSTRACT']=False; |
Alexander Afanasyev | 3b93629 | 2011-09-20 08:45:36 -0700 | [diff] [blame] | 24 | conf.env['MODULES_NOT_BUILT'].append('NDNabstraction') |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 25 | return |
| 26 | |
| 27 | conf.env['ENABLE_NDN_ABSTRACT']=True; |
| 28 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 29 | |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 30 | def build(bld): |
Alexander Afanasyev | 3bea370 | 2011-11-16 10:27:18 -0800 | [diff] [blame] | 31 | deps = ['core', 'network', 'point-to-point', |
| 32 | 'topology-read','internet','applications', |
Alexander Afanasyev | 9d313d4 | 2011-11-25 13:36:15 -0800 | [diff] [blame] | 33 | 'point-to-point-layout', 'netanim'] |
Alexander Afanasyev | 3bea370 | 2011-11-16 10:27:18 -0800 | [diff] [blame] | 34 | if bld.env['ENABLE_PYTHON_BINDINGS']: |
| 35 | deps.append ('visualizer') |
| 36 | |
| 37 | module = bld.create_ns3_module ('NDNabstraction', deps) |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 38 | module.uselib = 'BOOST BOOST_IOSTREAMS' |
Alexander Afanasyev | 404c079 | 2011-08-09 17:09:59 -0700 | [diff] [blame] | 39 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 40 | tests = bld.create_ns3_module_test_library('NDNabstraction') |
Alexander Afanasyev | 3b93629 | 2011-09-20 08:45:36 -0700 | [diff] [blame] | 41 | headers = bld.new_task_gen(features=['ns3header']) |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 42 | headers.module = 'NDNabstraction' |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 43 | |
| 44 | if not bld.env['ENABLE_NDN_ABSTRACT']: |
Alexander Afanasyev | 3b93629 | 2011-09-20 08:45:36 -0700 | [diff] [blame] | 45 | bld.env['MODULES_NOT_BUILT'].append('NDNabstraction') |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 46 | return |
| 47 | |
Alexander Afanasyev | 3b93629 | 2011-09-20 08:45:36 -0700 | [diff] [blame] | 48 | module.source = bld.path.ant_glob(['model/*.cc', 'apps/*.cc', |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 49 | 'utils/*.cc', |
| 50 | 'helper/*.cc', |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 51 | 'helper/tracers/*.cc', |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 52 | 'helper/ccnb-parser/*.cc', |
| 53 | 'helper/ccnb-parser/visitors/*.cc', |
| 54 | 'helper/ccnb-parser/syntax-tree/*.cc']) |
Alexander Afanasyev | 2a5df20 | 2011-08-15 22:39:05 -0700 | [diff] [blame] | 55 | |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 56 | headers.source = [ |
| 57 | "helper/ccnx-stack-helper.h", |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 58 | "helper/ccnx-app-helper.h", |
Alexander Afanasyev | f9f4eb0 | 2011-12-16 01:51:14 -0800 | [diff] [blame] | 59 | "helper/ccnx-header-helper.h", |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 60 | "helper/ccnx-trace-helper.h", |
| 61 | "helper/tracers/ccnx-app-tracer.h", |
| 62 | "helper/tracers/ccnx-l3-tracer.h", |
| 63 | "helper/ccnx-face-container.h", |
Ilya Moiseenko | 1762af7 | 2011-07-18 16:43:10 -0700 | [diff] [blame] | 64 | |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 65 | "apps/ccnx-app.h", |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 66 | |
| 67 | "model/hash-helper.h", |
| 68 | "model/ccnx.h", |
| 69 | "model/ccnx-face.h", |
| 70 | |
| 71 | "model/ccnx-interest-header.h", |
| 72 | "model/ccnx-content-object-header.h", |
| 73 | "model/ccnx-name-components.h", |
| 74 | "model/ccnx-fib.h", |
Alexander Afanasyev | 4975f73 | 2011-12-20 17:52:19 -0800 | [diff] [blame] | 75 | |
| 76 | "utils/spring-mobility-model.h", |
| 77 | "utils/spring-mobility-helper.h", |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 78 | |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 79 | "model/rocketfuel-weights-reader.h", |
| 80 | "model/annotated-topology-reader.h", |
| 81 | ] |
Alexander Afanasyev | 3b93629 | 2011-09-20 08:45:36 -0700 | [diff] [blame] | 82 | |
| 83 | tests.source = bld.path.ant_glob('test/*.cc'); |
| 84 | |
Alexander Afanasyev | 4ac503d | 2011-10-28 15:45:39 -0700 | [diff] [blame] | 85 | if True or bld.env['ENABLE_EXAMPLES']: |
Alexander Afanasyev | 5b43386 | 2011-10-31 15:25:07 -0700 | [diff] [blame] | 86 | obj = bld.create_ns3_program('ccnx-test', ['NDNabstraction', 'internet']) |
Alexander Afanasyev | 4ac503d | 2011-10-28 15:45:39 -0700 | [diff] [blame] | 87 | obj.source = 'examples/ccnx-test.cc' |
Alexander Afanasyev | 5b43386 | 2011-10-31 15:25:07 -0700 | [diff] [blame] | 88 | |
| 89 | obj = bld.create_ns3_program('ccnx-routing-simple', ['NDNabstraction', 'point-to-point-layout']) |
| 90 | obj.source = 'examples/ccnx-routing-simple.cc' |
| 91 | |
Ilya Moiseenko | c926604 | 2011-11-02 17:49:21 -0700 | [diff] [blame] | 92 | obj = bld.create_ns3_program('ccnx-grid', ['NDNabstraction', 'point-to-point-layout']) |
| 93 | obj.source = 'examples/ccnx-grid.cc' |
Alexander Afanasyev | 4ac503d | 2011-10-28 15:45:39 -0700 | [diff] [blame] | 94 | |
Ilya Moiseenko | 00b3048 | 2011-11-15 17:58:00 -0800 | [diff] [blame] | 95 | obj = bld.create_ns3_program('annotated-topology', ['NDNabstraction', 'point-to-point-layout']) |
| 96 | obj.source = 'examples/annotated-topology-read-example.cc' |
| 97 | |
Alexander Afanasyev | 233f197 | 2011-11-21 11:27:18 -0800 | [diff] [blame] | 98 | obj = bld.create_ns3_program('interest-header-example', ['NDNabstraction']) |
| 99 | obj.source = 'examples/interest-header-example.cc' |
| 100 | |
Alexander Afanasyev | c39f0b4 | 2011-11-28 12:51:12 -0800 | [diff] [blame] | 101 | obj = bld.create_ns3_program('packet-sizes', ['NDNabstraction']) |
| 102 | obj.source = 'examples/packet-sizes.cc' |
Alexander Afanasyev | 09374c0 | 2011-12-08 13:54:56 -0800 | [diff] [blame] | 103 | |
| 104 | obj = bld.create_ns3_program('ccnx-sprint-topology', ['NDNabstraction']) |
Ilya Moiseenko | 58d2667 | 2011-12-08 13:48:06 -0800 | [diff] [blame] | 105 | obj.source = 'examples/sprint-topology.cc' |
| 106 | |
Alexander Afanasyev | 09374c0 | 2011-12-08 13:54:56 -0800 | [diff] [blame] | 107 | obj = bld.create_ns3_program('ccnx-abilene-topology', ['NDNabstraction']) |
Ilya Moiseenko | 58d2667 | 2011-12-08 13:48:06 -0800 | [diff] [blame] | 108 | obj.source = 'examples/abilene-topology.cc' |
Alexander Afanasyev | c39f0b4 | 2011-11-28 12:51:12 -0800 | [diff] [blame] | 109 | |
Ilya Moiseenko | 6f5e8fa | 2011-12-16 15:20:19 -0800 | [diff] [blame] | 110 | obj = bld.create_ns3_program('ccnx-synthetic-topology', ['NDNabstraction']) |
| 111 | obj.source = 'examples/synthetic-topology.cc' |
| 112 | |
Alexander Afanasyev | 1d2642a | 2012-01-02 16:20:05 -0800 | [diff] [blame] | 113 | obj = bld.create_ns3_program('congestion-pop', ['NDNabstraction']) |
| 114 | obj.source = 'examples/congestion-pop.cc' |
| 115 | |
Alexander Afanasyev | 36d5c2a | 2012-01-02 19:09:19 -0800 | [diff] [blame^] | 116 | obj = bld.create_ns3_program('congestion-tcp-pop', ['NDNabstraction']) |
| 117 | obj.source = 'examples/congestion-tcp-pop.cc' |
| 118 | |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 119 | bld.ns3_python_bindings() |