The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

DDC::Format::Text - human-readable text formatting for DDC hits

SYNOPSIS

$hitList = DDC::Client::Distributed->new()->query('foo&&bar'); ##-- get some hits
$fmt = DDC::Format::Text->new(columns=>$ncols);
$str = $fmt->toString($hitList); ##-- conversion to string
$fmt->toFile($hitList,$filename); ##-- output to file
$fmt->toFh($hitList,$fh); ##-- output to filehandle

DESCRIPTION

Class for formatting DDC::Hit objects as plain text.

Globals

Variable: @ISA

DDC::Format::Text inherits from DDC::Format.

Constructors, etc.

new
$fmt = $CLASS_OR_OBJ->new(%args);

Accepted keywords in %args:

(
start=>$previous_hit_num, ##-- pre-initial hit number (default=0)
highlight=>[$pre,$post], ##-- highlighting substrings
columns=>$ncols, ##-- for text wrapping [default=80]
useMatchIds=>$bool, ##-- whether to use match-ids if available; undef (default) if non-trivial match-ids are specified
wsAttr=>$attr, ##-- token attribute to use for preceding whitespace (default='ws')
)
reset
$fmt = $fmt->reset();

Resets the formatting object.

Helper functions

hitString
$hitStr = $fmt->hitString($hit);

Formats a single $hit as a string, incrementing the counter $fmt->{start} as a side-effect.

API

toString
$str = $fmt->toString($hitList);

Implements DDC::Format::toString().

AUTHOR

Bryan Jurish <moocow@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2006-2020 by Bryan Jurish

This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.2 or, at your option, any later version of Perl 5 you may have available.