source: trunk/gsdl/perllib/download.pm@ 11784

Last change on this file since 11784 was 11784, checked in by kjdon, 18 years ago

Jefferey's download module

  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1###########################################################################
2#
3# download.pm -- functions to handle using download modules
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 2005 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
26package download;
27
28use strict; # to pick up typos and undeclared variables...
29no strict 'refs'; # ...but allow filehandles to be variables and vice versa
30no strict 'subs';
31
32require util;
33use gsprintf 'gsprintf';
34
35
36sub load_download {
37 my ($download_name,$download_options) = @_;
38 my ($download_obj);
39
40 my $coldownloadname = &util::filename_cat($ENV{'GSDLCOLLECTDIR'},
41 "perllib/downloaders",
42 "${download_name}.pm");
43 my $maindownloadname = &util::filename_cat($ENV{'GSDLHOME'},
44 "perllib/downloaders",
45 "${download_name}.pm");
46 if (-e $coldownloadname) { require $coldownloadname;}
47 elsif (-e $maindownloadname ) { require $maindownloadname; }
48 else {
49 &gsprintf(STDERR, "{download.could_not_find_download}\n",
50 $download_name);
51 die "\n";
52 }
53
54 eval ("\$download_obj = new \$download_name([],\$download_options)");
55 die "$@" if $@;
56
57 return $download_obj;
58}
59
60sub process {
61 my ($download_obj,$options) = @_;
62 # options: This is a hash map which maps to
63 # downloadfrom's arguments
64 # $options->{'cache_dir'}
65 # $options->{'download_mode'}
66 # $options->{'gli_call'}
67 # $options->{'info'}
68 ($download_obj->download($options) == 1)?
69 return "true":
70 return "false";
71}
72
73sub get_information {
74 my ($download_obj) = @_;
75
76 $download_obj->url_information();
77}
78
791;
Note: See TracBrowser for help on using the repository browser.