LWP-UserAgent-ProgressBar-1.100810000755000765000024 011351761733 16266 5ustar00marcelstaff000000000000Changes000644000765000024 225111351761733 17641 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810Revision history for Perl extension LWP-UserAgent-ProgressBar 1.100810 2010-03-22 22:40:40 Europe/Vienna - converted the distribution to Dist::Zilla-style 0.05 Thu 2010.03.04 00:15:24 CET (Marcel Gruenauer ) - require Test::More 0.88 for done_testing() in t/00_versions.t - refactor test code (thanks tokuhirom) 0.04 Wed 2010.02.10 11:52:23 CET (Marcel Gruenauer ) - add post_with_progress method for POST request. (Ktat ) - updated skeleton 0.03 Thu Jul 25 15:27:43 CEST 2008 (Marcel Gruenauer ) - Changed dist style and Changes back to standard. People didn't like it - the nail that sticks out gets hammered down. - Added standard test files; this will also help with CPANTS. 0.02 Thu, 29 May 2008 12:05:49 -0000 (Marcel Gruenauer ) - set the version to 0.02 - fixed POD typo - moved generated documentation of interited methods to after documentation of this class' methods so the manpage is more readable - .shipit: fixed svk.tagpattern 0.01 Sat, 24 Nov 2007 20:53:01 -0000 (Marcel Gruenauer ) - original version dist.ini000644000765000024 24711351761733 17775 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810name = LWP-UserAgent-ProgressBar author = Marcel Gruenauer license = Perl_5 copyright_holder = Marcel Gruenauer copyright_year = 2007 [@MARCEL] UserAgent000755000765000024 011351761733 21314 5ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/lib/LWPProgressBar.pm000644000765000024 757511351761733 24260 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/lib/LWP/UserAgentuse 5.008; use strict; use warnings; package LWP::UserAgent::ProgressBar; our $VERSION = '1.100810'; # ABSTRACT: An LWP user agent that can display a progress bar use Term::ProgressBar; use base 'LWP::UserAgent'; sub post_with_progress { my ($self, $url, $form, %args) = @_; $self->_request_with_progress('post', $url, $form, %args); } sub get_with_progress { my ($self, $url, %args) = @_; $self->_request_with_progress('get', $url, undef, %args); } sub _request_with_progress { my ($self, $req, $url, $form, %args) = @_; # don't buffer the prints to make the status update local $| = 1; my $bar_name; if (defined $args{bar_name}) { $bar_name = $args{bar_name}; delete $args{bar_name}; } my $progress = Term::ProgressBar->new( { count => 1024, (defined $bar_name ? (name => $bar_name) : ()), ETA => 'linear', } ); $progress->minor(0); # turns off the floating asterisks. $progress->max_update_rate(1); # only relevant when ETA is used. my $did_set_target = 0; my $received_size = 0; my $next_update = 0; my $content = ''; delete $args{$_} for qw(:content_cb :read_size_hint); $args{':content_cb'} = sub { my ($data, $cb_response, $protocol) = @_; unless ($did_set_target) { if (my $content_length = $cb_response->content_length) { $progress->target($content_length); $did_set_target = 1; } else { $progress->target($received_size + 2 * length $data); } } $received_size += length $data; $content .= $data; $next_update = $progress->update($received_size) if $received_size >= $next_update; }; $args{':read_size_hint'} = 8192; my $response = $self->$req($url, $req eq 'get' ? (%$form, %args) : ($form, %args)); print "\n"; $response->content($content); $response; } 1; __END__ =pod =head1 NAME LWP::UserAgent::ProgressBar - An LWP user agent that can display a progress bar =head1 VERSION version 1.100810 =for stopwords Ktat =head1 SYNOPSIS my $url = 'http://...'; my $response = LWP::UserAgent::ProgressBar->new->get_with_progress($url); $response->is_success or die "couldn't get $url\n"; my $content = $response->content; =head1 DESCRIPTION This class is a subclass of L that provides one additional method, described below. =head1 METHODS =head2 get_with_progress Takes the same arguments as L's C, but overrides the C<:content_cb> and C<:read_size_hint> arguments. During download, a progress bar is displayed. =head2 post_with_progress Takes the same arguments as L's C, but overrides the C<:content_cb> and C<:read_size_hint> arguments. During download, a progress bar is displayed. =head1 INSTALLATION See perlmodinstall for information and options on installing Perl modules. =head1 BUGS AND LIMITATIONS No bugs have been reported. Please report any bugs or feature requests through the web interface at L. =head1 AVAILABILITY The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit L to find a CPAN site near you, or see L. The development version lives at L. Instead of sending patches, please fork this project using the standard git and github infrastructure. =head1 AUTHOR Marcel Gruenauer =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2007 by Marcel Gruenauer. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut t000755000765000024 011351761733 16452 5ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.10081001_misc.t000644000765000024 175411351761733 20240 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!/usr/bin/env perl use warnings; use strict; use Cwd 'abs_path'; use File::Spec; use LWP::UserAgent::ProgressBar; use Test::More tests => 4; use Test::Differences; # get { my $self_path = $0; $self_path = abs_path($self_path) unless File::Spec->file_name_is_absolute($self_path); my $self_content = do { local (@ARGV, $/) = $self_path; <> }; my $self_url = "file://$self_path"; my $response = LWP::UserAgent::ProgressBar->new->get_with_progress($self_url, bar_name => '# ',); ok($response->is_success, 'successful download'); my $content = $response->content; eq_or_diff $content, $self_content, 'content matches'; } # post { my $self_url = 'http://search.cpan.org/search'; my $response = LWP::UserAgent::ProgressBar->new->post_with_progress( $self_url, { query => 'LWP' }, bar_name => '# ' ); ok($response->is_success, 'successful download'); ok($response->content, 'content is not empty'); } 00-compile.t000644000765000024 171411351761733 20646 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl use strict; use warnings; use Test::More; use File::Find; use File::Temp qw{ tempdir }; my @modules; find( sub { return if $File::Find::name !~ /\.pm\z/; my $found = $File::Find::name; $found =~ s{^lib/}{}; $found =~ s{[/\\]}{::}g; $found =~ s/\.pm$//; # nothing to skip push @modules, $found; }, 'lib', ); my @scripts = glob "bin/*"; plan tests => scalar(@modules) + scalar(@scripts); { # fake home for cpan-testers # no fake requested ## local $ENV{HOME} = tempdir( CLEANUP => 1 ); is( qx{ $^X -Ilib -e "use $_; print '$_ ok'" }, "$_ ok", "$_ loaded ok" ) for sort @modules; SKIP: { eval "use Test::Script; 1;"; skip "Test::Script needed to test script compilation", scalar(@scripts) if $@; foreach my $file ( @scripts ) { my $script = $file; $script =~ s!.*/!!; script_compiles_ok( $file, "$script script compiles" ); } } } author-critic.t000644000765000024 54411351761733 21536 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{AUTHOR_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for testing by the author'); } } use strict; use warnings; use Test::More; use English qw(-no_match_vars); eval "use Test::Perl::Critic"; plan skip_all => 'Test::Perl::Critic required to criticise code' if $@; all_critic_ok();release-meta-yaml.t000644000765000024 45411351761733 22265 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::CPAN::Meta"; plan skip_all => "Test::CPAN::Meta required for testing META.yml" if $@; meta_yaml_ok();release-pod-coverage.t000644000765000024 76411351761733 22756 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::Pod::Coverage 1.08"; plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage" if $@; eval "use Pod::Coverage::TrustPod"; plan skip_all => "Pod::Coverage::TrustPod required for testing POD coverage" if $@; all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' });release-pod-syntax.t000644000765000024 44711351761733 22507 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::Pod 1.00"; plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; all_pod_files_ok();release-pod-spell.t000644000765000024 67311351761733 22301 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Pod::Wordlist::hanekomu"; plan skip_all => "Pod::Wordlist:hanekomu required for testing POD spelling" if $@; eval "use Test::Spelling"; plan skip_all => "Test::Spelling required for testing POD spelling" if $@; all_pod_files_spelling_ok('lib');release-kwalitee.t000644000765000024 43211351761733 22200 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::Kwalitee"; plan skip_all => "Test::Kwalitee required for testing kwalitee" if $@;release-portability.t000644000765000024 47611351761733 22745 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::Portability::Files"; plan skip_all => "Test::Portability::Files required for testing portability" if $@; run_tests();release-synopsis.t000644000765000024 46211351761733 22265 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::Synopsis"; plan skip_all => "Test::Synopsis required for testing synopses" if $@; all_synopsis_ok('lib');release-minimum-version.t000644000765000024 52511351761733 23534 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::MinimumVersion"; plan skip_all => "Test::MinimumVersion required for testing minimum versions" if $@; all_minimum_version_from_metayml_ok();release-has-version.t000644000765000024 47211351761733 22635 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::HasVersion"; plan skip_all => "Test::HasVersion required for testing version numbers" if $@; all_pm_version_ok();release-check-changes.t000644000765000024 45711351761733 23065 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::CheckChanges"; plan skip_all => "Test::CheckChanges required for testing changes" if $@; ok_changes();release-dist-manifest.t000644000765000024 46511351761733 23150 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } use Test::More; eval "use Test::DistManifest"; plan skip_all => "Test::DistManifest required for testing the manifest" if $@; manifest_ok();MANIFEST.SKIP000644000765000024 73411351761733 20230 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810# Version control files and dirs. bRCS\b bCVS\b .svn .git ,v$ # Makemaker/Build.PL generated files and dirs. MANIFEST.old ^Makefile$ ^Build$ ^blib ^pm_to_blib$ ^_build ^MakeMaker-\d embedded cover_db smoke.html smoke.yaml smoketee.txt sqlnet.log BUILD.SKIP COVER.SKIP CPAN.SKIP t/000_standard__* Debian_CPANTS.txt nytprof.out # Temp, old, emacs, vim, backup files. ~$ .old$ .swp$ .tar$ .tar\.gz$ ^#.*#$ ^\.# .shipit # Local files, not to be included ^scratch$ ^core$ ^var$ perlcriticrc000644000765000024 56411351761733 21206 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t# no strict 'refs' [TestingAndDebugging::ProhibitNoStrict] allow = refs [-BuiltinFunctions::ProhibitStringyEval] [-ControlStructures::ProhibitMutatingListFunctions] [-Subroutines::ProhibitExplicitReturnUndef] [-Subroutines::ProhibitSubroutinePrototypes] [-Variables::ProhibitConditionalDeclarations] # for mkdir $dir, 0777 [-ValuesAndExpressions::ProhibitLeadingZeros] 000-report-versions.t000644000765000024 2462411351761733 22504 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810/t#!perl use warnings; use strict; use Test::More 0.88; # Include a cut-down version of YAML::Tiny so we don't introduce unnecessary # dependencies ourselves. package Local::YAML::Tiny; use strict; use Carp 'croak'; # UTF Support? sub HAVE_UTF8 () { $] >= 5.007003 } BEGIN { if ( HAVE_UTF8 ) { # The string eval helps hide this from Test::MinimumVersion eval "require utf8;"; die "Failed to load UTF-8 support" if $@; } # Class structure require 5.004; $YAML::Tiny::VERSION = '1.40'; # Error storage $YAML::Tiny::errstr = ''; } # Printable characters for escapes my %UNESCAPES = ( z => "\x00", a => "\x07", t => "\x09", n => "\x0a", v => "\x0b", f => "\x0c", r => "\x0d", e => "\x1b", '\\' => '\\', ); ##################################################################### # Implementation # Create an empty YAML::Tiny object sub new { my $class = shift; bless [ @_ ], $class; } # Create an object from a file sub read { my $class = ref $_[0] ? ref shift : shift; # Check the file my $file = shift or return $class->_error( 'You did not specify a file name' ); return $class->_error( "File '$file' does not exist" ) unless -e $file; return $class->_error( "'$file' is a directory, not a file" ) unless -f _; return $class->_error( "Insufficient permissions to read '$file'" ) unless -r _; # Slurp in the file local $/ = undef; local *CFG; unless ( open(CFG, $file) ) { return $class->_error("Failed to open file '$file': $!"); } my $contents = ; unless ( close(CFG) ) { return $class->_error("Failed to close file '$file': $!"); } $class->read_string( $contents ); } # Create an object from a string sub read_string { my $class = ref $_[0] ? ref shift : shift; my $self = bless [], $class; my $string = $_[0]; unless ( defined $string ) { return $self->_error("Did not provide a string to load"); } # Byte order marks # NOTE: Keeping this here to educate maintainers # my %BOM = ( # "\357\273\277" => 'UTF-8', # "\376\377" => 'UTF-16BE', # "\377\376" => 'UTF-16LE', # "\377\376\0\0" => 'UTF-32LE' # "\0\0\376\377" => 'UTF-32BE', # ); if ( $string =~ /^(?:\376\377|\377\376|\377\376\0\0|\0\0\376\377)/ ) { return $self->_error("Stream has a non UTF-8 BOM"); } else { # Strip UTF-8 bom if found, we'll just ignore it $string =~ s/^\357\273\277//; } # Try to decode as utf8 utf8::decode($string) if HAVE_UTF8; # Check for some special cases return $self unless length $string; unless ( $string =~ /[\012\015]+\z/ ) { return $self->_error("Stream does not end with newline character"); } # Split the file into lines my @lines = grep { ! /^\s*(?:\#.*)?\z/ } split /(?:\015{1,2}\012|\015|\012)/, $string; # Strip the initial YAML header @lines and $lines[0] =~ /^\%YAML[: ][\d\.]+.*\z/ and shift @lines; # A nibbling parser while ( @lines ) { # Do we have a document header? if ( $lines[0] =~ /^---\s*(?:(.+)\s*)?\z/ ) { # Handle scalar documents shift @lines; if ( defined $1 and $1 !~ /^(?:\#.+|\%YAML[: ][\d\.]+)\z/ ) { push @$self, $self->_read_scalar( "$1", [ undef ], \@lines ); next; } } if ( ! @lines or $lines[0] =~ /^(?:---|\.\.\.)/ ) { # A naked document push @$self, undef; while ( @lines and $lines[0] !~ /^---/ ) { shift @lines; } } elsif ( $lines[0] =~ /^\s*\-/ ) { # An array at the root my $document = [ ]; push @$self, $document; $self->_read_array( $document, [ 0 ], \@lines ); } elsif ( $lines[0] =~ /^(\s*)\S/ ) { # A hash at the root my $document = { }; push @$self, $document; $self->_read_hash( $document, [ length($1) ], \@lines ); } else { croak("YAML::Tiny failed to classify the line '$lines[0]'"); } } $self; } # Deparse a scalar string to the actual scalar sub _read_scalar { my ($self, $string, $indent, $lines) = @_; # Trim trailing whitespace $string =~ s/\s*\z//; # Explitic null/undef return undef if $string eq '~'; # Quotes if ( $string =~ /^\'(.*?)\'\z/ ) { return '' unless defined $1; $string = $1; $string =~ s/\'\'/\'/g; return $string; } if ( $string =~ /^\"((?:\\.|[^\"])*)\"\z/ ) { # Reusing the variable is a little ugly, # but avoids a new variable and a string copy. $string = $1; $string =~ s/\\"/"/g; $string =~ s/\\([never\\fartz]|x([0-9a-fA-F]{2}))/(length($1)>1)?pack("H2",$2):$UNESCAPES{$1}/gex; return $string; } # Special cases if ( $string =~ /^[\'\"!&]/ ) { croak("YAML::Tiny does not support a feature in line '$lines->[0]'"); } return {} if $string eq '{}'; return [] if $string eq '[]'; # Regular unquoted string return $string unless $string =~ /^[>|]/; # Error croak("YAML::Tiny failed to find multi-line scalar content") unless @$lines; # Check the indent depth $lines->[0] =~ /^(\s*)/; $indent->[-1] = length("$1"); if ( defined $indent->[-2] and $indent->[-1] <= $indent->[-2] ) { croak("YAML::Tiny found bad indenting in line '$lines->[0]'"); } # Pull the lines my @multiline = (); while ( @$lines ) { $lines->[0] =~ /^(\s*)/; last unless length($1) >= $indent->[-1]; push @multiline, substr(shift(@$lines), length($1)); } my $j = (substr($string, 0, 1) eq '>') ? ' ' : "\n"; my $t = (substr($string, 1, 1) eq '-') ? '' : "\n"; return join( $j, @multiline ) . $t; } # Parse an array sub _read_array { my ($self, $array, $indent, $lines) = @_; while ( @$lines ) { # Check for a new document if ( $lines->[0] =~ /^(?:---|\.\.\.)/ ) { while ( @$lines and $lines->[0] !~ /^---/ ) { shift @$lines; } return 1; } # Check the indent level $lines->[0] =~ /^(\s*)/; if ( length($1) < $indent->[-1] ) { return 1; } elsif ( length($1) > $indent->[-1] ) { croak("YAML::Tiny found bad indenting in line '$lines->[0]'"); } if ( $lines->[0] =~ /^(\s*\-\s+)[^\'\"]\S*\s*:(?:\s+|$)/ ) { # Inline nested hash my $indent2 = length("$1"); $lines->[0] =~ s/-/ /; push @$array, { }; $self->_read_hash( $array->[-1], [ @$indent, $indent2 ], $lines ); } elsif ( $lines->[0] =~ /^\s*\-(\s*)(.+?)\s*\z/ ) { # Array entry with a value shift @$lines; push @$array, $self->_read_scalar( "$2", [ @$indent, undef ], $lines ); } elsif ( $lines->[0] =~ /^\s*\-\s*\z/ ) { shift @$lines; unless ( @$lines ) { push @$array, undef; return 1; } if ( $lines->[0] =~ /^(\s*)\-/ ) { my $indent2 = length("$1"); if ( $indent->[-1] == $indent2 ) { # Null array entry push @$array, undef; } else { # Naked indenter push @$array, [ ]; $self->_read_array( $array->[-1], [ @$indent, $indent2 ], $lines ); } } elsif ( $lines->[0] =~ /^(\s*)\S/ ) { push @$array, { }; $self->_read_hash( $array->[-1], [ @$indent, length("$1") ], $lines ); } else { croak("YAML::Tiny failed to classify line '$lines->[0]'"); } } elsif ( defined $indent->[-2] and $indent->[-1] == $indent->[-2] ) { # This is probably a structure like the following... # --- # foo: # - list # bar: value # # ... so lets return and let the hash parser handle it return 1; } else { croak("YAML::Tiny failed to classify line '$lines->[0]'"); } } return 1; } # Parse an array sub _read_hash { my ($self, $hash, $indent, $lines) = @_; while ( @$lines ) { # Check for a new document if ( $lines->[0] =~ /^(?:---|\.\.\.)/ ) { while ( @$lines and $lines->[0] !~ /^---/ ) { shift @$lines; } return 1; } # Check the indent level $lines->[0] =~ /^(\s*)/; if ( length($1) < $indent->[-1] ) { return 1; } elsif ( length($1) > $indent->[-1] ) { croak("YAML::Tiny found bad indenting in line '$lines->[0]'"); } # Get the key unless ( $lines->[0] =~ s/^\s*([^\'\" ][^\n]*?)\s*:(\s+|$)// ) { if ( $lines->[0] =~ /^\s*[?\'\"]/ ) { croak("YAML::Tiny does not support a feature in line '$lines->[0]'"); } croak("YAML::Tiny failed to classify line '$lines->[0]'"); } my $key = $1; # Do we have a value? if ( length $lines->[0] ) { # Yes $hash->{$key} = $self->_read_scalar( shift(@$lines), [ @$indent, undef ], $lines ); } else { # An indent shift @$lines; unless ( @$lines ) { $hash->{$key} = undef; return 1; } if ( $lines->[0] =~ /^(\s*)-/ ) { $hash->{$key} = []; $self->_read_array( $hash->{$key}, [ @$indent, length($1) ], $lines ); } elsif ( $lines->[0] =~ /^(\s*)./ ) { my $indent2 = length("$1"); if ( $indent->[-1] >= $indent2 ) { # Null hash entry $hash->{$key} = undef; } else { $hash->{$key} = {}; $self->_read_hash( $hash->{$key}, [ @$indent, length($1) ], $lines ); } } } } return 1; } # Set error sub _error { $YAML::Tiny::errstr = $_[1]; undef; } # Retrieve error sub errstr { $YAML::Tiny::errstr; } ##################################################################### # Use Scalar::Util if possible, otherwise emulate it BEGIN { eval { require Scalar::Util; }; if ( $@ ) { # Failed to load Scalar::Util eval <<'END_PERL'; sub refaddr { my $pkg = ref($_[0]) or return undef; if (!!UNIVERSAL::can($_[0], 'can')) { bless $_[0], 'Scalar::Util::Fake'; } else { $pkg = undef; } "$_[0]" =~ /0x(\w+)/; my $i = do { local $^W; hex $1 }; bless $_[0], $pkg if defined $pkg; $i; } END_PERL } else { Scalar::Util->import('refaddr'); } } ##################################################################### # main test ##################################################################### package main; BEGIN { # Skip modules that either don't want to be loaded directly, such as # Module::Install, or that mess with the test count, such as the Test::* # modules listed here. my %skip = map { $_ => 1 } qw( Module::Install Test::YAML::Meta Test::Pod::Coverage Test::Portability::Files ); my $Test = Test::Builder->new; $Test->plan(skip_all => "META.yml could not be found") unless -f 'META.yml' and -r _; my $meta = (Local::YAML::Tiny->read('META.yml'))->[0]; my %requires; for my $require_key (grep { /requires/ } keys %$meta) { my %h = %{ $meta->{$require_key} }; $requires{$_}++ for keys %h; } delete $requires{perl}; diag("Testing with Perl $], $^X"); for my $module (sort keys %requires) { next if $skip{$module}; use_ok $module or BAIL_OUT("can't load $module"); my $version = $module->VERSION; $version = 'undefined' unless defined $version; diag(" $module version is $version"); } done_testing; } LICENSE000644000765000024 4353011351761733 17400 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810This software is copyright (c) 2007 by Marcel Gruenauer. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. Terms of the Perl programming language system itself a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" --- The GNU General Public License, Version 1, February 1989 --- This software is Copyright (c) 2007 by Marcel Gruenauer. This is free software, licensed under: The GNU General Public License, Version 1, February 1989 GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. The General Public License applies to the Free Software Foundation's software and to any other program whose authors commit to using it. You can use it for your programs, too. When we speak of free software, we are referring to freedom, not price. Specifically, the General Public License is designed to make sure that you have the freedom to give away or sell copies of free software, that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of a such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any work containing the Program or a portion of it, either verbatim or with modifications. Each licensee is addressed as "you". 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this General Public License and to the absence of any warranty; and give any other recipients of the Program a copy of this General Public License along with the Program. You may charge a fee for the physical act of transferring a copy. 2. You may modify your copy or copies of the Program or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and b) cause the whole of any work that you distribute or publish, that in whole or in part contains the Program or any part thereof, either with or without modifications, to be licensed at no charge to all third parties under the terms of this General Public License (except that you may choose to grant warranty protection to some or all third parties, at your option). c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the simplest and most usual way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this General Public License. d) You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. Mere aggregation of another independent work with the Program (or its derivative) on a volume of a storage or distribution medium does not bring the other work under the scope of these terms. 3. You may copy and distribute the Program (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: a) accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, b) accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal charge for the cost of distribution) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, c) accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) Source code for a work means the preferred form of the work for making modifications to it. For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs, or for standard header files or definitions files that accompany that operating system. 4. You may not copy, modify, sublicense, distribute or transfer the Program except as expressly provided under this General Public License. Any attempt otherwise to copy, modify, sublicense, distribute or transfer the Program is void, and will automatically terminate your rights to use the Program under this License. However, parties who have received copies, or rights to use copies, from you under this General Public License will not have their licenses terminated so long as such parties remain in full compliance. 5. By copying, distributing or modifying the Program (or any work based on the Program) you indicate your acceptance of this license to do so, and all its terms and conditions. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. 7. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of the license which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the license, you may choose any version ever published by the Free Software Foundation. 8. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to humanity, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program 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; either version 1, or (at your option) any later version. This program 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. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19xx name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (a program to direct compilers to make passes at assemblers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice That's all there is to it! --- The Artistic License 1.0 --- This software is Copyright (c) 2007 by Marcel Gruenauer. This is free software, licensed under: The Artistic License 1.0 The Artistic License Preamble The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. Definitions: - "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. - "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. - "Copyright Holder" is whoever is named in the copyright or copyrights for the package. - "You" is you, if you're thinking about copying or distributing this Package. - "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) - "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. 2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. 3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. b) use the modified Package only within your corporation or organization. c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. d) make other distribution arrangements with the Copyright Holder. 4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. b) accompany the distribution with the machine-readable source of the Package with your modifications. c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. d) make other distribution arrangements with the Copyright Holder. 5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. 6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. 7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. 8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. The End META.yml000644000765000024 163711351761733 17626 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810--- abstract: 'An LWP user agent that can display a progress bar' author: - 'Marcel Gruenauer ' build_requires: {} configure_requires: ExtUtils::MakeMaker: 6.11 generated_by: 'Dist::Zilla version 1.100711' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 name: LWP-UserAgent-ProgressBar provides: LWP::UserAgent::ProgressBar: file: lib/LWP/UserAgent/ProgressBar.pm version: 1.100810 requires: Carp: 0 Cwd: 0 English: 0 File::Find: 0 File::Spec: 0 File::Temp: 0 LWP::UserAgent: 0 Scalar::Util: 0 Term::ProgressBar: 0 Test::Differences: 0 Test::More: 0.88 perl: 5.008 resources: bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=LWP-UserAgent-ProgressBar homepage: http://search.cpan.org/dist/LWP-UserAgent-ProgressBar/ repository: http://github.com/hanekomu/LWP-UserAgent-ProgressBar version: 1.100810 META.json000644000765000024 237111351761733 17772 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810{ "resources" : { "homepage" : "http://search.cpan.org/dist/LWP-UserAgent-ProgressBar/", "repository" : "http://github.com/hanekomu/LWP-UserAgent-ProgressBar", "bugtracker" : "http://rt.cpan.org/Public/Dist/Display.html?Name=LWP-UserAgent-ProgressBar" }, "generated_by" : "Dist::Zilla version 1.100711", "meta-spec" : { "version" : 1.4, "url" : "http://module-build.sourceforge.net/META-spec-v1.4.html" }, "version" : "1.100810", "name" : "LWP-UserAgent-ProgressBar", "author" : [ "Marcel Gruenauer " ], "license" : "perl", "build_requires" : {}, "provides" : { "LWP::UserAgent::ProgressBar" : { "version" : "1.100810", "file" : "lib/LWP/UserAgent/ProgressBar.pm" } }, "requires" : { "Scalar::Util" : "0", "English" : "0", "File::Spec" : "0", "Term::ProgressBar" : "0", "Carp" : "0", "perl" : "5.008", "Test::More" : "0.88", "Test::Differences" : "0", "LWP::UserAgent" : "0", "File::Find" : "0", "File::Temp" : "0", "Cwd" : "0" }, "abstract" : "An LWP user agent that can display a progress bar", "configure_requires" : { "ExtUtils::MakeMaker" : "6.11" } } INSTALL000644000765000024 107411351761733 17401 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810 This is the Perl distribution LWP-UserAgent-ProgressBar. ## Installation LWP-UserAgent-ProgressBar installation is straightforward. If your CPAN shell is set up, you should just be able to do % cpan LWP::UserAgent::ProgressBar Download it, unpack it, then build it as per the usual: % perl Makefile.PL % make && make test Then install it: % make install ## Documentation LWP-UserAgent-ProgressBar documentation is available as in POD. So you can do: % perldoc LWP::UserAgent::ProgressBar to read the documentation with your favorite pager. Makefile.PL000644000765000024 341511351761733 20323 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810 use strict; use warnings; BEGIN { require 5.008; } use ExtUtils::MakeMaker 6.11; my %WriteMakefileArgs = ( 'test' => { 'TESTS' => 't/*.t' }, 'NAME' => 'LWP::UserAgent::ProgressBar', 'DISTNAME' => 'LWP-UserAgent-ProgressBar', 'CONFIGURE_REQUIRES' => { 'ExtUtils::MakeMaker' => '6.11' }, 'AUTHOR' => 'Marcel Gruenauer ', 'BUILD_REQUIRES' => {}, 'ABSTRACT' => 'An LWP user agent that can display a progress bar', 'EXE_FILES' => [], 'VERSION' => '1.100810', 'PREREQ_PM' => { 'Scalar::Util' => '0', 'English' => '0', 'File::Spec' => '0', 'Term::ProgressBar' => '0', 'Carp' => '0', 'Test::More' => '0.88', 'Test::Differences' => '0', 'LWP::UserAgent' => '0', 'File::Find' => '0', 'File::Temp' => '0', 'Cwd' => '0' }, 'LICENSE' => 'perl' ); delete $WriteMakefileArgs{LICENSE} unless eval { ExtUtils::MakeMaker->VERSION(6.31) }; WriteMakefile(%WriteMakefileArgs); README000644000765000024 361611351761733 17234 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810NAME LWP::UserAgent::ProgressBar - An LWP user agent that can display a progress bar VERSION version 1.100810 SYNOPSIS my $url = 'http://...'; my $response = LWP::UserAgent::ProgressBar->new->get_with_progress($url); $response->is_success or die "couldn't get $url\n"; my $content = $response->content; DESCRIPTION This class is a subclass of LWP::UserAgent that provides one additional method, described below. METHODS get_with_progress Takes the same arguments as LWP::UserAgent's "get()", but overrides the ":content_cb" and ":read_size_hint" arguments. During download, a progress bar is displayed. post_with_progress Takes the same arguments as LWP::UserAgent's "post()", but overrides the ":content_cb" and ":read_size_hint" arguments. During download, a progress bar is displayed. INSTALLATION See perlmodinstall for information and options on installing Perl modules. BUGS AND LIMITATIONS No bugs have been reported. Please report any bugs or feature requests through the web interface at . AVAILABILITY The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit to find a CPAN site near you, or see . The development version lives at . Instead of sending patches, please fork this project using the standard git and github infrastructure. AUTHOR Marcel Gruenauer COPYRIGHT AND LICENSE This software is copyright (c) 2007 by Marcel Gruenauer. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. MANIFEST000644000765000024 73011351761733 17457 0ustar00marcelstaff000000000000LWP-UserAgent-ProgressBar-1.100810Changes INSTALL LICENSE MANIFEST MANIFEST.SKIP META.json META.yml Makefile.PL README dist.ini lib/LWP/UserAgent/ProgressBar.pm t/00-compile.t t/000-report-versions.t t/01_misc.t t/author-critic.t t/perlcriticrc t/release-check-changes.t t/release-dist-manifest.t t/release-has-version.t t/release-kwalitee.t t/release-meta-yaml.t t/release-minimum-version.t t/release-pod-coverage.t t/release-pod-spell.t t/release-pod-syntax.t t/release-portability.t t/release-synopsis.t