SYNOPSIS

  use News::Newsrc;

  $newsrc   = new News::Newsrc;
  $newsrc   = new News::Newsrc $file;
  $newsrc   = new News::Newsrc $file, create => 1;

  $ok       = $newsrc->load;
  $ok       = $newsrc->load             ( $file);
              $newsrc->import_rc        ( @lines);
              $newsrc->import_rc        (\@lines);

              $newsrc->save;
              $newsrc->save_as          ($file);
  @lines    = $newsrc->export_rc;

  $ok       = $newsrc-> add_group       ($group,             %options);
  $ok       = $newsrc->move_group       ($group,             %options);
  $ok       = $newsrc-> del_group       ($group);

              $newsrc->  subscribe      ($group,             %options);
              $newsrc->unsubscribe      ($group,             %options);

              $newsrc->mark             ($group,  $article , %options);
              $newsrc->mark_list        ($group, \@articles, %options);
              $newsrc->mark_range       ($group, $from, $to, %options);

              $newsrc->unmark           ($group,  $article , %options);
              $newsrc->unmark_list      ($group, \@articles, %options);
              $newsrc->unmark_range     ($group, $from, $to, %options);

       ... if $newsrc->exists           ($group);
       ... if $newsrc->subscribed       ($group);
       ... if $newsrc->marked           ($group, $article);

  $n        = $newsrc->  num_groups;
  @groups   = $newsrc->      groups;
  @groups   = $newsrc->  sub_groups;
  @groups   = $newsrc->unsub_groups;

  @articles = $newsrc->  marked_articles($group,             %options);
  @articles = $newsrc->unmarked_articles($group, $from, $to, %options);

  $articles = $newsrc->get_articles     ($group,             %options);
  $ok       = $newsrc->set_articles     ($group, $articles,  %options);

REQUIRES

Perl 5.6.0, Set::IntSpan 1.17

EXPORTS

Nothing

DESCRIPTION

