EMANE  1.0.1
rfpipe/pcrmanager.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 - Adjacent Link LLC, Bridgewater, New Jersey
3  * Copyright (c) 2010 - DRS CenGen, LLC, Columbia, Maryland
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * * Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in
14  * the documentation and/or other materials provided with the
15  * distribution.
16  * * Neither the name of DRS CenGen, LLC nor the names of its
17  * contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 
35 #ifndef RFPIPEMAC_PCRMANAGER_HEADER_
36 #define RFPIPEMAC_PCRMANAGER_HEADER_
37 
38 #include "emane/types.h"
39 #include "emane/startexception.h"
41 
42 #include <libxml/parser.h>
43 
44 #include <string>
45 #include <vector>
46 #include <map>
47 
48 namespace EMANE
49 {
50  namespace Models
51  {
52  namespace RFPipe
53  {
54 
62  class PCRManager
63  {
64 
70  struct PCREntry {
71  float fSINR_;
72  float fPOR_;
73 
74  PCREntry () :
75  fSINR_{},
76  fPOR_{}
77  { }
78 
79  PCREntry (float fSinr, float fPor) :
80  fSINR_{fSinr},
81  fPOR_{fPor}
82  { }
83  };
84 
85  typedef std::vector<PCREntry> PCREntryVector;
86  typedef PCREntryVector::iterator PCREntryVectorIter;
87 
88  typedef std::vector<float> PORVector;
89  typedef PORVector::iterator PORVectorIter;
90 
91 
92  public:
94 
95  ~PCRManager();
96 
104  void load(const std::string &uri)
105  throw (StartException);
106 
115  float getPCR(float fSinr, size_t size);
116 
117  private:
118  void Open(const std::string & uri, xmlParserCtxtPtr * ppContext, xmlDoc ** ppDocument, xmlNode ** ppRoot);
119 
120  void Close(xmlParserCtxtPtr * ppContext, xmlDoc ** ppDocument);
121 
122  std::string getAttribute (xmlNodePtr cur, const xmlChar * id);
123 
124  std::string getContent (xmlNodePtr cur);
125 
126  void getTable (xmlNodePtr cur);
127 
128  void getRows (xmlNodePtr cur);
129 
130  void interpolate();
131 
132  const EMANE::NEMId id_;
133 
134  EMANE::PlatformServiceProvider * pPlatformService_;
135 
136  PCREntryVector pcrEntryVector_;
137 
138  PORVector porVector_;
139 
140  size_t tablePacketSize_;
141  };
142  }
143  }
144 }
145 
146 
147 #endif //RFPIPEMAC_PCRMANAGER_HEADER_
PCRManager(EMANE::NEMId id, EMANE::PlatformServiceProvider *pPlatformService)
float getPCR(float fSinr, size_t size)
The PlatformServiceProvider interface provides access to emulator services.
std::uint16_t NEMId
Definition: types.h:52
Component start exception is used to indicate an exception during transition to the start state...
Definition: agent.h:43
void load(const std::string &uri)