##======================================================================== ## NAME =pod
DTA::CAB::Format::Raw::Base - Datum parser/formatter: raw untokenized text (common base class)
##========================================================================
## PRELIMINARIES
use DTA::CAB::Format::Raw::Base;
##========================================================================
## Constructors etc.
$fmt = CLASS_OR_OBJ->new(%args);
##========================================================================
## Methods: Output: Generic
$type = $fmt->mimeType();
$ext = $fmt->defaultExtension();
##========================================================================
## Methods: Output: API
$fmt = $fmt->putDocument($doc);
$fmt = $fmt->putData($data);
DTA::CAB::Format::Raw::Base is an abstract base class for for untokenized "raw" string I/O. Input methods are expected to be provided by child subclasses.
This class provides DTA::CAB::Format-compliant output methods which writes all and only the canonical ("modern", "normalized") surface form of each token to the output stream. Individual output tokens are separated by a single space character (ASCII 0x20, " "
) and individual output sentences are separated by a single newline character (ASCII 0x0A, "\n"
).
Inherits from DTA::CAB::Format.
$fmt = CLASS_OR_OBJ->new(%args);
object structure: assumed HASH
{
##-- Common
#utf8 => $bool, ##-- utf8 mode always on
#level => $level, ##-- output level (ignored)
}
$type = $fmt->mimeType();
default returns text/plain
$ext = $fmt->defaultExtension();
returns default filename extension for this format
thin wrapper for DTA::CAB::Format::toFh-
$fmt = $fmt->putDocument($doc);
ye olde guttes
$fmt = $fmt->putData($data);
puts raw data (uses forceDocument())
Bryan Jurish <jurish@bbaw.de>
Copyright (C) 2019 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.20.2 or, at your option, any later version of Perl 5 you may have available.
dta-cab-analyze.perl(1), dta-cab-convert.perl(1), dta-cab-http-server.perl(1), dta-cab-http-client.perl(1), dta-cab-xmlrpc-server.perl(1), dta-cab-xmlrpc-client.perl(1), DTA::CAB::Server(3pm), DTA::CAB::Client(3pm), DTA::CAB::Format(3pm), DTA::CAB(3pm), perl(1), ...