blob: b9268b84f785f4dbece35cf80a4dc5a5dc59aa3a [file] [log] [blame]
Ilya Moiseenko1eff17d2011-08-17 10:55:53 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Ilya Moiseenko <iliamo@cs.ucla.edu>
19 */
20
21#ifndef __ANNOTATED_TOPOLOGY_READER_H__
22#define __ANNOTATED_TOPOLOGY_READER_H__
23
Ilya Moiseenko1eff17d2011-08-17 10:55:53 -070024#include "ns3/topology-reader.h"
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080025#include "ns3/random-variable.h"
Alexander Afanasyev7dbdcaf2011-12-13 21:40:37 -080026#include "ns3/object-factory.h"
Ilya Moiseenko58d26672011-12-08 13:48:06 -080027
Ilya Moiseenko1eff17d2011-08-17 10:55:53 -070028namespace ns3
29{
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -070030
31/**
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080032 * \brief This class reads annotated topology and apply settings to the corresponding nodes and links
33 *
34 */
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -070035class AnnotatedTopologyReader : public TopologyReader
36{
37public:
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080038 /**
39 * \brief Constructor
40 *
41 * \param path ns3::Names path
Alexander Afanasyev011b8592011-12-21 14:45:27 -080042 * \param scale Scaling factor for coordinates in input file
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080043 *
44 * \see ns3::Names class
45 */
Alexander Afanasyev011b8592011-12-21 14:45:27 -080046 AnnotatedTopologyReader (const std::string &path="", double scale=1.0);
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080047 virtual ~AnnotatedTopologyReader ();
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -070048
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080049 /**
50 * \brief Main annotated topology reading function.
51 *
52 * This method opens an input stream and reads topology file with annotations.
53 *
54 * \return the container of the nodes created (or empty container if there was an error)
55 */
Alexander Afanasyev5beb35a2011-12-21 16:45:13 -080056 virtual NodeContainer
57 Read ();
58
59 /**
60 * \brief Get nodes read by the reader
61 */
62 NodeContainer
63 GetNodes () const;
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -070064
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080065 /**
66 * \brief Assign IPv4 addresses to all links
67 *
68 * Note, IPv4 stack should be installed on all nodes prior this call
69 *
70 * Every link will receive /24 netmask
71 *
72 * \param base Starting IPv4 address (second link will have base+256)
73 */
74 void
75 AssignIpv4Addresses (Ipv4Address base);
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080076
77 void
78 SetBoundingBox (double ulx, double uly, double lrx, double lry);
79
Alexander Afanasyev7dbdcaf2011-12-13 21:40:37 -080080 void
81 SetMobilityModel (const std::string &model);
82
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080083protected:
84 Ptr<Node>
85 CreateNode (const std::string name);
86
87 Ptr<Node>
88 CreateNode (const std::string name, double posX, double posY);
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080089
Alexander Afanasyev7dbdcaf2011-12-13 21:40:37 -080090protected:
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080091 /**
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080092 * \brief This method applies setting to corresponding nodes and links
93 * NetDeviceContainer must be allocated
94 * NodeContainer from Read method
95 */
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080096 void ApplySettings ();
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080097 void ApplyOspfMetric ();
Ilya Moiseenko58d26672011-12-08 13:48:06 -080098
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080099protected:
100 std::string m_path;
Alexander Afanasyev5beb35a2011-12-21 16:45:13 -0800101 NodeContainer m_nodes;
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800102
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -0800103private:
Alexander Afanasyeva174aa52011-12-13 01:30:32 -0800104 AnnotatedTopologyReader (const AnnotatedTopologyReader&);
105 AnnotatedTopologyReader& operator= (const AnnotatedTopologyReader&);
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -0800106
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800107 UniformVariable m_randX;
108 UniformVariable m_randY;
Alexander Afanasyev7dbdcaf2011-12-13 21:40:37 -0800109
110 ObjectFactory m_mobilityFactory;
Alexander Afanasyev011b8592011-12-21 14:45:27 -0800111 double m_scale;
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -0700112};
Ilya Moiseenko1eff17d2011-08-17 10:55:53 -0700113
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800114}
Ilya Moiseenko1eff17d2011-08-17 10:55:53 -0700115
116#endif
117
118