/* * Copyright (c) 2001-2005 International Computer Science Institute * See LICENSE file for licensing, conditions, and warranties on use. * * DO NOT EDIT THIS FILE - IT IS PROGRAMMATICALLY GENERATED * * Generated by 'tgt-gen'. * * $XORP: xorp/xrl/targets/profiler_base.hh,v 1.3 2005/03/25 02:55:06 pavlin Exp $ */ #ifndef __XRL_INTERFACES_PROFILER_BASE_HH__ #define __XRL_INTERFACES_PROFILER_BASE_HH__ #undef XORP_LIBRARY_NAME #define XORP_LIBRARY_NAME "XrlProfilerTarget" #include "libxorp/xlog.h" #include "libxipc/xrl_cmd_map.hh" class XrlProfilerTargetBase { protected: XrlCmdMap* _cmds; public: /** * Constructor. * * @param cmds an XrlCmdMap that the commands associated with the target * should be added to. This is typically the XrlRouter * associated with the target. */ XrlProfilerTargetBase(XrlCmdMap* cmds = 0); /** * Destructor. * * Dissociates instance commands from command map. */ virtual ~XrlProfilerTargetBase(); /** * Set command map. * * @param cmds pointer to command map to associate commands with. This * argument is typically a pointer to the XrlRouter associated with the * target. * * @return true on success, false if cmds is null or a command map has * already been supplied. */ bool set_command_map(XrlCmdMap* cmds); /** * Get Xrl instance name associated with command map. */ inline const string& name() const { return _cmds->name(); } /** * Get version string of instance. */ inline const char* version() const { return "profiler/0.0"; } protected: /** * Pure-virtual function that needs to be implemented to: * * Get name of Xrl Target */ virtual XrlCmdError common_0_1_get_target_name( // Output values, string& name) = 0; /** * Pure-virtual function that needs to be implemented to: * * Get version string from Xrl Target */ virtual XrlCmdError common_0_1_get_version( // Output values, string& version) = 0; /** * Pure-virtual function that needs to be implemented to: * * Get status of Xrl Target */ virtual XrlCmdError common_0_1_get_status( // Output values, uint32_t& status, string& reason) = 0; /** * Pure-virtual function that needs to be implemented to: * * Request clean shutdown of Xrl Target */ virtual XrlCmdError common_0_1_shutdown() = 0; /** * Pure-virtual function that needs to be implemented to: * * A log entry that is sent from a profile server. * * @param pname profiling variable. * * @param sec absolute time in seconds that this entry was created. * * @param usec absolute time in micro seconds that this entry was created. * * @param comment a comment to be appended to this entry. */ virtual XrlCmdError profile_client_0_1_log( // Input values, const string& pname, const uint32_t& sec, const uint32_t& usec, const string& comment) = 0; /** * Pure-virtual function that needs to be implemented to: * * Sent to notify the client that all log entries have been sent. * * @param pname profiling variable. */ virtual XrlCmdError profile_client_0_1_finished( // Input values, const string& pname) = 0; private: const XrlCmdError handle_common_0_1_get_target_name(const XrlArgs& in, XrlArgs* out); const XrlCmdError handle_common_0_1_get_version(const XrlArgs& in, XrlArgs* out); const XrlCmdError handle_common_0_1_get_status(const XrlArgs& in, XrlArgs* out); const XrlCmdError handle_common_0_1_shutdown(const XrlArgs& in, XrlArgs* out); const XrlCmdError handle_profile_client_0_1_log(const XrlArgs& in, XrlArgs* out); const XrlCmdError handle_profile_client_0_1_finished(const XrlArgs& in, XrlArgs* out); void add_handlers(); void remove_handlers(); }; #endif /* __XRL_INTERFACES_PROFILER_BASE_HH__ */