#include <CSVRequestHandler.h>
Public Types | |
typedef map< string, p_request_handler > ::const_iterator | Handler_citer |
typedef map< string, p_request_handler >::iterator | Handler_iter |
Public Member Functions | |
virtual bool | add_handler (const string &handler_name, p_request_handler handler_method) |
add a handler method to the request handler that knows how to fill in a specific response object | |
CSVRequestHandler (string name) | |
virtual void | dump (ostream &strm) const |
dumps information about this object | |
virtual p_request_handler | find_handler (const string &handler_name) |
find the method that can handle the specified response object type | |
virtual string | get_handler_names () |
return a comma separated list of response object types handled by this request handler | |
virtual const string & | get_name () const |
virtual bool | remove_handler (const string &handler_name) |
remove the specified handler method from this request handler | |
virtual | ~CSVRequestHandler (void) |
Static Public Member Functions | |
static bool | csv_build_das (BESDataHandlerInterface &dhi) |
static bool | csv_build_data (BESDataHandlerInterface &dhi) |
static bool | csv_build_dds (BESDataHandlerInterface &dhi) |
static bool | csv_build_help (BESDataHandlerInterface &dhi) |
static bool | csv_build_vers (BESDataHandlerInterface &dhi) |
Definition at line 40 of file CSVRequestHandler.h.
typedef map< string, p_request_handler >::const_iterator BESRequestHandler::Handler_citer [inherited] |
Definition at line 83 of file BESRequestHandler.h.
typedef map< string, p_request_handler >::iterator BESRequestHandler::Handler_iter [inherited] |
Definition at line 84 of file BESRequestHandler.h.
CSVRequestHandler::CSVRequestHandler | ( | string | name | ) |
Definition at line 65 of file CSVRequestHandler.cc.
References BESRequestHandler::add_handler(), csv_build_das(), csv_build_data(), csv_build_dds(), csv_build_help(), csv_build_vers(), DAS_RESPONSE, DATA_RESPONSE, DDS_RESPONSE, HELP_RESPONSE, and VERS_RESPONSE.
CSVRequestHandler::~CSVRequestHandler | ( | void | ) | [virtual] |
Definition at line 75 of file CSVRequestHandler.cc.
bool BESRequestHandler::add_handler | ( | const string & | handler_name, | |
p_request_handler | handler_method | |||
) | [virtual, inherited] |
add a handler method to the request handler that knows how to fill in a specific response object
Add a handler method for a specific response object to the request handler. The handler method takes a reference to a BESDataHandlerInterface and returns bool, true if the response object is filled in successfully by the method, false otherwise.
handler_name | name of the response object this method can fill in | |
handler_method | a function pointer to the method that can fill in the specified response object |
Definition at line 51 of file BESRequestHandler.cc.
References BESRequestHandler::find_handler().
Referenced by BESDapRequestHandler::BESDapRequestHandler(), CSVRequestHandler(), and SampleRequestHandler::SampleRequestHandler().
bool CSVRequestHandler::csv_build_das | ( | BESDataHandlerInterface & | dhi | ) | [static] |
Definition at line 80 of file CSVRequestHandler.cc.
References BESContainer::access(), BESDataHandlerInterface::container, csv_read_attributes(), BESDASResponse::get_das(), BESResponseHandler::get_response_object(), and BESDataHandlerInterface::response_handler.
Referenced by CSVRequestHandler().
bool CSVRequestHandler::csv_build_data | ( | BESDataHandlerInterface & | dhi | ) | [static] |
Definition at line 170 of file CSVRequestHandler.cc.
References BESContainer::access(), BESDEBUG, BESDataHandlerInterface::container, csv_read_attributes(), csv_read_descriptors(), BESDataHandlerInterface::data, BESContainer::get_constraint(), BESDataDDSResponse::get_dds(), BESResponseHandler::get_response_object(), POST_CONSTRAINT, and BESDataHandlerInterface::response_handler.
Referenced by CSVRequestHandler().
bool CSVRequestHandler::csv_build_dds | ( | BESDataHandlerInterface & | dhi | ) | [static] |
Definition at line 119 of file CSVRequestHandler.cc.
References BESContainer::access(), BESDEBUG, BESDataHandlerInterface::container, csv_read_attributes(), csv_read_descriptors(), BESDataHandlerInterface::data, BESContainer::get_constraint(), BESDDSResponse::get_dds(), BESResponseHandler::get_response_object(), POST_CONSTRAINT, and BESDataHandlerInterface::response_handler.
Referenced by CSVRequestHandler().
bool CSVRequestHandler::csv_build_help | ( | BESDataHandlerInterface & | dhi | ) | [static] |
Definition at line 236 of file CSVRequestHandler.cc.
References BESInfo::begin_tag(), DAS_RESPONSE, DATA_RESPONSE, DDS_RESPONSE, BESInfo::end_tag(), BESResponseHandler::get_response_object(), HELP_RESPONSE, PACKAGE_NAME, PACKAGE_VERSION, BESDataHandlerInterface::response_handler, and VERS_RESPONSE.
Referenced by CSVRequestHandler().
bool CSVRequestHandler::csv_build_vers | ( | BESDataHandlerInterface & | dhi | ) | [static] |
Definition at line 221 of file CSVRequestHandler.cc.
References BESVersionInfo::add_module(), BESResponseHandler::get_response_object(), PACKAGE_NAME, PACKAGE_VERSION, and BESDataHandlerInterface::response_handler.
Referenced by CSVRequestHandler().
void CSVRequestHandler::dump | ( | ostream & | strm | ) | const [virtual] |
dumps information about this object
Displays the pointer value of this instance, the name of the request handler, and the names of all registered handler functions
strm | C++ i/o stream to dump the information to |
Reimplemented from BESRequestHandler.
Definition at line 260 of file CSVRequestHandler.cc.
References BESIndent::Indent(), BESIndent::LMarg(), and BESIndent::UnIndent().
p_request_handler BESRequestHandler::find_handler | ( | const string & | handler_name | ) | [virtual, inherited] |
find the method that can handle the specified response object type
Find the method that can handle the specified response object type. The response object type is the same as the handler name.
handler_name | name of the method that can fill in the response object type |
Definition at line 93 of file BESRequestHandler.cc.
Referenced by BESRequestHandler::add_handler(), BESRequestHandlerList::execute_all(), and BESRequestHandlerList::execute_current().
string BESRequestHandler::get_handler_names | ( | ) | [virtual, inherited] |
return a comma separated list of response object types handled by this request handler
Definition at line 112 of file BESRequestHandler.cc.
virtual const string& BESRequestHandler::get_name | ( | ) | const [inline, virtual, inherited] |
Definition at line 86 of file BESRequestHandler.h.
bool BESRequestHandler::remove_handler | ( | const string & | handler_name | ) | [virtual, inherited] |
remove the specified handler method from this request handler
handler_name | name of the method to be removed, same as the name of the response object |
Definition at line 70 of file BESRequestHandler.cc.