[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

minimal nntp client

Gerry Ford

3/13/2008 1:32:00 AM

I'm relatively new to ruby, having had one thread regarding commenting.

I'd like to move on to a more authentic task. I would like to write an
analogous script in ruby as this perl script:
## minimal nntp client


#!/usr/bin/perl -1

use strict;
use warnings;
use Net::NNTP;
use Date::Parse;

my $nsrv='news.newsgroups.com';
my $grp='alt.religion.mormon';
my $USER = '';
my $PASS = '';

my $nntp=Net::NNTP->new($nsrv) or die "Can't login to `$nsrv'$!\n";
$nntp->authinfo($USER,$PASS) or die $!;
my (undef, $first, $last, undef)=$nntp->group($grp)
or die "Can't access $grp\n";

my ($since, @arts)=time-5*60*60;
for (reverse $first..$last) {
my %hdr=map /^(\S[^:]+):\s(.*)$/g, @{$nntp->head($_)};
defined(my $date=$hdr{'NNTP-Posting-Date'}) or next;
defined(my $time=str2time $date)
or warn "Couldn't parse date for article $_ ($date)\n"
and next;
last if $time < $since;
unshift @arts, $_;
}

$nntp->article($_,\*STDOUT) for @arts;

# perl client2.pl >text59.txt 2>text56.txt
__END__

This script retrieves the messages of the last five hours in the
specified ng.

Q1) What is the ruby analog to the perl use of strict and warnings?

Q2) What analog does ruby have of net:nntp?

Thanks in advance,
--
Posted via http://www.ruby-....

4 Answers

Anton Bangratz

3/13/2008 9:46:00 AM

0

Gerry Ford wrote:
> I'm relatively new to ruby, having had one thread regarding commenting.
>
> I'd like to move on to a more authentic task. I would like to write an
> analogous script in ruby as this perl script:
> ## minimal nntp client
>
>
> #!/usr/bin/perl -1
>
> use strict;
> use warnings;
> use Net::NNTP;
> use Date::Parse;
>
> my $nsrv='news.newsgroups.com';
> my $grp='alt.religion.mormon';
> my $USER = '';
> my $PASS = '';
>
> my $nntp=Net::NNTP->new($nsrv) or die "Can't login to `$nsrv'$!\n";
> $nntp->authinfo($USER,$PASS) or die $!;
> my (undef, $first, $last, undef)=$nntp->group($grp)
> or die "Can't access $grp\n";
>
> my ($since, @arts)=time-5*60*60;
> for (reverse $first..$last) {
> my %hdr=map /^(\S[^:]+):\s(.*)$/g, @{$nntp->head($_)};
> defined(my $date=$hdr{'NNTP-Posting-Date'}) or next;
> defined(my $time=str2time $date)
> or warn "Couldn't parse date for article $_ ($date)\n"
> and next;
> last if $time < $since;
> unshift @arts, $_;
> }
>
> $nntp->article($_,\*STDOUT) for @arts;
>
> # perl client2.pl >text59.txt 2>text56.txt
> __END__
>
> This script retrieves the messages of the last five hours in the
> specified ng.
>
> Q1) What is the ruby analog to the perl use of strict and warnings?
>
> Q2) What analog does ruby have of net:nntp?
>
> Thanks in advance,

Shameless plug:

There's my small library at
http://rubyforge.org/projects/ruby.... Can be installed via
rubygems (gem install ruby-net-nntp) and used according to the
documentation.

It's still not 100% feature complete, so I consider it in beta state,
but covers most ofyour needs, and if you need assistance, just ask me.

tony

Thomas Wieczorek

3/13/2008 10:10:00 AM

0

On Thu, Mar 13, 2008 at 2:32 AM, Gerry Ford <wade@zaxfuuq.net> wrote:
>
> Q1) What is the ruby analog to the perl use of strict and warnings?
>

I am not really experienced in Perl, but as I understand it. strict
enforces that you have to declare variables, so that when you mistype
something an error occurrs. You get a NameError in Ruby when you use a
variable which hasn't any value assigned:

# irb
# foo has a value
foo = "Hello"
puts foo # "Hello"

# bar is not declared
puts bar

# NameError: undefined local variable or method `bar' for main:Object
# from (irb):6

As far as I know you can't turn warnings on from your code, but you
can run Ruby with the "-w" option which shows warnings.

Gerry Ford

3/14/2008 3:58:00 AM

0

Anton Bangratz wrote:
> Gerry Ford wrote:

>> Q2) What analog does ruby have of net:nntp?
>>
>> Thanks in advance,
>
> Shameless plug:
>
> There's my small library at
> http://rubyforge.org/projects/ruby.... Can be installed via
> rubygems (gem install ruby-net-nntp) and used according to the
> documentation.
>
> It's still not 100% feature complete, so I consider it in beta state,
> but covers most ofyour needs, and if you need assistance, just ask me.
Thanks Anton.

I downloaded your library as well as the nntp gem. My next question is
where I should put it. When I downloaded a perl date::parse module,
what they expect is that it gets put in the site file, and then has a
folder called 'Date' wherein lies Parse.pm

This screenshot shows my gem subdirectory: http://zaxfuuq.net...
The directory just keeps sprawling. Where all would ruby.exe look
for something required?

My second question is how to call something from these gems. They seem
inscrutable to me.

Beautiful night here in New Mexico. Cheers.
--



--
Posted via http://www.ruby-....

Gerry Ford

3/14/2008 4:06:00 AM

0

Thomas Wieczorek wrote:
> On Thu, Mar 13, 2008 at 2:32 AM, Gerry Ford <wade@zaxfuuq.net> wrote:
>>
>> Q1) What is the ruby analog to the perl use of strict and warnings?
>>
>
> I am not really experienced in Perl, but as I understand it. strict
> enforces that you have to declare variables, so that when you mistype
> something an error occurrs. You get a NameError in Ruby when you use a
> variable which hasn't any value assigned:
>
> # irb
> # foo has a value
> foo = "Hello"
> puts foo # "Hello"
>
> # bar is not declared
> puts bar
>
> # NameError: undefined local variable or method `bar' for main:Object
> # from (irb):6
>
> As far as I know you can't turn warnings on from your code, but you
> can run Ruby with the "-w" option which shows warnings.
Thanks, Thomas. It sounds like ruby is already "strict" in the perl
sense. As for warnings, I'll enable them on the goocher, which is what
I call a dos command that I comment out at the end of a script: Thus

# perl client2.pl >text59.txt 2>text56.txt
__END__
becomes, in ruby, with warnings enabled:

# ruby -w client2.rb >text59.txt 2>text56.txt
__END__

Cheers.
--
--
Posted via http://www.ruby-....