Graph::Reader - base class for Graph file format readers


Graph-ReadWrite documentation Contained in the Graph-ReadWrite distribution.

Index


Code Index:

NAME

Top

Graph::Reader - base class for Graph file format readers

SYNOPSIS

Top

    package Graph::Reader::MyFormat;
    use Graph::Reader;
    use vars qw(@ISA);
    @ISA = qw(Graph::Reader);

    sub _read_graph
    {
        my ($self, $graph, $FILE) = @_;

        # read $FILE and populate $graph
    }

DESCRIPTION

Top

Graph::Reader is a base class for Graph file format readers. A particular subclass of Graph::Reader will handle a specific file format, and generate a Graph, represented using Jarkko Hietaniemi's Graph class.

You should never create an instance of this class yourself, it is only meant for subclassing. If you try to create an instance of Graph::Reader, the constructor will throw an exception.

METHODS

Top

new()

Constructor - generate a new reader instance. This is a virtual method, or whatever the correct lingo is. You're not meant to call this on the base class, it is inherited by the subclasses. Ie if you do something like:

    $reader = Graph::Reader->new();

It will throw an exception.

read_graph()

Read a graph from the specified file:

    $graph = $reader->read_graph($file);

The $file argument can either be a filename, or a filehandle for a previously opened file.

SUBCLASSING

Top

To create your own graph format reader, create a module which subclasses Graph::Reader. For example, suppose DGF is a directed graph format - create a Graph::Reader::DGF module, with the following structure:

    package Graph::Reader::DGF;

    use Graph::Reader;
    use vars qw(@ISA);
    @ISA = qw(Graph::Reader);

    sub _read_graph
    {
        my $self  = shift;
        my $graph = shift;
        my $FILE  = shift;

        while (<$FILE>)
        {
	}

        return 1;
    }

    1;

Note the leading underscore on the _read_graph() method. The base class provides the public method, and invokes the private method which you're expected to provide, as above.

If you want to perform additional initialisation at construction time, you can provide an _init() method, which will be invoked by the base class's constructor. You should invoke the superclass's initialiser as well, as follows:

    sub _init
    {
        my $self = shift;

        $self->SUPER::_init();

        # your initialisation here
    }

Someone can then use your class as follows:

    use Graph::Reader::DGF;

    $reader = Graph::Reader::DGF->new();
    $graph = $reader->read_graph('foo.dgf');

SEE ALSO

Top

Graph

Jarkko Hietaniemi's modules for representing directed graphs, available from CPAN under modules/by-module/Graph/

Algorithms in Perl

This O'Reilly book has a chapter on directed graphs, which is based around Jarkko's modules.

Graph::Reader::XML

A simple subclass of this class for reading a simple XML format for directed graphs.

Graph::Writer

A baseclass for Graph file format writers.

AUTHOR

Top

Neil Bowers <neil@bowers.com>

COPYRIGHT

Top


Graph-ReadWrite documentation Contained in the Graph-ReadWrite distribution.

#
# Graph::Reader - perl base class for Graph file format readers
#
# $Id: Reader.pm,v 1.3 2005/01/02 19:01:06 neilb Exp $
#
package Graph::Reader;

use strict;

use vars qw($VERSION);
$VERSION = sprintf("%d.%02d", q$Revision: 1.3 $ =~ /(\d+)\.(\d+)/);

use IO::File;
use Graph;

#=======================================================================
#
# new () - constructor
#
#=======================================================================
sub new
{
    my $class = shift;
    my %args  = @_;

    die "don't create an instance of $class!\n" if $class eq __PACKAGE__;

    my $self = bless {}, $class;

    $self->_init(\%args);

    return $self;
}

#=======================================================================
#
# _init() - initialise instance
#
# This is for any instance-specific initialisation. The idea is that
# a sub-class will define an _init() method if it needs one.
# For future compatibility the class-specific method should invoke
# this.
#
#=======================================================================
sub _init
{
}

#=======================================================================
#
# read_graph() - create a Graph and read the given file into it
#
# This is the public method that will be invoked to read a graph.
# The file can be specified either as a filename, or a filehandle.
#
#=======================================================================
sub read_graph
{
    my $self     = shift;
    my $filename = shift;

    my $graph    = Graph->new();
    my $FILE;


    if (ref $filename)
    {
	$self->_read_graph($graph, $filename);
    }
    else
    {
	$FILE = IO::File->new("< $filename");
	if (not defined $FILE)
	{
	    warn "couldn't read from $filename: $!\n";
	    return 0;
	}
	$self->_read_graph($graph, $FILE);
	$FILE->close();
    }

    return $graph;
}

1;

__END__