Querylet::Output - generic output handler for Querlet::Query


Querylet documentation  | view source Contained in the Querylet distribution.

Index


NAME

Top

Querylet::Output - generic output handler for Querlet::Query

VERSION

Top

version 0.324

SYNOPSIS

Top

This is an abstract base class, meant for subclassing.

 package Querylet::Output::Tabbed;
 use base qw(Querylet::Output);

 sub default_type { 'tabbed' }
 sub handler      { \&as_tabbed }  

 sub as_tabbed {
   my ($query) = @_;
   my @output;
   push @output, join("\t", @{$query->columns});
	 push @output, join("\t", @{$_{@{$query->colummns}}}) for @{$query->results};
   return join("\n", @output);
 }

 1;

Then, in a querylet:

 use Querylet::Output::Tabbed;

 output format: tabbed

Or, to override the registered type:

 use Querylet::Output::Tabbed 'tsv';

 output format: tsv

DESCRIPTION

Top

This class provides a simple way to write output handlers for Querylet, mostly by providing an import routine that will register the handler with the type-name requested by the using script.

The methods default_type and handler must exist, as described below.

IMPORT

Top

Querylet::Output provides an import method that will register the handler when the module is imported. If an argument is given, it will be used as the type name to register. Otherwise, the result of default_type is used.

METHODS

Top

default_type

This method returns the name of the type for which the output handler will be registered if no override is given.

handler

This method returns a reference to the handler, which will be used to register the handler.

AUTHOR

Top

Ricardo SIGNES, <rjbs@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-querylet@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT

Top


Querylet documentation  | view source Contained in the Querylet distribution.