Alexander Afanasyev | 6315ef7 | 2012-06-01 20:56:31 -0700 | [diff] [blame^] | 1 | ndnSIM applications |
| 2 | =================== |
| 3 | |
| 4 | ndnSIM includes a few reference applications that can be used as a base for NDN simulations. |
| 5 | |
| 6 | Reference applications |
| 7 | ++++++++++++++++++++++ |
| 8 | |
| 9 | CcnxConsumerCbr |
| 10 | ^^^^^^^^^^^^^^^ |
| 11 | |
| 12 | :ndnsim:`CcnxConsumerCbr` an application that generates Interest traffic with predefined pattern (constant frequency, constant average rate with inter-Interest gap distributed uniformly at random, exponentially at random, etc.). |
| 13 | |
| 14 | .. code-block:: c++ |
| 15 | |
| 16 | // Create application using the app helper |
| 17 | CcnxAppHelper helper ("ns3::CcnxConsumerCbr"); |
| 18 | |
| 19 | This applications has the following attributes: |
| 20 | |
| 21 | * Frequency |
| 22 | |
| 23 | .. note:: |
| 24 | default: ``1.0`` (1 per second) |
| 25 | |
| 26 | Either exact (for contant version) or expected (for randomized version) frequency with which Interests are generated |
| 27 | |
| 28 | .. code-block:: c++ |
| 29 | |
| 30 | // Set attribute using the app helper |
| 31 | helper.SetAttribute ("Frequency", DoubleValue (1.0)); |
| 32 | |
| 33 | * Randomize |
| 34 | |
| 35 | .. note:: |
| 36 | default: ``"none"`` |
| 37 | |
| 38 | Specify whether to do randomization for inter-Interest gap or not. The following variants are currently supported: |
| 39 | |
| 40 | - ``"none"``: no randomization |
| 41 | |
| 42 | - ``"uniform"``: uniform distribution in range (0, 1/Frequency) |
| 43 | |
| 44 | - ``"exponential"``: exponential distribution with mean 1/Frequency |
| 45 | |
| 46 | .. code-block:: c++ |
| 47 | |
| 48 | // Set attribute using the app helper |
| 49 | helper.SetAttribute ("Randomize", StringValue ("uniform")); |
| 50 | |
| 51 | CcnxConsumerBatches |
| 52 | ^^^^^^^^^^^^^^^^^^^ |
| 53 | |
| 54 | :ndnsim:`CcnxConsumerBatches` is an on-off-style application gen- erating a specified number of Interests at specified points of simulation. |
| 55 | |
| 56 | .. code-block:: c++ |
| 57 | |
| 58 | // Create application using the app helper |
| 59 | CcnxAppHelper consumerHelper ("ns3::CcnxConsumerBatches"); |
| 60 | |
| 61 | This applications has the following attributes: |
| 62 | |
| 63 | * Batches |
| 64 | |
| 65 | .. note:: |
| 66 | default: Empty |
| 67 | |
| 68 | Specify exact pattern of Interest packets, specifying when and how many Interest packets should be sent. |
| 69 | The following example defines that 1 Interest should be requested at time 1s, 5 Interests at time 5s, and 2 Interests at time 10s.: |
| 70 | |
| 71 | .. code-block:: c++ |
| 72 | |
| 73 | // Set attribute using the app helper |
| 74 | helper.SetAttribute ("Batches", StringValue ("1s 1 2s 5 10s 2")); |
| 75 | |
| 76 | |
| 77 | CcnxConsumerWindow |
| 78 | ^^^^^^^^^^^^^^^^^^ |
| 79 | |
| 80 | :ndnsim:`CcnxConsumerWindow` is an application generating a variable rate Interest traffic. It relies on an optional NACK-Interest feature and implements a simple sliding-window-based Interest generation mecha- nism. |
| 81 | |
| 82 | .. code-block:: c++ |
| 83 | |
| 84 | // Create application using the app helper |
| 85 | CcnxAppHelper consumerHelper ("ns3::CcnxConsumerWindow"); |
| 86 | |
| 87 | |
| 88 | This applications has the following attributes: |
| 89 | |
| 90 | * Window |
| 91 | |
| 92 | .. note:: |
| 93 | default: ``1`` |
| 94 | |
| 95 | Initial number of Interests that will be send out without waiting for the data (number of outstanding Interests) |
| 96 | |
| 97 | * PayloadSize |
| 98 | |
| 99 | .. note:: |
| 100 | default: ``1040`` |
| 101 | |
| 102 | Expected size of the Data payload (necessary only when Size is specified) |
| 103 | |
| 104 | * Size |
| 105 | |
| 106 | .. note:: |
| 107 | default: ``-1`` |
| 108 | |
| 109 | Amount of data to be requested (will stop issuing Interests after ``Size`` data is received) |
| 110 | |
| 111 | If ```Size`` is set to -1, Interests will be requested till the end of the simulation. |
| 112 | |
| 113 | CcnxProducer |
| 114 | ^^^^^^^^^^^^ |
| 115 | |
| 116 | :ndnsim:`CcnxProducer` a simple Interest-sink application, which replying every incoming Interest with Data packet with a specified size and name same as in Interest. |
| 117 | |
| 118 | .. code-block:: c++ |
| 119 | |
| 120 | // Create application using the app helper |
| 121 | CcnxAppHelper consumerHelper ("ns3::CcnxProducer"); |
| 122 | |
| 123 | |
| 124 | Custom applications |
| 125 | +++++++++++++++++++ |
| 126 | |
| 127 | Applications interact with the core of the system using AppFace realization of Face abstraction. |
| 128 | To simplify implementation of specific NDN application, ndnSIM provides a base CcnxApp class that takes care of creating CcnxAppFace and registering it inside the NDN protocol stack, as well as provides default processing for incoming Interest and Data packets. |
| 129 | |
| 130 | Base CcnxApp class |
| 131 | ^^^^^^^^^^^^^^^^^^ |
| 132 | |
| 133 | |
| 134 | |
| 135 | Example |
| 136 | ^^^^^^^ |