blob: cbcd8908a64edce2131b85ab370e7bc60f092cd9 [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 Afanasyev8633d5d2011-12-12 18:02:31 -080056 virtual
57 NodeContainer Read (void);
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -070058
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080059 /**
60 * \brief Assign IPv4 addresses to all links
61 *
62 * Note, IPv4 stack should be installed on all nodes prior this call
63 *
64 * Every link will receive /24 netmask
65 *
66 * \param base Starting IPv4 address (second link will have base+256)
67 */
68 void
69 AssignIpv4Addresses (Ipv4Address base);
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080070
71 void
72 SetBoundingBox (double ulx, double uly, double lrx, double lry);
73
Alexander Afanasyev7dbdcaf2011-12-13 21:40:37 -080074 void
75 SetMobilityModel (const std::string &model);
76
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080077protected:
78 Ptr<Node>
79 CreateNode (const std::string name);
80
81 Ptr<Node>
82 CreateNode (const std::string name, double posX, double posY);
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080083
Alexander Afanasyev7dbdcaf2011-12-13 21:40:37 -080084protected:
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080085 /**
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080086 * \brief This method applies setting to corresponding nodes and links
87 * NetDeviceContainer must be allocated
88 * NodeContainer from Read method
89 */
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080090 void ApplySettings ();
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080091 void ApplyOspfMetric ();
Ilya Moiseenko58d26672011-12-08 13:48:06 -080092
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -080093protected:
94 std::string m_path;
95
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080096private:
Alexander Afanasyeva174aa52011-12-13 01:30:32 -080097 AnnotatedTopologyReader (const AnnotatedTopologyReader&);
98 AnnotatedTopologyReader& operator= (const AnnotatedTopologyReader&);
Alexander Afanasyev8633d5d2011-12-12 18:02:31 -080099
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800100 UniformVariable m_randX;
101 UniformVariable m_randY;
Alexander Afanasyev7dbdcaf2011-12-13 21:40:37 -0800102
103 ObjectFactory m_mobilityFactory;
Alexander Afanasyev011b8592011-12-21 14:45:27 -0800104 double m_scale;
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -0700105};
Ilya Moiseenko1eff17d2011-08-17 10:55:53 -0700106
Alexander Afanasyevae3b7c32011-12-13 13:20:06 -0800107}
Ilya Moiseenko1eff17d2011-08-17 10:55:53 -0700108
109#endif
110
111