\*(C`News::Newsrc\*(C' manages newsrc files, of the style

alt.foo: 1-21,28,31-34 alt.bar! 3,5,9-2900,2902

Methods are provided for

  • reading and writing newsrc files

  • adding and removing newsgroups

  • changing the order of newsgroups

  • subscribing and unsubscribing from newsgroups

  • testing whether groups exist and are subscribed

  • marking and unmarking articles

  • testing whether articles are marked

  • returning lists of newsgroups

  • returning lists of articles

NEWSRC FILES

A newsrc file is an \s-1ASCII\s0 file that lists newsgroups and article numbers. Each line of a newsrc file describes a single newsgroup. Each line is divided into three fields: a group, a subscription mark and an article list.

Lines containing only whitespace are ignored. Whitespace within a line is ignored.

Group

The group is the name of the newsgroup. A group name may not contain colons (:) or exclamation points (!). Group names must be unique within a newsrc file. The group name is required.

Subscription mark

The subscription mark is either a colon (:), for subscribed groups, or an exclamation point (!), for unsubscribed groups. The subscription mark is required.

Article list

The article list is a comma-separated list of positive integers. The integers must be listed in increasing order. Runs of consecutive integers may be abbreviated a-b, where a is the first integer in the run and b is the last. The article list may be empty.

NEWSGROUP ORDER

\*(C`News::Newsrc\*(C' preserves the order of newsgroups in a newsrc file: if a file is loaded and then saved, the newsgroup order will be unchanged.

Methods that add or move newsgroups affect the newsgroup order. By default, these methods put newsgroups at the end of the newsrc file. Other locations may be specified by passing an %options hash with a \*(C`where\*(C' key to the method. Recognized locations are: Put the newsgroup first. Put the newsgroup last. Put the newsgroup in alphabetical order. If the other newsgroups are not sorted alphabetically, put the group at an arbitrary location. Put the group immediately before $group. If $group does not exist, put the group last. Put the group immediately after $group. If $group does not exist, put the group last. Put the group at position $n in the group list. Indices are zero-based. Negative indices count backwards from the end of the list.

METHODS

Creates and returns a \*(C`News::Newsrc\*(C' object. If $file is specified, \*(C`new\*(C' loads the newsgroups in $file into the object. Subsequent calls to \*(C`save\*(C' will write to $file. If $file exists and the load fails, \*(C`new\*(C' \*(C`die\*(C's. If $file doesn't exist and the \*(C`create => 1\*(C' option is supplied in %options, then \*(C`new\*(C' doesn't load any newsgroups. If $file doesn't exist and the \*(C`create => 1\*(C' option is not supplied in %options, then \*(C`new\*(C' dies. Loads the newsgroups in $file into $newsrc. If $file is omitted, reads $ENV{\s-1HOME\s0}/.newsrc. Any existing data in $newsrc is discarded. Returns true on success. If $file can't be opened, \*(C`load\*(C' discards existing data from $newsrc and returns null. If $file contains invalid lines, \*(C`load\*(C' will \*(C`die\*(C'. When this happens, the state of $newsrc is undefined. Imports the newsgroups in @lines into $newsrc. Any existing data in $newsrc is discarded. Each line in @lines describes a single newsgroup, and must have the format described in \*(L"\s-1NEWSRC\s0 \s-1FILES\s0\*(R". If @lines contains invalid lines, \*(C`import_rc\*(C' will \*(C`die\*(C'. When this happens, the state of $newsrc is undefined. \*(C`import_rc\*(C' accepts either an array or an array reference. Writes the contents of $newsrc back to the file from which it was \*(C`load\*(C'ed. If \*(C`load\*(C' has not been called, writes to $ENV{\s-1HOME\s0}/.newsrc. In either case, if the destination file exists, it is renamed to file\*(C`.bak\*(C'. \*(C`save\*(C' will \*(C`die\*(C' if there is an error writing the file. Writes the contents of $newsrc to $file. If $file exists, it is renamed to $file\*(C`.bak\*(C'. Subsequent calls to \*(C`save\*(C' will write to $file. \*(C`save_as\*(C' will \*(C`die\*(C' if there is an error writing the file. Returns the contents of $newsrc as a list of lines. Each line describes a single newsgroup, and has the format described in \*(L"\s-1NEWSRC\s0 \s-1FILES\s0\*(R". In scalar context, returns an array reference. Adds $group to the list of newsgroups in $newsrc. $group is initially subscribed. The article list for $group is initially empty. By default, $group is added to the end of the list of newsgroups. Other locations may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. By default, \*(C`add_group\*(C' does nothing if $group already exists. If the \*(C`replace\*(C' => 1 option is provided, then \*(C`add_group\*(C' will delete $group if it exists, and then add it. \*(C`add_group\*(C' returns true iff $group was added. Changes the position of $group in $newsrc according to %options. See \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. If $group does not exist, \*(C`move_group\*(C' does nothing and returns false. Otherwise, it returns true. If $group exists in $newsrc, \*(C`del_group\*(C' removes it and returns true. The article list for $group is lost. If $group does not exist in $newsrc, \*(C`del_group\*(C' does nothing and returns false. Subscribes to $group. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Unsubscribes from $group. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Adds $article to the article list for $group. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Adds @articles to the article list for $group. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Adds all the articles from $from to $to, inclusive, to the article list for $group. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Removes $article from the article list for $group. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Removes @articles from the article list for $group. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Removes all the articles from $from to $to, inclusive, from the article list for $group. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Returns true iff $group exists in $newsrc. Returns true iff $group exists and is subscribed. Returns true iff $group exists and its article list contains $article. Returns the number of groups in $newsrc. Returns the list of groups in $newsrc, in newsrc order. In scalar context, returns an array reference. Returns the list of subscribed groups in $newsrc, in newsrc order. In scalar context, returns an array reference. Returns the list of unsubscribed groups in $newsrc, in newsrc order. In scalar context, returns an array reference. Returns the list of articles in the article list for $group. In scalar context, returns an array reference. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Returns the list of articles from $from to $to, inclusive, that do not appear in the article list for $group. In scalar context, returns an array reference. $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. Returns the article list for $group as a string, in the format described in \*(L"\s-1NEWSRC\s0 \s-1FILES\s0\*(R". $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. If you plan to do any nontrivial processing on the article list, consider converting it to a \*(C`Set::IntSpan\*(C' object: $articles = Set::IntSpan->new($newsrc->get_articles('alt.foo')) Sets the article list for $group. Any existing article list is lost. $articles is a string, as described in \*(L"\s-1NEWSRC\s0 \s-1FILES\s0\*(R". $group will be created if it does not exist. Its location may be specified in %options; see \*(L"\s-1NEWSGROUP\s0 \s-1ORDER\s0\*(R" for details. If $articles does not have the format described in \*(L"\s-1NEWSRC\s0 \s-1FILES\s0\*(R", \*(C`set_articles\*(C' does nothing and returns false. Otherwise, it returns true.

DIAGNOSTICS

Bad newsrc line

A line in the newsrc file does not have the format described in \*(L"\s-1NEWSRC\s0 \s-1FILES\s0\*(R".

Bad article list

The article list for a newsgroup does not have the format described in \*(L"\s-1NEWSRC\s0 \s-1FILES\s0\*(R".

NOTES

Error Handling

\*(L"Don't test for errors that you can't handle.\*(R"

\*(C`load\*(C' returns null if it can't open the newsrc file, and dies if the newsrc file contains invalid data. This isn't as schizophrenic as it seems.

There are several ways a program could handle an open failure on the newsrc file. It could prompt the user to reenter the file name. It could assume that the user doesn't have a newsrc file yet. If it doesn't want to handle the error, it could go ahead and die.

On the other hand, it is very difficult for a program to do anything sensible if the newsrc file opens successfully and then turns out to contain invalid data. Was there a disk error? Is the file corrupt? Did the user accidentally specify his kill file instead of his newsrc file? And what are you going to do about it?

Rather than try to handle an error like this, it's probably better to die and let the user sort things out. By the same rational, \*(C`save\*(C' and \*(C`save_as\*(C' die on failure.

Programs that must retain control can use eval{...} to protect calls that may die. For example, Perl/Tk runs all callbacks inside an eval{...}. If a callback dies, Perl/Tk regains control and displays $@ in a dialog box. The user can then decide whether to continue or quit from the program. I was going to call these methods \*(C`import\*(C' and \*(C`export\*(C', but \*(C`import\*(C' turns out not to be a good name for a method, because \*(C`use\*(C' also calls \*(C`import\*(C', and expects different semantics.

I added the \*(C`_rc\*(C' suffix to \*(C`import\*(C' to avoid this conflict. It's reasonably short and somewhat mnemonic (the module manages newsrc files). I added the same suffix to \*(C`export\*(C' for symmetry.

use integer

Up until version 1.09, \*(C`News::Newsrc\*(C' specified \*(C`use integer\*(C'. As of 2012, users are reporting newsgroups with article numbers above 0x7fffffff, which break the underlying \*(C`Set::IntSpan\*(C' module on 32-bit processors.

Version 1.10 removes the \*(C`use integer\*(C' from \*(C`News::Newsrc\*(C'. This extends the usable range of \*(C`Set::IntSpan\*(C' to (typically) 9e15, which ought to be enough, even for usenet.

If you want \*(C`use integer\*(C' back, either for performance, or because you are somehow dependent on its semantics, write

BEGIN { $Set::IntSpan::integer = 1 } use News::Newsrc;

See \*(C`Set::IntSpan\*(C' for more information.

ACKNOWLEDGMENTS

AUTHOR

Steven McDougall, [email protected]

RELATED TO News::Newsrc…

perl\|(1), Set::IntSpan

COPYRIGHT

Copyright 1996-2013 by Steven McDougall. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.