Babble::Cache::Dumper - Data::Dumper based cache for Babble


Babble documentation Contained in the Babble distribution.

Index


Code Index:

NAME

Top

Babble::Cache::Dumper - Data::Dumper based cache for Babble

DESCRIPTION

Top

This module implements a cache for Babble that uses Data::Dumper to store and retrieve the cache. The cache itself is stored in memory in a hash (thus, this class is a subclass of Babble::Cache::Class::Hash).

The main advantage is human readability, but the stored cache is slow to load and save.

METHODS

Top

load ()

Load the cache stored in Data::Dumper format from the file specified during object creation.

dump ()

Save the cache in Data::Dumper format to the file specified during object creation.

AUTHOR

Top

Gergely Nagy, algernon@bonehunter.rulez.org

Bugs should be reported at http://bugs.bonehunter.rulez.org/babble.

SEE ALSO

Top

Data::Dumper, Babble, Babble::Cache, Babble::Cache::Class::Hash


Babble documentation Contained in the Babble distribution.
## Babble/Cache/Dumper.pm
## Copyright (C) 2004 Gergely Nagy <algernon@bonehunter.rulez.org>
##
## This file is part of Babble.
##
## Babble is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; version 2 dated June, 1991.
##
## Babble is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
## for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

package Babble::Cache::Dumper;

use strict;
use Carp;
use Babble::Cache::Class::Hash;
use Data::Dumper;
use vars qw(@ISA);

@ISA = qw(Babble::Cache::Class::Hash);

sub load () {
	my $self = shift;

	return 1 unless ($self->{-cache_fn} && -e $self->{-cache_fn});

	$self->{cachedb} = do $self->{-cache_fn};
	if ($@) {
		carp $@;
		return undef;
	}
	return 1;
}

sub dump () {
	my $self = shift;

	return unless $self->{cache_fn};

	$Data::Dumper::Terse = 1;

	unless (open (OUTF, '>' . $self->{-cache_fn})) {
		carp 'Error dumping cache to `' . $self->{-cache_fn} .
			'\': ' . $1;
		return;
	}
	print OUTF "# Automatically generated file. Edit carefully!\n";
	print OUTF Dumper ($self->{cachedb}) . ";\n";
	close OUTF;
}

1;

# arch-tag: b974429f-b379-4277-9126-2c29cc3dde22