// -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*- // Copyright (c) 2001-2005 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/rtrmgr/conf_tree.hh,v 1.18 2005/03/25 02:54:34 pavlin Exp $ #ifndef __RTRMGR_CONF_TREE_HH__ #define __RTRMGR_CONF_TREE_HH__ #include <map> #include <list> #include <set> #include "conf_tree_node.hh" #include "module_manager.hh" #include "rtrmgr_error.hh" #include "xorp_client.hh" class TemplateTree; class CommandTree; class ConfTemplate; class ConfigTree { public: ConfigTree(TemplateTree *tt, bool verbose); virtual ~ConfigTree(); #if 0 ConfigTree& operator=(const ConfigTree& orig_tree); #endif bool parse(const string& configuration, const string& config_file, string& errmsg); void push_path(); void extend_path(const string& segment); void pop_path(); void add_node(const string& nodename) throw (ParseError); virtual ConfigTreeNode* create_node(const string& segment, const string& path, const TemplateTreeNode* ttn, ConfigTreeNode* parent_node, uid_t user_id, bool verbose) = 0; virtual ConfigTree* create_tree(TemplateTree *tt, bool verbose) = 0; void terminal_value(char* value, int type) throw (ParseError); list<string> path_as_segments() const; const TemplateTreeNode* find_template(const list<string>& path_segments) const; virtual ConfigTreeNode& root_node() = 0; virtual const ConfigTreeNode& const_root_node() const = 0; ConfigTreeNode* find_node(const list<string>& path); ConfigTreeNode* find_config_module(const string& module_name); string show_subtree(const list<string>& path_segments) const; string show_tree() const; string show_unannotated_tree() const; string tree_str() const; bool apply_deltas(uid_t user_id, const string& deltas, bool provisional_change, string& response); bool apply_deletions(uid_t user_id, const string& deletions, bool provisional_change, string& response); void retain_different_nodes(const ConfigTree& them, bool retain_changed_values); void retain_common_nodes(const ConfigTree& them); void add_default_children(); void expand_varname_to_matchlist(const string& varname, list<string>& matches) const; protected: string path_as_string(const list<string>& path_segments) const; string current_path_as_string() const; const ConfigTreeNode* find_config_node(const list<string>& path_segments) const; string _config_file; TemplateTree* _template_tree; //ConfigTreeNode _root_node; ConfigTreeNode* _current_node; list<string> _path_segments; list<size_t> _segment_lengths; bool _verbose; }; #endif // __RTRMGR_CONF_TREE_HH__