Babble::Transport - Transport abstraction layer for Babble


Babble documentation Contained in the Babble distribution.

Index


Code Index:

NAME

Top

Babble::Transport - Transport abstraction layer for Babble

DESCRIPTION

Top

This module implements a layer that is transport agnostic. That is, one can pass a file, an HTTP URL or the like to this module, and it will delegate the job to an appropriate sub-module. Very useful for fetching feeds, as with Babble::Transport, the feed can be either remote or local, and can be fetched from anywhere Babble::Transport supports, and when one writes new DataSources, the code is reusable.

However, this should not be used outside of Babble::DataSource classes.

METHODS

Top

get

Return the contents of a given location, either fetched afresh, or from the cach (if any).

This method takes the following parameters:

-location

The location to fetch the document from.

-preprocessors

When specified as an array reference, the freshly fetched document will be filtered through each function referenced herein. These functions should take only one argument: a scalar reference. And they should operate on that, in-place.

-cache_only

When this flag is set, only the cache will be used as a source, and the original location will not be checked.

-babble

In order to use caching, this method needs access to a Babble::Cache object. This is done via a Babble object, which should be passed in this parameter, as a reference.

When one does not want caching, it can be omitted.

AUTHOR

Top

Gergely Nagy, algernon@bonehunter.rulez.org

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

SEE ALSO

Top

Babble::Transport::LWP, Babble::Cache


Babble documentation Contained in the Babble distribution.
## Babble/Transport.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::Transport;

use strict;
use Babble::Transport::LWP;
use Date::Manip;

sub get {
	my ($self, $params, $babble) = @_;
	our $cache = {};
	my $loc = \$params->{-location};
	my $result;

	$params->{-headers}->{'If-Modified-Since'} =
		$$babble->Cache->get ('Feeds', $$loc, 'time')
			if $babble;

	$result = Babble::Transport::LWP->get ($params) unless
		$params->{-cache_only};

	$result = $$babble->Cache->get ('Feeds', $$loc, 'feed')
		unless ($result || !$babble);

	foreach my $preproc (@{$params->{-preprocessors}}) {
		&$preproc (\$result);
	}

	return $result;
}

1;

# arch-tag: 6a98845c-d7d5-463e-929a-90af7864c399