A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
mobility-helper.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008 INRIA
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: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  */
20 
21 #ifndef MOBILITY_HELPER_H
22 #define MOBILITY_HELPER_H
23 
24 #include <vector>
25 #include "ns3/object-factory.h"
26 #include "ns3/attribute.h"
27 #include "ns3/position-allocator.h"
28 #include "node-container.h"
29 
30 namespace ns3 {
31 
32 class PositionAllocator;
33 class MobilityModel;
34 
42 {
43 public:
48  MobilityHelper ();
49 
54  ~MobilityHelper ();
55 
63 
85  void SetPositionAllocator (std::string type,
86  std::string n1 = "", const AttributeValue &v1 = EmptyAttributeValue (),
87  std::string n2 = "", const AttributeValue &v2 = EmptyAttributeValue (),
88  std::string n3 = "", const AttributeValue &v3 = EmptyAttributeValue (),
89  std::string n4 = "", const AttributeValue &v4 = EmptyAttributeValue (),
90  std::string n5 = "", const AttributeValue &v5 = EmptyAttributeValue (),
91  std::string n6 = "", const AttributeValue &v6 = EmptyAttributeValue (),
92  std::string n7 = "", const AttributeValue &v7 = EmptyAttributeValue (),
93  std::string n8 = "", const AttributeValue &v8 = EmptyAttributeValue (),
94  std::string n9 = "", const AttributeValue &v9 = EmptyAttributeValue ());
95 
120  void SetMobilityModel (std::string type,
121  std::string n1 = "", const AttributeValue &v1 = EmptyAttributeValue (),
122  std::string n2 = "", const AttributeValue &v2 = EmptyAttributeValue (),
123  std::string n3 = "", const AttributeValue &v3 = EmptyAttributeValue (),
124  std::string n4 = "", const AttributeValue &v4 = EmptyAttributeValue (),
125  std::string n5 = "", const AttributeValue &v5 = EmptyAttributeValue (),
126  std::string n6 = "", const AttributeValue &v6 = EmptyAttributeValue (),
127  std::string n7 = "", const AttributeValue &v7 = EmptyAttributeValue (),
128  std::string n8 = "", const AttributeValue &v8 = EmptyAttributeValue (),
129  std::string n9 = "", const AttributeValue &v9 = EmptyAttributeValue ());
130 
168  void PushReferenceMobilityModel (std::string referenceName);
173  void PopReferenceMobilityModel (void);
174 
179  std::string GetMobilityModelType (void) const;
180 
191  void Install (Ptr<Node> node) const;
202  void Install (std::string nodeName) const;
203 
215  void Install (NodeContainer container) const;
216 
221  void InstallAll (void);
222 
231  static void EnableAscii (std::ostream &os, uint32_t nodeid);
240  static void EnableAscii (std::ostream &os, NodeContainer n);
248  static void EnableAsciiAll (std::ostream &os);
261  int64_t AssignStreams (NodeContainer c, int64_t stream);
262 
263 private:
267  static void CourseChanged (std::ostream *os, Ptr<const MobilityModel> mobility);
268  std::vector<Ptr<MobilityModel> > m_mobilityStack;
271 };
272 
273 } // namespace ns3
274 
275 #endif /* MOBILITY_HELPER_H */