path.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:6k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * path.h
  3.  * Copyright (C) 2000 by the University of Southern California
  4.  * $Id: path.h,v 1.7 2005/08/25 18:58:05 johnh Exp $
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License,
  8.  * version 2, as 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 along
  16.  * with this program; if not, write to the Free Software Foundation, Inc.,
  17.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  18.  *
  19.  *
  20.  * The copyright of this module includes the following
  21.  * linking-with-specific-other-licenses addition:
  22.  *
  23.  * In addition, as a special exception, the copyright holders of
  24.  * this module give you permission to combine (via static or
  25.  * dynamic linking) this module with free software programs or
  26.  * libraries that are released under the GNU LGPL and with code
  27.  * included in the standard release of ns-2 under the Apache 2.0
  28.  * license or under otherwise-compatible licenses with advertising
  29.  * requirements (or modified versions of such code, with unchanged
  30.  * license).  You may copy and distribute such a system following the
  31.  * terms of the GNU GPL for this module and the licenses of the
  32.  * other code concerned, provided that you include the source code of
  33.  * that other code when and as the GNU GPL requires distribution of
  34.  * source code.
  35.  *
  36.  * Note that people who make modified versions of this module
  37.  * are not obligated to grant this special exception for their
  38.  * modified versions; it is their choice whether to do so.  The GNU
  39.  * General Public License gives permission to release a modified
  40.  * version without this exception; this exception also makes it
  41.  * possible to release a modified version which carries forward this
  42.  * exception.
  43.  *
  44.  */
  45. // Other copyrights might apply to parts of this software and are so
  46. // noted when applicable.
  47. //
  48. // Ported from CMU/Monarch's code, appropriate copyright applies.  
  49. /* -*- c++ -*- 
  50.    path.h
  51.    handles source routes
  52.    
  53. */
  54. #ifndef _path_h
  55. #define _path_h
  56. extern "C" {
  57. #include <stdio.h>
  58. #include <assert.h>
  59. }
  60. #include <packet.h>
  61. #include "hdr_sr.h"
  62. class Path; // forward declaration
  63. // state used for tracing the performance of the caches
  64. enum Link_Type {LT_NONE = 0, LT_TESTED = 1, LT_UNTESTED = 2};
  65. enum Log_Status {LS_NONE = 0, LS_UNLOGGED = 1, LS_LOGGED = 2};
  66. // some type conversion between exisiting NS code and old DSR sim
  67. typedef double Time;
  68. enum ID_Type {NONE = NS_AF_NONE, MAC = NS_AF_ILINK, IP = NS_AF_INET };
  69. struct ID {
  70.   friend class Path; 
  71.   ID() : type(NONE), t(-1), link_type(LT_NONE), log_stat(LS_NONE) {}
  72.   //  ID():addr(0),type(NONE) {} // remove for speed? -dam 1/23/98
  73.   //ID(unsigned long name, ID_Type t):addr(name),type(t), t(-1), link_type(LT_NONE),log_stat(LS_NONE)
  74.   //{
  75.   //assert(type == NONE || type == MAC || type == IP);
  76.   //}
  77.   ID(unsigned long name, ID_Type t):addr(name), type(t), t(-1), 
  78.     link_type(LT_NONE),log_stat(LS_NONE)
  79. {
  80. assert(type == NONE || type == MAC || type == IP);
  81. }
  82.   inline ID(const struct sr_addr &a): addr(a.addr), 
  83.     type((enum ID_Type) a.addr_type), t(-1), link_type(LT_NONE),
  84.   log_stat(LS_NONE)
  85. {
  86. assert(type == NONE || type == MAC || type == IP);
  87. }
  88.   inline void fillSRAddr(struct sr_addr& a) {
  89.   a.addr_type = (int) type;
  90.   a.addr = addr;
  91.   }    
  92.   inline nsaddr_t getNSAddr_t() const {
  93.   assert(type == IP); return addr;
  94.   }
  95.   inline bool operator == (const ID& id2) const {
  96.   return (type == id2.type) && (addr == id2.addr);
  97.   }
  98.   inline bool operator != (const ID& id2) const {return !operator==(id2);}
  99.   inline int size() const {return (type == IP ? 4 : 6);} 
  100.   void unparse(FILE* out) const;
  101.   char* dump() const;
  102.   unsigned long addr;
  103.   ID_Type type;
  104.   Time t; // when was this ID added to the route
  105.   Link_Type link_type;
  106.   Log_Status log_stat;
  107. };
  108. extern ID invalid_addr;
  109. extern ID IP_broadcast;
  110. class Path {
  111. friend void compressPath(Path& path);
  112. friend void CopyIntoPath(Path& to, const Path& from, int start, int stop);
  113. public:
  114.   Path();
  115.   Path(int route_len, const ID *route = NULL);
  116.   Path(const Path& old);
  117.   Path(const struct sr_addr *addrs, int len);
  118.   Path(struct hdr_sr *srh);
  119.   ~Path();
  120.   void fillSR(struct hdr_sr *srh);
  121.   inline ID& next() {assert(cur_index < len); return path[cur_index++];}
  122.   inline void resetIterator() {  cur_index = 0;}
  123.   inline void reset() {len = 0; cur_index = 0;}
  124.   inline void setIterator(int i) {assert(i>=0 && i<len); cur_index = i;}
  125.   inline void setLength(int l) {assert(l>=0 && l<=MAX_SR_LEN); len = l;}
  126.   inline ID& operator[] (int n) const {  
  127.     assert(n < len && n >= 0);
  128.     return path[n];}
  129.   void operator=(const Path& rhs);
  130.   bool operator==(const Path& rhs);
  131.   inline void appendToPath(const ID& id) { 
  132.     assert(len < MAX_SR_LEN); 
  133.     path[len++] = id;}
  134.   void appendPath(Path& p);
  135.   bool member(const ID& id) const;
  136.   bool member(const ID& net_id, const ID& MAC_id) const;
  137.   Path copy() const;
  138.   void copyInto(Path& to) const;
  139.   Path reverse() const;
  140.   void reverseInPlace();
  141.   void removeSection(int from, int to);
  142.   // the elements at indices from -> to-1 are removed from the path
  143.   inline bool full() const {return (len >= MAX_SR_LEN);}
  144.   inline int length() const {return len;}
  145.   inline int index() const {return cur_index;}
  146.   inline int &index() {return cur_index;}
  147.   int size() const; // # of bytes needed to hold path in packet
  148.   void unparse(FILE *out) const;
  149.   char *dump() const;
  150.   inline ID &owner() {return path_owner;}
  151.   void checkpath(void) const;
  152. private:
  153.   int len;
  154.   int cur_index;
  155.   ID* path;
  156.   ID path_owner;
  157. };
  158. void compressPath(Path& path);
  159. // take a path and remove any double backs from it
  160. // eg:  A B C B D --> A B D
  161. void CopyIntoPath(Path& to, const Path& from, int start, int stop);
  162. // sets to[0->(stop-start)] = from[start->stop]
  163. #endif // _path_h