BES - Debugging Using besstandalone: Difference between revisions

From OPeNDAP Documentation
⧼opendap2-jumptonavigation⧽
(Created page with "When you need to debug a handler, there are several ways you do about it. First, you can use a run-time debugger like the one included with Eclipse (really GNU's ''gdb''), fall b...")
 
Line 58: Line 58:
</source>
</source>


The instrumentation macro is ''BESDEBUG''. To 'turn on' this and see the output, start ''besstandalone'' using the ''-d'' option. When you specify the option, you need to provide one argument which names the output sink for the debugging information and one or more of the 'selector names'. An example will make things clearer. To see the output from the above BESDEBUG call, you would this option to besstandalone: ''-d "cerr,h4"''.
The instrumentation macro is ''BESDEBUG''. To 'turn on' this and see the output, start ''besstandalone'' using the ''-d'' option. When you specify the option, you need to provide one argument which names the output sink for the debugging information and one or more of the 'selector names'. An example will make things clearer. To see the output from the above BESDEBUG call, you would this option to besstandalone: ''-d "cerr,h4"''. Here's how you would run it:


== Filtering binary output using getdap ==
== Filtering binary output using getdap ==

Revision as of 03:05, 8 May 2012

When you need to debug a handler, there are several ways you do about it. First, you can use a run-time debugger like the one included with Eclipse (really GNU's gdb), fall back on the tried and true 'print statements' or some other combination of program instrumentation and run-time diagnosis. In add cases, being able to run your handler as part of a command line program and not a server, will speed up and simplify the process.

We have designed a run-time debugging tool for just this purpose.

Review: Debugging using a client and the server

To test (and/or debug) your handler using the BES (server), you first build and install your new handler version. Then you modify the bes.conf file so that the handler will be loaded at run-time and start the server. Next you start up the bescmdln client and point it at the server using the hostname (likely localhost) and port number (again, likely the default of 10022). You can issue commands directly to bescmdln or pass it the name of a file of commands to run in sequence. Either way bescmdln prints whatever it get back from the BES to standard output.

What you would like

It would be far easier to be be able to run you handler as if it was the command line client and see the output directly. This is exactly what the command besstandalone does for you. Like the besctl start command, besstandalone reads an optional bes.config file and takes option debugging switches. Unlike besctl it does not start a server but it switches to 'client mode' and reads commands, printing the response from the BES plus any debugging output generated.

The command files used by bescmdln and besstandalone are identical, so files developed for one can be used with the other.

Examples

A sample command file that asks the BES for a DDS response (from $prefix/src/modules/hdf4_handler/bes-testsuite):

<?xml version="1.0" encoding="UTF-8"?>
<request reqID="some_unique_value" >
    <setContext name="dap_format">dap2</setContext>
    <setContainer name="data" space="catalog">/data/1990-S1700101.HDF.gz</setContainer>
    <define name="d">
	<container name="data" />
    </define>
    <get type="dds" definition="d" />
</request>

Here's how to run these commands using the server and bescmdln:

besctl start

bescmdln -h localhost -p 10022 -i 1990-S1700101.HDF.dds.bescmd

Here's the version using besstandalone:

besstandalone -c bes.conf -i 1990-S1700101.HDF.dds.bescmd

Some Tricks

Using besstandalone and the BESDEBUG instrumentation macro

The BES supports a flexible run-time instrumentation system that you can access using besstandalone (there are other ways too, see the Hyrax Admin Interface). Here's an example like of instrumentation:

void
HDF4Module::initialize(const string & modname)
{
    BESDEBUG("h4", "Initializing HDF4 module " << modname << endl) ;

    BESRequestHandler *handler = new HDF4RequestHandler(modname);
    BESRequestHandlerList::TheList()->add_handler(modname, handler);
    
    ...

The instrumentation macro is BESDEBUG. To 'turn on' this and see the output, start besstandalone using the -d option. When you specify the option, you need to provide one argument which names the output sink for the debugging information and one or more of the 'selector names'. An example will make things clearer. To see the output from the above BESDEBUG call, you would this option to besstandalone: -d "cerr,h4". Here's how you would run it:

Filtering binary output using getdap