satellite-gw-helper.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013 Magister Solutions Ltd
4  * Copyright (c) 2018 CNES
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Author: Sami Rantanen <sami.rantanen@magister.fi>
20  * Author: Mathias Ettinger <mettinger@viveris.toulouse.fr>
21  */
22 
23 #ifndef SATELLITE_GW_HELPER_H
24 #define SATELLITE_GW_HELPER_H
25 
26 #include <ns3/net-device-container.h>
27 #include <ns3/node-container.h>
28 #include <ns3/object-factory.h>
29 #include <ns3/satellite-bbframe-conf.h>
30 #include <ns3/satellite-channel.h>
31 #include <ns3/satellite-link-results.h>
32 #include <ns3/satellite-mac.h>
33 #include <ns3/satellite-ncc.h>
34 #include <ns3/satellite-superframe-sequence.h>
35 #include <ns3/satellite-typedefs.h>
36 #include <ns3/traced-callback.h>
37 
38 #include <stdint.h>
39 #include <string>
40 
41 namespace ns3
42 {
43 
44 class OutputStreamWrapper;
45 
51 class SatGwHelper : public Object
52 {
53  public:
57  typedef struct
58  {
65 
70  static TypeId GetTypeId(void);
71  TypeId GetInstanceTypeId(void) const;
72 
76  SatGwHelper();
77 
82  SatGwHelper(SatTypedefs::CarrierBandwidthConverter_t carrierBandwidthConverter,
83  uint32_t fwdLinkCarrierCount,
84  Ptr<SatSuperframeSeq> seq,
88  RandomAccessSettings_s randomAccessSettings);
89 
90  virtual ~SatGwHelper()
91  {
92  }
93 
94  /*
95  * Initializes the GW helper based on attributes
96  * \param lrRcs2 return link results
97  * \param lrFwd DVB-S2 or DVB-S2X link results
98  * \param dvbVersion The DVB version chosen
99  * \param useScpc Use SCPC on return feeder (and then lrFwd link results)
100  */
101  void Initialize(Ptr<SatLinkResultsRtn> lrRcs2,
102  Ptr<SatLinkResultsFwd> lrFwd,
103  SatEnums::DvbVersion_t dvbVersion,
104  bool useScpc);
105 
111  Ptr<SatBbFrameConf> GetBbFrameConf() const;
112 
123  void SetDeviceAttribute(std::string name, const AttributeValue& value);
124 
135  void SetChannelAttribute(std::string name, const AttributeValue& value);
136 
146  void SetPhyAttribute(std::string name, const AttributeValue& value);
147 
166  NetDeviceContainer Install(NodeContainer c,
167  uint32_t gwId,
168  uint32_t satId,
169  uint32_t beamId,
170  uint32_t feederSatId,
171  uint32_t feederBeamId,
172  Ptr<SatChannel> fCh,
173  Ptr<SatChannel> rCh,
175  Ptr<SatNcc> ncc,
176  Ptr<SatLowerLayerServiceConf> llsConf);
177 
192  virtual Ptr<NetDevice> Install(Ptr<Node> n,
193  uint32_t gwId,
194  uint32_t satId,
195  uint32_t beamId,
196  uint32_t feederSatId,
197  uint32_t feederBeamId,
198  Ptr<SatChannel> fCh,
199  Ptr<SatChannel> rCh,
201  Ptr<SatNcc> ncc,
202  Ptr<SatLowerLayerServiceConf> llsConf) = 0;
203 
209  void EnableCreationTraces(Ptr<OutputStreamWrapper> stream, CallbackBase& cb);
210 
211  protected:
214  Ptr<SatSuperframeSeq> m_superframeSeq;
215 
216  Ptr<SatBbFrameConf> m_bbFrameConf;
217 
218  // The control message container callbacks
222 
223  ObjectFactory m_channelFactory;
224  ObjectFactory m_deviceFactory;
225 
226  /*
227  * Configured dedicated access interference model for the return link. Set as an attribute.
228  */
230 
231  /*
232  * Configured error model for the return link. Set as an attribute.
233  */
235 
236  /*
237  * Constant error rate for dedicated access in the RTN link.
238  */
240 
241  /*
242  * Return channel link results (DVB-RCS2) are created if ErrorModel
243  * is configured to be AVI. Note, that only one instance of the
244  * link results is needed for all GWs.
245  */
246  Ptr<SatLinkResults> m_linkResults;
247 
251  TracedCallback<std::string> m_creationTrace;
252 
253  double m_symbolRate;
254 
260 
265 
270 };
271 
272 } // namespace ns3
273 
274 #endif /* SATELLITE_GW_HELPER_H */
FwdSchedulingAlgorithm_t
The scheduling algorithm used to fill the BBFrames.
RandomAccessModel_t
The defined random access models.
DvbVersion_t
The scheduling algorithm used to fill the BBFrames.
Creates needed objects for GW nodes like SatOrbiterNetDevice objects.
Ptr< SatSuperframeSeq > m_superframeSeq
SatPhy::ErrorModel m_errorModel
ObjectFactory m_channelFactory
void SetChannelAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Channel created by the helper.
void Initialize(Ptr< SatLinkResultsRtn > lrRcs2, Ptr< SatLinkResultsFwd > lrFwd, SatEnums::DvbVersion_t dvbVersion, bool useScpc)
void SetDeviceAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each NetDevice created by the helper.
void SetPhyAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Phy created by the helper.
static TypeId GetTypeId(void)
Get the type ID.
SatMac::SendCtrlMsgCallback m_sendCtrlCb
RandomAccessSettings_s m_raSettings
The used random access model settings.
TracedCallback< std::string > m_creationTrace
Trace callback for creation traces.
virtual Ptr< NetDevice > Install(Ptr< Node > n, uint32_t gwId, uint32_t satId, uint32_t beamId, uint32_t feederSatId, uint32_t feederBeamId, Ptr< SatChannel > fCh, Ptr< SatChannel > rCh, SatPhy::ChannelPairGetterCallback cbChannel, Ptr< SatNcc > ncc, Ptr< SatLowerLayerServiceConf > llsConf)=0
void EnableCreationTraces(Ptr< OutputStreamWrapper > stream, CallbackBase &cb)
Enables creation traces to be written in given file.
SatEnums::FwdSchedulingAlgorithm_t m_fwdSchedulingAlgorithm
The forward link algorithm used.
bool m_enableChannelEstimationError
Enable channel estimation error modeling at forward link receiver (= UT).
Ptr< SatBbFrameConf > GetBbFrameConf() const
Get BB frame configuration.
SatMac::ReadCtrlMsgCallback m_readCtrlCb
ObjectFactory m_deviceFactory
Ptr< SatBbFrameConf > m_bbFrameConf
Ptr< SatLinkResults > m_linkResults
TypeId GetInstanceTypeId(void) const
SatMac::ReserveCtrlMsgCallback m_reserveCtrlCb
SatGwHelper()
Default constructor.
SatPhy::InterferenceModel m_daInterferenceModel
SatTypedefs::CarrierBandwidthConverter_t m_carrierBandwidthConverter
NetDeviceContainer Install(NodeContainer c, uint32_t gwId, uint32_t satId, uint32_t beamId, uint32_t feederSatId, uint32_t feederBeamId, Ptr< SatChannel > fCh, Ptr< SatChannel > rCh, SatPhy::ChannelPairGetterCallback cbChannel, Ptr< SatNcc > ncc, Ptr< SatLowerLayerServiceConf > llsConf)
Callback< uint32_t, Ptr< SatControlMessage > > ReserveCtrlMsgCallback
Callback to reserve an id and initially store the control message.
Callback< uint32_t, uint32_t > SendCtrlMsgCallback
Callback to send a control message and allocate a recv ID for it.
Callback< Ptr< SatControlMessage >, uint32_t > ReadCtrlMsgCallback
Callback to read control messages from container storing control messages.
Callback< SatChannelPair::ChannelPair_t, uint32_t, uint32_t > ChannelPairGetterCallback
Callback for retrieving a pair of SatChannel associated to a beam.
InterferenceEliminationModel
Interference cancelation model enum.
RandomAccessCollisionModel
Random access collision model enum.
InterferenceModel
Interference model enum.
Callback< double, SatEnums::ChannelType_t, uint32_t, SatEnums::CarrierBandwidthType_t > CarrierBandwidthConverter_t
Callback for carrier bandwidths.
SatArqSequenceNumber is handling the sequence numbers for the ARQ process.
SatPhyRxCarrierConf::InterferenceModel m_raInterferenceModel
SatPhyRxCarrierConf::InterferenceEliminationModel m_raInterferenceEliminationModel
SatEnums::RandomAccessModel_t m_randomAccessModel
SatPhyRxCarrierConf::RandomAccessCollisionModel m_raCollisionModel