Siena Fast Forwarding Documentation (v. 1.9.4)

siena::BXTable Class Reference

implementation of the forwarding table based on Bloom filters and a data structure used for matching called XDD. More...

#include <bxtable.h>

Inheritance diagram for siena::BXTable:
siena::ForwardingTable

List of all members.

Public Member Functions

virtual void ifconfig (if_t, const predicate &) throw (bad_constraint)
 Associates a predicate to an interface.
virtual void consolidate () throw ()
 Prepares the forwarding table for matching.
virtual void match (const message &, MatchHandler &) const throw ()
 Processes a message, calling the output() function on the given MatchHandler object for each matching interface.
virtual void match (const message &, MatchMessageHandler &) const throw ()
 Processes a message, calling the output() function on the given MatchMessageHandler object for each matching interface.
virtual void clear () throw ()
 Clears the forwarding table.
virtual void clear_recycle () throw ()
 Clears the forwarding table.
virtual size_t allocated_bytesize () const throw ()
 Memory allocated by the forwarding table.
virtual size_t bytesize () const throw ()
 Memory used by the forwarding table.

Protected Attributes

FTAllocator memory
 Protected allocator of the forwarding table.
BXPredicate * plist
 list of predicates.

Detailed Description

implementation of the forwarding table based on Bloom filters and a data structure used for matching called XDD.

Like BTable, this implementation is based on encoded filters and messages. However, instead of using a linear scan of the set of encoded filters, this implementation indexes the bitvectors representing filters with a decision diagram.

WARNING: This implementation is provided primarily for experimental purposes. See BTable for details.


Member Function Documentation

virtual size_t siena::BXTable::allocated_bytesize (  )  const throw () [virtual]

Memory allocated by the forwarding table.

returns the number of bytes of memory allocated by the forwarding table. This value is always greater than or equal to the value returned by bytesize().

Implements siena::ForwardingTable.

virtual size_t siena::BXTable::bytesize (  )  const throw () [virtual]

Memory used by the forwarding table.

returns the number of bytes of memory used by the forwarding table. This value is always less than or equal to the value returned by allocated_bytesize().

Implements siena::ForwardingTable.

virtual void siena::BXTable::clear (  )  throw () [virtual]

Clears the forwarding table.

This method removes all the associations from the forwarding table and releases allocated memory. After a call to this method, the forwarding table is ready to be configured with ifconfig().

See also:
ifconfig()
consolidate()

Implements siena::ForwardingTable.

virtual void siena::BXTable::clear_recycle (  )  throw () [virtual]

Clears the forwarding table.

This method removes all the associations from the forwarding table recycling the allocated memory. After a call to this method, the forwarding table is ready to be configured with ifconfig().

See also:
ifconfig()
consolidate()

Implements siena::ForwardingTable.

virtual void siena::BXTable::consolidate (  )  throw () [virtual]

Prepares the forwarding table for matching.

This function processes the forwarding table, packing some of its internal data structures and preparing them to be used to match events. This function must therefore be called after all the necessary calls to ifconfig and before matching messages with match().

The forwarding table can be reset by calling clear or clear_recycle.

See also:
clear()
recycle_clear()

Reimplemented from siena::ForwardingTable.

virtual void siena::BXTable::ifconfig ( if_t  ,
const predicate  
) throw (bad_constraint) [virtual]

Associates a predicate to an interface.

This is the method that constructs the forwarding table. This method must be called once for each interface, after the forwarding table is constructed or after it has been cleared. Using this method twice on the same interface without clearing the forwarding table has undefined effects.

See also:
consolidate()

Implements siena::ForwardingTable.

virtual void siena::BXTable::match ( const message ,
MatchMessageHandler  
) const throw () [virtual]

Processes a message, calling the output() function on the given MatchMessageHandler object for each matching interface.

See also:
consolidate()
ifconfig()

Implements siena::ForwardingTable.

virtual void siena::BXTable::match ( const message ,
MatchHandler  
) const throw () [virtual]

Processes a message, calling the output() function on the given MatchHandler object for each matching interface.

Matches a message against the predicates stored in the forwarding table. The result is processed through the MatchHandler passed as a parameter to this function.

Notice that the forwarding table must be consolidated by calling siena::ForwardingTable::consolidate() before this function is called.

See also:
consolidate()

Implements siena::ForwardingTable.


Member Data Documentation

FTAllocator siena::BXTable::memory [protected]

Protected allocator of the forwarding table.

All the data structure forming the forwarding table are allocated through this memory management system.

BXPredicate* siena::BXTable::plist [protected]

list of predicates.

each link in this linked list is a pair <predicate,interface-id>


The documentation for this class was generated from the following file: