A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
mpi
model
parallel-communication-interface.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright 2013. Lawrence Livermore National Security, LLC.
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: Steven Smith <smith84@llnl.gov>
19
*
20
*/
21
22
#ifndef NS3_PARALLEL_COMMUNICATION_INTERFACE_H
23
#define NS3_PARALLEL_COMMUNICATION_INTERFACE_H
24
25
#include <stdint.h>
26
#include <list>
27
28
#include <ns3/object.h>
29
#include <ns3/nstime.h>
30
#include <ns3/buffer.h>
31
#include <ns3/packet.h>
32
33
#if defined(NS3_MPI)
34
#include "mpi.h"
35
#endif
36
37
namespace
ns3
{
38
49
class
ParallelCommunicationInterface
50
{
51
public
:
55
virtual
~ParallelCommunicationInterface
() {}
59
virtual
void
Destroy
() = 0;
63
virtual
uint32_t
GetSystemId
() = 0;
67
virtual
uint32_t
GetSize
() = 0;
71
virtual
bool
IsEnabled
() = 0;
78
virtual
void
Enable
(
int
* pargc,
char
*** pargv) = 0;
83
virtual
void
Disable
() = 0;
92
virtual
void
SendPacket
(
Ptr<Packet>
p,
const
Time
&rxTime, uint32_t node, uint32_t dev) = 0;
93
94
private
:
95
};
96
97
}
// namespace ns3
98
99
#endif
/* NS3_PARALLEL_COMMUNICATION_INTERFACE_H */
ns3::Time
Simulation virtual time values and global simulation resolution.
Definition:
nstime.h:102
ns3::Ptr< Packet >
ns3::ParallelCommunicationInterface::GetSize
virtual uint32_t GetSize()=0
ns3::ParallelCommunicationInterface::Destroy
virtual void Destroy()=0
Deletes storage used by the parallel environment.
ns3::ParallelCommunicationInterface
Pure virtual base class for the interface between ns-3 and the parallel communication layer being use...
Definition:
parallel-communication-interface.h:49
ns3::ParallelCommunicationInterface::IsEnabled
virtual bool IsEnabled()=0
ns3::ParallelCommunicationInterface::Disable
virtual void Disable()=0
Terminates the parallel environment.
ns3::ParallelCommunicationInterface::Enable
virtual void Enable(int *pargc, char ***pargv)=0
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::ParallelCommunicationInterface::~ParallelCommunicationInterface
virtual ~ParallelCommunicationInterface()
Destructor.
Definition:
parallel-communication-interface.h:55
ns3::ParallelCommunicationInterface::GetSystemId
virtual uint32_t GetSystemId()=0
ns3::ParallelCommunicationInterface::SendPacket
virtual void SendPacket(Ptr< Packet > p, const Time &rxTime, uint32_t node, uint32_t dev)=0
Generated on Wed Nov 7 2018 10:02:06 for ns-3 by
1.8.14