A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
candidate-queue.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright 2007 University of Washington
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: Craig Dowell (craigdo@ee.washington.edu)
19  */
20 
21 #ifndef CANDIDATE_QUEUE_H
22 #define CANDIDATE_QUEUE_H
23 
24 #include <stdint.h>
25 #include <list>
26 #include "ns3/ipv4-address.h"
27 
28 namespace ns3 {
29 
30 class SPFVertex;
31 
50 {
51 public:
58  CandidateQueue ();
59 
67  virtual ~CandidateQueue ();
68 
76  void Clear (void);
77 
91  void Push (SPFVertex *vNew);
92 
104  SPFVertex* Pop (void);
105 
118  SPFVertex* Top (void) const;
119 
126  bool Empty (void) const;
127 
136  uint32_t Size (void) const;
137 
147  SPFVertex* Find (const Ipv4Address addr) const;
148 
163  void Reorder (void);
164 
165 private:
173 
190  static bool CompareSPFVertex (const SPFVertex* v1, const SPFVertex* v2);
191 
192  typedef std::list<SPFVertex*> CandidateList_t;
194 
195  friend std::ostream& operator<< (std::ostream& os, const CandidateQueue& q);
196 };
197 
198 } // namespace ns3
199 
200 #endif /* CANDIDATE_QUEUE_H */