Source: ../../policy/common/elem_set.hh
|
|
|
|
// -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*-
// vim:set sts=4 ts=8:
// Copyright (c) 2001-2009 XORP, Inc.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License, Version 2, June
// 1991 as published by the Free Software Foundation. Redistribution
// and/or modification of this program under the terms of any other
// version of the GNU General Public License is not permitted.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For more details,
// see the GNU General Public License, Version 2, a copy of which can be
// found in the XORP LICENSE.gpl file.
//
// XORP Inc, 2953 Bunker Hill Lane, Suite 204, Santa Clara, CA 95054, USA;
// http://xorp.net
// $XORP: xorp/policy/common/elem_set.hh,v 1.15 2009/01/05 18:31:06 jtc Exp $
#ifndef __POLICY_COMMON_ELEM_SET_HH__
#define __POLICY_COMMON_ELEM_SET_HH__
#include "element_base.hh"
#include "element.hh"
#include <string>
#include <set>
class ElemSet : public Element {
public:
ElemSet(Hash hash) : Element(hash) {}
virtual ~ElemSet() {}
virtual void erase(const ElemSet&) = 0;
};
/**
* @short A set of elements.
*
* All sets hold a string representation of the elements. All type information
* will be lost, as elements will all be promoted to strings.
*/
template <class T>
class ElemSetAny : public ElemSet {
public:
typedef set<T> Set;
typedef typename Set::iterator iterator;
typedef typename Set::const_iterator const_iterator;
static const char* id;
static Hash _hash;
ElemSetAny(const Set& val);
/**
* @param c_str initialize from string in the form element1,element2,...
*/
ElemSetAny(const char* c_str);
ElemSetAny();
/**
* @return string representation of set.
*/
string str() const;
/**
* @param s element to insert.
*/
void insert(const T& s);
/**
* Insert all elements of other set.
*
* @param s set to insert.
*/
void insert(const ElemSetAny<T>& s);
/**
* Left and right sets are identical [same elements and size].
*
* @param rhs set to compare with
*/
bool operator==(const ElemSetAny<T>& rhs) const;
/**
* Left and right are not identical
*
* @param rhs set to compare with
*/
bool operator!=(const ElemSetAny<T>& rhs) const;
/**
* All elements on left match, but right has more elments.
*
* @param rhs set to compare with
*/
bool operator<(const ElemSetAny<T>& rhs) const;
/**
* All elements on right match, but left has more elements.
*
* @param rhs set to compare with
*/
bool operator>(const ElemSetAny<T>& rhs) const;
/**
* Left is a subset of right.
*
* @param rhs set to compare with
*/
bool operator<=(const ElemSetAny<T>& rhs) const;
/**
* Right is a subset of left.
*
* @param rhs set to compare with
*/
bool operator>=(const ElemSetAny<T>& rhs) const;
/**
* All elements on left match, but right has more.
*
* May only be true if left is an empty set.
*
* @param rhs element to compare with.
*/
bool operator<(const T& rhs) const;
/**
* All elements on on right match, but left has more.
*
* Will be true if the element is present in the set, and the set contains
* at least one more element.
*
* @param rhs element to compare with.
*/
bool operator>(const T& rhs) const;
/**
* Left and right are identical.
*
* Will be true in a single element set which contains the rhs element.
*
* @param rhs element to compare with.
*/
bool operator==(const T& rhs) const;
/**
* Disjoint sets.
*
* Will be true if element is not contained in set.
*
* @param rhs element to compare with.
*/
bool operator!=(const T& rhs) const;
/**
* Left is a subset of right.
*
* Will be true if set is empty or contains rhs.
*
* @param rhs element to compare with.
*/
bool operator<=(const T& rhs) const;
/**
* Right is a subset of left.
*
* Will be true if element is contained in set.
*
* @param rhs element to compare with.
*/
bool operator>=(const T& rhs) const;
/**
* @return true if intersection is not empty
*/
bool nonempty_intersection(const ElemSetAny<T>& rhs) const;
/**
* Removes elements in set.
*
* @param s elements to remove.
*/
void erase(const ElemSetAny<T>& rhs);
void erase(const ElemSet& rhs);
/**
* Obtain iterator for set.
*
* @return iterator for the set.
*/
iterator begin();
/**
* Obtain an iterator for the end.
*
* @return iterator for the end of the set.
*/
iterator end();
/**
* Obtain const iterator for set.
*
* @return const iterator for the set.
*/
const_iterator begin() const;
/**
* Obtain an const iterator for the end.
*
* @return const iterator for the end of the set.
*/
const_iterator end() const;
const char* type() const;
private:
Set _val;
};
// define set types
typedef ElemSetAny<ElemU32> ElemSetU32;
typedef ElemSetAny<ElemCom32> ElemSetCom32;
typedef ElemSetAny<ElemIPv4Net> ElemSetIPv4Net;
typedef ElemSetAny<ElemIPv6Net> ElemSetIPv6Net;
typedef ElemSetAny<ElemStr> ElemSetStr;
#endif // __POLICY_COMMON_ELEM_SET_HH__
Generated by: pavlin on kobe.xorp.net on Wed Jan 7 19:11:01 2009, using kdoc 2.0a54+XORP.