Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Parse::DebControl

Name Parse::DebControl
Version 2.005
Located at /usr/share/perl5
File /usr/share/perl5/Parse/DebControl.pm
Is Core No
Search CPAN for this module Parse::DebControl
Documentation Parse::DebControl
Module Details Parse::DebControl

NAME

Parse::DebControl - Easy OO parsing of debian control-like files


SYNOPSIS

        use Parse::DebControl
        $parser = new Parse::DebControl;
        $data = $parser->parse_mem($control_data, $options);
        $data = $parser->parse_file('./debian/control', $options);
        $data = $parser->parse_web($url, $options);
        $writer = new Parse::DebControl;
        $string = $writer->write_mem($singlestanza);
        $string = $writer->write_mem([$stanza1, $stanza2]);
        $writer->write_file($filename, $singlestanza, $options);
        $writer->write_file($filename, [$stanza1, $stanza2], $options);
        $writer->write_file($handle, $singlestanza, $options);
        $writer->write_file($handle, [$stanza1, $stanza2], $options);
        $parser->DEBUG();


DESCRIPTION

        Parse::DebControl is an easy OO way to parse debian control files and 
        other colon separated key-value pairs. It's specifically designed
        to handle the format used in Debian control files, template files, and
        the cache files used by dpkg.
        For basic format information see:
        http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-controlsyntax
        This module does not actually do any intelligence with the file content
        (because there are a lot of files in this format), but merely handles
        the format. It can handle simple control files, or files hundreds of lines 
        long efficiently and easily.

Class Methods

  • parse_file($control_filename,$options)
    Takes a filename as a scalar and an optional hashref of options (see below). Will parse as much as it can, warning (if
    DEBUGing is turned on) on parsing errors.

    Returns an array of hashrefs, containing the data in the control file, split up by stanza. Stanzas are deliniated by newlines, and multi-line fields are expressed as such post-parsing. Single periods are treated as special extra newline deliniators, per convention. Whitespace is also stripped off of lines as to make it less-easy to make mistakes with hand-written conf files).

    The options hashref can take parameters as follows. Setting the string to true enables the option.

            useTieIxHash - Instead of an array of regular hashrefs, uses Tie::IxHash-
                    based hashrefs
            discardCase  - Remove all case items from keys (not values)
            stripComments - Remove all commented lines in standard #comment format.
                    Literal #'s are represented by ##. For instance
                    Hello there #this is a comment
                    Hello there, I like ##CCCCCC as a grey.
                    The first is a comment, the second is a literal "#".
            verbMultiLine - Keep the description AS IS, and no not collapse leading
                    spaces or dots as newlines. This also keeps whitespace from being
                    stripped off the end of lines.
            tryGzip - Attempt to expand the data chunk with gzip first. If the text is
                    already expanded (ie: plain text), parsing will continue normally. 
                    This could optionally be turned on for all items in the future, but
                    it is off by default so we don't have to scrub over all the text for
                    performance reasons.
        singleBlock - Only parse the first block of data and return it. This is
            useful when you have possible "junk" data after the metadata.
        strict - Tries to parse obeying the strict rules for real debian control files.
            This will force comment stripping for debian/control (must start line) and for
            other files will check if a field may span multiple lines.
        allowUnknownFields - In strict mode, allow unknown fields.
        type - If the strict option is chosen, then this parameter defines what format
            we have. Available formats is:
                - debian/control
                - DEBIAN/control
                - .dsc
                - .changes


CHANGES

Version 2.005 - January 13th, 2004

Version 2.004 - January 12th, 2004

Version 2.003 - January 6th, 2004

Version 2.002 - October 7th, 2003

Version 2.001 - September 11th, 2003

Version 2.0 - September 5th, 2003

Version 1.10b - September 2nd, 2003

Version 1.10 - September 2nd, 2003

Version 1.9 - July 24th, 2003

Version 1.8 - July 11th, 2003

Version 1.7 - June 25th, 2003

Version 1.6.1 - June 9th, 2003

Version 1.6 - June 2nd, 2003

Version 1.5 - May 8th, 2003

Version 1.4 - April 30th, 2003

Version 1.3 - April 28th, 2003

Version 1.2b - April 25th, 2003

Fixed:

Version 1.2 - April 24th, 2003

Fixed:

Version 1.1 - April 23rd, 2003

Added:

Version 1.0 - April 23rd, 2003


BUGS

The module will let you parse otherwise illegal key-value pairs and pairs with spaces. Badly formed stanzas will do things like overwrite duplicate keys, etc. This is your problem.

As of 1.10, the module uses advanced regexp's to figure out about comments. If the tests fail, then stripComments won't work on your earlier perl version (should be fine on 5.6.0+)


TODO

Change the name over to the Debian:: namespace, probably as Debian::ControlFormat. This will happen as soon as the project that uses this module reaches stability, and we can do some minor tweaks.


COPYRIGHT

Parse::DebControl is copyright 2003,2004 Jay Bonci <jaybonci@cpan.org>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026