NAME
CPAN::Testers::Data::Addresses - CPAN Testers Addresses Database Manager
SYNOPSIS
perl addresses.pl \
[--verbose|v] --config|c=<file> \
( [--help|h] \
| [--update] \
| [--reindex] [--lastid=<num>] \
| [--backup] \
| [--mailrc|m=<file>] [--month=<string>] [--match] ) \
[--logfile=<file>] [--logclean=(0|1)]
DESCRIPTION
This program allows the user to update the tester addresses database, or search it, based on a restricted set of criteria.
SCHEMA
The schema for the MySQL database is below:
CREATE TABLE ixaddress (
id int(10) unsigned NOT NULL,
addressid int(10) unsigned NOT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM;
CREATE TABLE tester_address (
addressid int(10) unsigned NOT NULL auto_increment,
testerid int(10) unsigned NOT NULL default 0,
address varchar(255) NOT NULL,
email varchar(255) default NULL,
PRIMARY KEY (addressid)
) ENGINE=MyISAM;
CREATE TABLE tester_profile (
testerid int(10) unsigned NOT NULL auto_increment,
name varchar(255) default NULL,
pause varchar(255) default NULL,
PRIMARY KEY (testerid)
) ENGINE=MyISAM;
The address field is the same as the tester field in the cpanstats table, while the email field is the extracted email address field only.
INTERFACE
The Constructor
new
Instatiates the object CPAN::Testers::Data::Addresses:
my $obj = CPAN::Testers::Data::Addresses->new();
Public Methods
process
Based on accessor settings will run the appropriate methods for the current execution.
search
Search the tables for unmapped entries, suggesting appropriate mappings.
update
Updates the tester_profiles and tester_address entries as defined by the reference source text file.
reindex
Indexes the ixaddress table, updating the tester_address table if appropriate.
backup
Provides backup files of the uploads database.
Accessor Methods
logfile
Path to output log file for progress and debugging messages.
logclean
If set to a true value will create/overwrite the logfile, otherwise will append any messages.
lastfile
Path to the file containing the last cpanstats record ID processed.
Internal Methods
- load_addresses
-
Loads all the data files with addresses against we can match, then load all the addresses listed in the DB that we need to match against.
- match_addresses
-
Given all the possible mappings, attempts to match unmapped addresses.
- print_addresses
-
Prints the suggested mappings, and those remaining unmapped addresses.
- map_address
-
Atempts to map an address to a known CPAN author, then to one that already exists in the database, and finally to one that is known within the CPAN Authors index.
- map_domain
-
Attempts to map an address based on its domain.
Private Methods
_lastid
Sets or returns the last cpanstats record ID processed.
_extract_email
Extracts an email from a text string.
_init_options
Initialises internal configuration settings based on command line options, API options and configuration file settings.
_help
Provides a help screen.
_log
Writes audit messages to a log file.
BECOME A TESTER
Whether you have a common platform or a very unusual one, you can help by testing modules you install and submitting reports. There are plenty of module authors who could use test reports and helpful feedback on their modules and distributions.
If you'd like to get involved, please take a look at the CPAN Testers Wiki, where you can learn how to install and configure one of the recommended smoke tools.
For further help and advice, please subscribe to the the CPAN Testers discussion mailing list.
CPAN Testers Wiki
- http://wiki.cpantesters.org
CPAN Testers Discuss mailing list
- http://lists.cpan.org/showlist.cgi?name=cpan-testers-discuss
BUGS, PATCHES & FIXES
There are no known bugs at the time of this release. However, if you spot a bug or are experiencing difficulties, that is not explained within the POD documentation, please send an email to barbie@cpan.org. However, it would help greatly if you are able to pinpoint problems or even supply a patch.
Fixes are dependant upon their severity and my availablity. Should a fix not be forthcoming, please feel free to (politely) remind me.
RT Queue - http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Testers-Data-Addresses
SEE ALSO
CPAN::Testers::Data::Generator, CPAN::Testers::WWW::Statistics
http://www.cpantesters.org/, http://stats.cpantesters.org/, http://wiki.cpantesters.org/, http://blog.cpantesters.org/
AUTHOR
Barbie, <barbie@cpan.org>
for Miss Barbell Productions <http://www.missbarbell.co.uk>.
COPYRIGHT AND LICENSE
Copyright (C) 2009,2010 Barbie for Miss Barbell Productions.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.