00001 00002 /* 00003 * routecache.h 00004 * Copyright (C) 2000 by the University of Southern California 00005 * $Id: routecache.h,v 1.7 2005/08/25 18:58:05 johnh Exp $ 00006 * 00007 * This program is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU General Public License, 00009 * version 2, as published by the Free Software Foundation. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License along 00017 * with this program; if not, write to the Free Software Foundation, Inc., 00018 * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 00019 * 00020 * 00021 * The copyright of this module includes the following 00022 * linking-with-specific-other-licenses addition: 00023 * 00024 * In addition, as a special exception, the copyright holders of 00025 * this module give you permission to combine (via static or 00026 * dynamic linking) this module with free software programs or 00027 * libraries that are released under the GNU LGPL and with code 00028 * included in the standard release of ns-2 under the Apache 2.0 00029 * license or under otherwise-compatible licenses with advertising 00030 * requirements (or modified versions of such code, with unchanged 00031 * license). You may copy and distribute such a system following the 00032 * terms of the GNU GPL for this module and the licenses of the 00033 * other code concerned, provided that you include the source code of 00034 * that other code when and as the GNU GPL requires distribution of 00035 * source code. 00036 * 00037 * Note that people who make modified versions of this module 00038 * are not obligated to grant this special exception for their 00039 * modified versions; it is their choice whether to do so. The GNU 00040 * General Public License gives permission to release a modified 00041 * version without this exception; this exception also makes it 00042 * possible to release a modified version which carries forward this 00043 * exception. 00044 * 00045 */ 00046 00047 // Other copyrights might apply to parts of this software and are so 00048 // noted when applicable. 00049 // 00050 // Ported from CMU/Monarch's code, appropriate copyright applies. 00051 /* -*- c++ -*- 00052 routecache.h 00053 00054 Interface all route caches must support 00055 00056 */ 00057 00058 #ifndef _routecache_h 00059 #define _routecache_h 00060 00061 extern "C" { 00062 #include <stdarg.h> 00063 }; 00064 00065 #include <object.h> 00066 #include <trace.h> 00067 00068 #include "path.h" 00069 00070 #ifdef DSR_CACHE_STATS 00071 class RouteCache; 00072 #include <dsr/cache_stats.h> 00073 #endif 00074 00075 class RouteCache : public TclObject { 00076 00077 public: 00078 RouteCache(); 00079 ~RouteCache(); 00080 00081 virtual void noticeDeadLink(const ID&from, const ID& to, Time t) = 0; 00082 // the link from->to isn't working anymore, purge routes containing 00083 // it from the cache 00084 00085 virtual void noticeRouteUsed(const Path& route, Time t, 00086 const ID& who_from) = 0; 00087 // tell the cache about a route we saw being used 00088 // if first tested is set, then we assume the first link was recently 00089 // known to work 00090 00091 virtual void addRoute(const Path& route, Time t, const ID& who_from) = 0; 00092 // add this route to the cache (presumably we did a route request 00093 // to find this route and don't want to lose it) 00094 00095 virtual bool findRoute(ID dest, Path& route, int for_use) = 0; 00096 // if there is a cached path from us to dest returns true and fills in 00097 // the route accordingly. returns false otherwise 00098 // if for_use, then we assume that the node really wants to keep 00099 // the returned route 00100 00101 virtual int command(int argc, const char*const* argv); 00102 void trace(char* fmt, ...); 00103 00104 // ******************************************************* 00105 00106 int pre_addRoute(const Path& route, Path &rt, 00107 Time t, const ID& who_from); 00108 // returns 1 if the Route should be added to the cache, 0 otherwise. 00109 00110 int pre_noticeRouteUsed(const Path& p, Path& stub, 00111 Time t, const ID& who_from); 00112 // returns 1 if the Route should be added to the cache, 0 otherwise. 00113 00114 #ifdef DSR_CACHE_STATS 00115 MobiHandler mh; 00116 struct cache_stats stat; 00117 00118 virtual void periodic_checkCache() = 0; 00119 int checkRoute_logall(Path *p, int action, int start); 00120 #endif 00121 00122 00123 //********************************************************** 00124 00125 ID MAC_id, net_id; 00126 virtual void dump(FILE *out); 00127 00128 protected: 00129 Trace *logtarget; 00130 }; 00131 00132 RouteCache * makeRouteCache(); 00133 // return a ref to the route cache that should be used in this sim 00134 00135 #endif // _routecache_h
1.4.6