// -*- 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/policy_statement.hh,v 1.17 2009/01/05 18:31:03 jtc Exp $ #ifndef __POLICY_POLICY_STATEMENT_HH__ #define __POLICY_POLICY_STATEMENT_HH__ #include <map> #include <set> #include <string> #include "libproto/config_node_id.hh" #include "policy/common/policy_exception.hh" #include "set_map.hh" #include "term.hh" class PolicyMap; typedef set<string> DEPS; /** * @short A policy statement is a collection of terms. */ class PolicyStatement { public: /** * @short Exception thrown on error such as when no term is found. */ class PolicyStatementErr : public PolicyException { public: PolicyStatementErr(const char* file, size_t line, const string& init_why = "") : PolicyException("PolicyStatementErr", file, line, init_why) {} }; typedef ConfigNodeIdMap<Term*> TermContainer; /** * @param name the name of the policy. * @param smap the SetMap. Used for dependency tracking. * @param pmap the PolicyMap. Used for dependency tracking. */ PolicyStatement(const string& name, SetMap& smap, PolicyMap& pmap); ~PolicyStatement(); /** * Append a term at the end of the policy. * * Caller must not delete / modify pointer. * * @param order node ID with position of term. * @param term term to append to policy. */ void add_term(const ConfigNodeId& order, Term* term); /** * Throws exception if no term is found. * * @return term requested. * @param name name of term to find. */ Term& find_term(const string& name) const; /** * Checks if a term already exists. * * @return true if term exists, false otherwise. * @param name term name. */ bool term_exists(const string& name) const; /** * Attempts to delete a term. * * @return true on successful delete, false otherwise. * @param name name of term to delete. */ bool delete_term(const string& name); /** * Perform operations at the end of the policy. */ void set_policy_end(); /** * @return name of policy. */ const string& name() const; /** * Visitor implementation. * * @param v visitor to visit policy. */ bool accept(Visitor& v); /** * @return terms of this policy */ TermContainer& terms(); /** * Replace the set dependencies. * * @param sets the new sets this policy is dependent on. */ void set_dependency(const DEPS& sets, const DEPS& policies); private: typedef list<pair<ConfigNodeId, Term*> > OOL; /** * Delete all set dependencies of this policy. */ void del_dependencies(); /** * Get the iterator for a specific term. * * @return iterator for term. * @param name name of the term. */ TermContainer::iterator get_term_iter(const string& name); TermContainer::const_iterator get_term_iter(const string& name) const; /** * Get the iterator for a term that is out of order. * * @param order the order for the term. * @return iterator for term. */ OOL::iterator find_out_of_order_term(const ConfigNodeId& order); /** * Get the iterator for a term that is out of order. * * @param name the name for the term. * @return iterator for term. */ OOL::iterator find_out_of_order_term(const string& name); OOL::const_iterator find_out_of_order_term(const string& name) const; string _name; TermContainer _terms; list<pair<ConfigNodeId, Term*> > _out_of_order_terms; DEPS _sets; DEPS _policies; SetMap& _smap; PolicyMap& _pmap; // not impl PolicyStatement(const PolicyStatement&); PolicyStatement& operator=(const PolicyStatement&); }; #endif // __POLICY_POLICY_STATEMENT_HH__