Source: ../../rib/rt_tab_debug.hh
|
|
|
|
// -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*-
// Copyright (c) 2001-2003 International Computer Science Institute
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software")
// to deal in the Software without restriction, subject to the conditions
// listed in the XORP LICENSE file. These conditions include: you must
// preserve this copyright notice, and you cannot mention the copyright
// holders in advertising related to the Software without their permission.
// The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This
// notice is a summary of the XORP LICENSE file; the license in that file is
// legally binding.
// $XORP: xorp/rib/rt_tab_debug.hh,v 1.1 2003/09/28 13:10:41 mjh Exp $
#ifndef __RIB_RT_TAB_DEBUG_HH__
#define __RIB_RT_TAB_DEBUG_HH__
#include "rt_tab_base.hh"
template<class A>
class ExpectedRouteChange {
public:
ExpectedRouteChange(bool add, const IPRouteEntry<A>& route);
bool matches_add(const IPRouteEntry<A>& route) const;
bool matches_delete(const IPRouteEntry<A>* route) const;
string str() const;
private:
bool _add; //true
IPRouteEntry<A> _route;
};
/**
* @short RouteTable used for debugging
*/
template<class A>
class DebugTable : public RouteTable<A> {
public:
DebugTable(const string& tablename, RouteTable<A>* parent);
~DebugTable();
void expect_add(const IPRouteEntry<A>& route);
void expect_delete(const IPRouteEntry<A>& route);
int add_route(const IPRouteEntry<A>& route, RouteTable<A>* caller);
int delete_route(const IPRouteEntry<A>* , RouteTable<A>* caller);
const IPRouteEntry<A>* lookup_route(const IPNet<A>& net) const;
const IPRouteEntry<A>* lookup_route(const A& addr) const;
RouteRange<A>* lookup_route_range(const A& addr) const;
int type() const { return DEBUG_TABLE; }
RouteTable<A>* parent() { return _parent; }
void replumb(RouteTable<A>* old_parent, RouteTable<A>* new_parent);
string str() const;
private:
RouteTable<A>* _parent;
list <ExpectedRouteChange<A>*> _expected;
};
#endif // __RIB_RT_TAB_DEBUG_HH__
Generated by: pavlin on possum.icir.org on Thu Nov 6 23:47:07 2003, using kdoc 2.0a54+XORP. |