############################################################################### # # This file copyright (c) 2006-2008 by Randy J. Ray, all rights reserved # # See "LICENSE" in the documentation for licensing and redistribution terms. # ############################################################################### # # $Id: Publishers.pm 49 2008-04-06 10:45:43Z $ # # Description: This is an extension of the API class that implements # the Publishers class of objects # # Functions: BUILD # new # find # set_id # set_categories # get_categories # normalize_args # # Libraries: Class::Std # Error # WebService::ISBNDB::API # # Global Consts: $VERSION # ############################################################################### package WebService::ISBNDB::API::Publishers; use 5.006; use strict; use warnings; no warnings 'redefine'; use vars qw($VERSION); use base 'WebService::ISBNDB::API'; use Class::Std; use Error; $VERSION = "0.21"; my %id : ATTR(:init_arg :get :default<>); my %name : ATTR(:name :default<>); my %location : ATTR(:name :default<>); my %categories : ATTR(:init_arg :default<>); ############################################################################### # # Sub Name: new # # Description: Pass off to the super-class constructor, which handles # the special cases for arguments. # ############################################################################### sub new { shift->SUPER::new(@_); } ############################################################################### # # Sub Name: BUILD # # Description: Builder for this class. See Class::Std. # # Arguments: NAME IN/OUT TYPE DESCRIPTION # $self in ref Object # $id in scalar This object's unique ID # $args in hashref The set of arguments currently # being considered for the # constructor. # # Returns: Success: void # Failure: throws Error::Simple # ############################################################################### sub BUILD { my ($self, $id, $args) = @_; $self->set_type('Publishers'); throw Error::Simple("'categories' must be a list-reference") if ($args->{categories} and (ref($args->{categories}) ne 'ARRAY')); return; } ############################################################################### # # Sub Name: copy # # Description: Copy the Publishers-specific attributes over from target # object to caller. # # Arguments: NAME IN/OUT TYPE DESCRIPTION # $self in ref Object # $target in ref Object of the same class # # Globals: %id # %name # %location # %categories # # Returns: Success: void # Failure: throws Error::Simple # ############################################################################### sub copy : CUMULATIVE { my ($self, $target) = @_; throw Error::Simple("Argument to 'copy' must be the same class as caller") unless (ref($self) eq ref($target)); my $id1 = ident $self; my $id2 = ident $target; # Do the simple (scalar) attributes first $id{$id1} = $id{$id2}; $name{$id1} = $name{$id2}; $location{$id1} = $location{$id2}; # This must be tested and copied by value $categories{$id1} = [ @{$categories{$id2}} ] if ref($categories{$id2}); return; } ############################################################################### # # Sub Name: set_id # # Description: Set the ID attribute on the object. Done manually so that # we can restrict it to this package. # # Arguments: NAME IN/OUT TYPE DESCRIPTION # $self in ref Object # $id in scalar ID, taken from isbndb.com data # # Globals: %id # # Returns: $self # ############################################################################### sub set_id : RESTRICTED { my ($self, $id) = @_; $id{ident $self} = $id; $self; } ############################################################################### # # Sub Name: set_categories # # Description: Set the list of Categories objects for this instance. The # list will initially be a list of IDs, taken from the # attributes of the XML. Only upon read-access (via # get_categories) will the list be turned into real objects. # # Arguments: NAME IN/OUT TYPE DESCRIPTION # $self in ref Object # $list in ref List-reference of category data # # Globals: %categories # # Returns: Success: $self # Failure: throws Error::Simple # ############################################################################### sub set_categories { my ($self, $list) = @_; throw Error::Simple("Argument to 'set_categories' must be a list reference") unless (ref($list) eq 'ARRAY'); # Make a copy of the list $categories{ident $self} = [ @$list ]; $self; } ############################################################################### # # Sub Name: get_categories # # Description: Return a list-reference of the Categories. If this is # the first such request, then the category values are going # to be scalars, not objects, and must be converted to # objects before being returned. # # Arguments: NAME IN/OUT TYPE DESCRIPTION # $self in ref Object # # Globals: %categories # # Returns: Success: list-reference of data # Failure: throws Error::Simple # ############################################################################### sub get_categories { my $self = shift; my $categories = $categories{ident $self}; # If any element is not a reference, we need to transform the list if (grep(! ref($_), @$categories)) { my $class = $self->class_for_type('Categories'); # Make sure it's loaded eval "require $class;"; my $cat_id; for (0 .. $#$categories) { unless (ref($cat_id = $categories->[$_])) { throw Error::Simple("No category found for ID '$cat_id'") unless ref($categories->[$_] = $class->find({ id => $cat_id })); } } } # Make a copy, so the real reference doesn't get altered [ @$categories ]; } ############################################################################### # # Sub Name: find # # Description: Find a single record using the passed-in search criteria. # Most of the work is done by the super-class: this method # turns a single-argument call into a proper hashref, and/or # turns user-supplied arguments into those recognized by the # API. # # Arguments: NAME IN/OUT TYPE DESCRIPTION # $self in ref Object # $args in variable See text # # Returns: Success: result from SUPER::find # Failure: throws Error::Simple # ############################################################################### sub find { my ($self, $args) = @_; # First, see if we were passed a single scalar for an argument. If so, it # needs to become the id argument $args = { publisher_id => $args } unless (ref $args); $self->SUPER::find($args); } ############################################################################### # # Sub Name: normalize_args # # Description: Normalize the contents of the $args hash reference, turning # the user-visible (and user-friendlier) arguments into the # arguments that the API expects. # # Also adds some "results" values, to tailor the returned # content. # # Arguments: NAME IN/OUT TYPE DESCRIPTION # $class in scalar Object ref or class name # $args in hashref Reference to the arguments hash # # Returns: Success: $args (changed) # Failure: throws Error::Simple # ############################################################################### sub normalize_args { my ($class, $args) = @_; my ($key, $value, @keys, $count, $results, %seen); # Turn the collection of arguments into a set that the isbndb.com API can # use. Each key/value pair has to become a pair of the form "indexX" and # "valueX". Some keys, like author and publisher, have to be handled with # more attention. @keys = keys %$args; $count = 0; # Used to gradually increment the "indexX" and "valueX" keys foreach $key (@keys) { # If we see "api_key", it means that WebService::ISBNDB::API::search # curried it into the arglist due to the type-level search being # called as a static method. next if $key eq 'api_key'; $value = $args->{$key}; delete $args->{$key}; $count++; # A key of "id" needs to be translated as "publisher_id" if ($key eq 'id') { $args->{"index$count"} = 'publisher_id'; $args->{"value$count"} = $value; next; } # These are the only other allowed search-key(s) if ($key =~ /^(:?name|publisher_id)$/) { $args->{"index$count"} = $key; $args->{"value$count"} = $value; next; } throw Error::Simple("'$key' is not a valid search-key for publishers"); } # Add the "results" values that we want $args->{results} = [ qw(details categories) ]; $args; } 1; =pod =head1 NAME WebService::ISBNDB::API::Publishers - Data class for publisher information =head1 SYNOPSIS use WebService::ISBNDB::API::Publishers; $oreilly = WebService::ISBNDB::API::Publishers-> search({ name => 'oreilly' }); =head1 DESCRIPTION The B class extends the B class to add attributes specific to the data B provides on publishers. =head1 METHODS The following methods are specific to this class, or overridden from the super-class. =head2 Constructor The constructor for this class may take a single scalar argument in lieu of a hash reference: =over 4 =item new($PUBLISHER_ID|$ARGS) This constructs a new object and returns a referent to it. If the parameter passed is a hash reference, it is handled as normal, per B mechanics. If the value is a scalar, it is assumed to be the publisher's ID within the system, and is looked up by that. If the argument is the hash-reference form, then a new object is always constructed; to perform searches see the search() and find() methods. Thus, the following two lines are in fact different: $book = WebService::ISBNDB::API::Publishers->new({ id => "oreilly" }); $book = WebService::ISBNDB::API::Publishers->new('oreilly'); The first creates a new object that has only the C attribute set. The second returns a new object that represents the publisher with ID C, with all data present. =back The class also defines: =over 4 =item copy($TARGET) Copies the target object into the calling object. All attributes (including the ID) are copied. This method is marked "CUMULATIVE" (see L), and any sub-class of this class should provide their own copy() and also mark it "CUMULATIVE", to ensure that all attributes at all levels are copied. =back See the copy() method in L. =head2 Accessors The following attributes are used to maintain the content of a publisher object: =over 4 =item id The unique ID within the B system for this publisher. =item name The name of the publisher. =item location The publisher's location. =item categories A list of category objects for the categories in which this publisher has books. =back The following accessors are provided to manage these attributes: =over 4 =item get_id Return the publisher ID. =item set_id($ID) Sets the publisher ID. This method is restricted to this class, and cannot be called outside of it. In general, you shouldn't need to set the ID after the object is created, since B is a read-only source. =item get_name Return the publisher's name. =item set_name($NAME) Set the name to the value in C<$NAME>. =item get_location Get the publisher's location. =item set_locataion($LOCATION) Set the location to the value in C<$LOCATION>. =item get_categories Return a list-reference of the categories for the publisher. Each element of the list will be an instance of B. =item set_categories($CATEGORIES) Set the categories to the list-reference given in C<$CATEGORIES>. When the publisher object is first created from the XML data, this list is populated with the IDs of the categories. They are not converted to objects until requested (via get_categories()) by the user. =back =head2 Utility Methods Besides the constructor and the accessors, the following methods are provided for utility: =over 4 =item find($ARG|$ARGS) This is a specialization of find() from the parent class. It allows the argument passed in to be a scalar in place of the usual hash reference. If the value is a scalar, it is searched for as if it were the ID. If the value is a hash reference, it is passed to the super-class method. =item normalize_args($ARGS) This method maps the user-visible arguments as defined for find() and search() into the actual arguments that must be passed to the service itself. In addition, some arguments are added to the request to make the service return extra data used for retrieving categories, location, etc. The method changes C<$ARGS> in place, and also returns C<$ARGS> as the value from the method. =back See the next section for an explanation of the available keys for searches. =head1 SEARCHING Both find() and search() allow the user to look up data in the B database. The allowable search fields are limited to a certain set, however. When either of find() or search() are called, the argument to the method should be a hash reference of key/value pairs to be passed as arguments for the search (the exception being that find() can accept a single string, which has special meaning as detailed earlier). Searches in the text fields are done in a case-insensitive manner. The available search keys are: =over 4 =item name The value should be a text string. The search returns publishers whose name matches the string. =item id|publisher_id The value should be a text string. The search returns the publisher whose ID in the system matches the value. =back Note that the names above may not be the same as the corresponding parameters to the service. The names are chosen to match the related attributes as closely as possible, for ease of understanding. =head1 EXAMPLES Get the record for the ID C: $oreilly = WebService::ISBNDB::API::Publishers->find('oreilly'); Find all publisher records containing C: $ora = WebService::ISBNDB::API::Publishers-> search({ name => 'oreilly' }); =head1 CAVEATS The data returned by this class is only as accurate as the data retrieved from B. The list of results from calling search() is currently limited to 10 items. This limit will be removed in an upcoming release, when iterators are implemented. =head1 SEE ALSO L, L =head1 AUTHOR Randy J. Ray Erjray@blackperl.comE =head1 LICENSE This module and the code within are released under the terms of the Artistic License 2.0 (http://www.opensource.org/licenses/artistic-license-2.0.php). This code may be redistributed under either the Artistic License or the GNU Lesser General Public License (LGPL) version 2.1 (http://www.opensource.org/licenses/lgpl-license.php). =cut