/usr/share/perl5/Business/ISBN.pm is in libbusiness-isbn-perl 3.003-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 | package Business::ISBN;
use strict;
=encoding utf8
=head1 NAME
Business::ISBN - work with International Standard Book Numbers
=head1 SYNOPSIS
use Business::ISBN;
# 10 digit ISBNs
$isbn10 = Business::ISBN->new('1565922573');
$isbn10 = Business::ISBN->new('1-56592-257-3');
# 13 digit ISBNs
$isbn13 = Business::ISBN->new('978-0-596-52724-2');
# convert
$isbn10 = $isbn13->as_isbn10; # for the 978 prefixes
$isbn13 = $isbn10->as_isbn13;
# maybe you don't care what it is as long as everything works
$isbn = Business::ISBN->new( $ARGV[0] );
#print the ISBN with hyphens at usual positions
print $isbn->as_string;
#print the ISBN with hyphens at specified positions.
#this not does affect the default positions
print $isbn->as_string([]);
#print the group code or publisher code
print $isbn->group_code;
print $isbn->publisher_code;
#check to see if the ISBN is valid
$isbn->is_valid;
#fix the ISBN checksum. BEWARE: the error might not be
#in the checksum!
$isbn->fix_checksum;
# create an EAN13 barcode in PNG format
$isbn->png_barcode;
=head1 DESCRIPTION
This modules handles International Standard Book Numbers, including
ISBN-10 and ISBN-13.
=cut
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # Boring set up stuff
use subs qw(
_common_format
INVALID_GROUP_CODE
INVALID_PUBLISHER_CODE
BAD_CHECKSUM
GOOD_ISBN
BAD_ISBN
ARTICLE_CODE_OUT_OF_RANGE
);
use vars qw( $VERSION @ISA @EXPORT_OK %EXPORT_TAGS $debug %group_data
$MAX_GROUP_CODE_LENGTH %ERROR_TEXT );
use Carp qw(carp croak cluck);
use base qw(Exporter);
use Business::ISBN::Data 20140910.002; # now a separate module
# ugh, hack
*group_data = *Business::ISBN::country_data;
sub _group_data { $group_data{ $_[1] } }
sub _max_group_code_length { $Business::ISBN::MAX_COUNTRY_CODE_LENGTH };
sub _max_publisher_code_length {
$_[0]->_max_length
- $_[0]->_prefix_length # prefix
- $_[0]->_group_code_length # group
- 1 # article
- 1; # checksum
};
sub _publisher_ranges {
my $self = shift;
[ @{ $self->_group_data( $self->group_code )->[1] } ];
}
my $debug = $ENV{BUSINESS_ISBN_DEBUG};
BEGIN {
@EXPORT_OK = qw(
INVALID_GROUP_CODE INVALID_PUBLISHER_CODE
BAD_CHECKSUM GOOD_ISBN BAD_ISBN ARTICLE_CODE_OUT_OF_RANGE
INVALID_PREFIX
%ERROR_TEXT
valid_isbn_checksum
);
%EXPORT_TAGS = (
'all' => \@EXPORT_OK,
);
};
$VERSION = '3.003';
sub ARTICLE_CODE_OUT_OF_RANGE () { -5 }
sub INVALID_PREFIX () { -4 };
sub INVALID_GROUP_CODE () { -2 };
sub INVALID_PUBLISHER_CODE () { -3 };
sub BAD_CHECKSUM () { -1 };
sub GOOD_ISBN () { 1 };
sub BAD_ISBN () { 0 };
%ERROR_TEXT = (
0 => "Bad ISBN",
1 => "Good ISBN",
-1 => "Bad ISBN checksum",
-2 => "Invalid group code",
-3 => "Invalid publisher code",
-4 => "Invalid prefix (must be 978 or 979)",
-5 => "Incremented article code would be out of range",
);
use Business::ISBN10;
use Business::ISBN13;
=head2 Function interface
=over 4
=item valid_isbn_checksum( ISBN10 | ISBN13 )
This function is exportable on demand, and works for either 10
or 13 character ISBNs).
use Business::ISBN qw( valid_isbn_checksum );
Returns 1 if the ISBN is a valid ISBN with the right checksum.
Returns 0 if the ISBN has valid prefix and publisher codes, but an
invalid checksum.
Returns undef if the ISBN does not validate for any other reason.
=back
=cut
sub valid_isbn_checksum {
my $isbn = shift;
my $obj = Business::ISBN->new( $isbn );
return unless defined $obj;
return 1 if $obj->is_valid_checksum == GOOD_ISBN;
return 0 if $obj->is_valid_checksum == BAD_CHECKSUM;
return;
}
=head2 Object interface
=over 4
=item new($isbn)
The constructor accepts a scalar representing the ISBN.
The string representing the ISBN may contain characters other than
C<[0-9xX]>, although these will be removed in the internal
representation. The resulting string must look like an ISBN - the
first nine characters must be digits and the tenth character must be a
digit, 'x', or 'X'.
The constructor attempts to determine the group code and the publisher
code. If these data cannot be determined, the constructor sets C<<
$obj->error >> to something other than C<GOOD_ISBN>. An object is
still returned and it is up to the program to check the C<< error >> method
for one of five values or one of the C<< error_* >> methods to check for
a particular error. The actual
values of these symbolic versions are the same as those from previous
versions of this module which used literal values:
Business::ISBN::INVALID_PUBLISHER_CODE
Business::ISBN::INVALID_GROUP_CODE
Business::ISBN::BAD_CHECKSUM
Business::ISBN::GOOD_ISBN
Business::ISBN::BAD_ISBN
If you have one of these values and want to turn it into a string, you
can use the C<%Business::ISBN::ERROR_TEXT> hash, which is exportable
by asking for it explicitly in the import list:
use Business::ISBN qw(%ERROR_TEXT);
As of version 2.010_01, you can get this text from C<< error_text >>
so you don't have to import anything.
The string passed as the ISBN need not be a valid ISBN as long as it
superficially looks like one. This allows one to use the
C<fix_checksum()> method. Despite the disclaimer in the discussion of
that method, the author has found it extremely useful. One should
check the validity of the ISBN with C<is_valid()> rather than relying
on the return value of the constructor. If all one wants to do is
check the validity of an ISBN, one can skip the object-oriented
interface and use the C<valid_isbn_checksum()> function which is
exportable on demand.
If the constructor decides it cannot create an object, it returns
C<undef>. It may do this if the string passed as the ISBN cannot be
munged to the internal format meaning that it does not even come close
to looking like an ISBN.
=cut
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
sub new {
my $class = shift;
my $input_data = shift;
my $common_data = _common_format $input_data;
return unless $common_data;
my $self = {
input_isbn => $input_data,
common_data => $common_data
};
my $isbn = do {
if( length( $common_data ) == 10 ) {
bless $self, 'Business::ISBN10';
}
elsif( length( $common_data ) == 13 ) {
bless $self, 'Business::ISBN13';
}
else {
return BAD_ISBN;
}
};
$self->_init( $common_data );
$self->_parse_isbn( $common_data );
return $isbn;
}
=back
=head2 Instance methods
=over 4
=item input_isbn
Returns the starting ISBN. Since you may insert hyphens or fix
checksums, you might want to see the original data.
=cut
sub input_isbn { $_[0]->{'input_isbn'} }
=item common_data
Returns the starting ISBN after normalization, which removes anything
that isn't a digit or a valid checksum character.
=cut
sub common_data { $_[0]->{'common_data'} }
=item isbn
Returns the current value of ISBN, even if it has an invalid checksum.
This is the raw data so it doesn't have the hyphens. If you want
hyphenation, try C<as_string>.
The C<isbn> method should be the same as C<as_string( [] )>.
=cut
sub isbn { $_[0]->{'isbn'} }
=item error
Return the error code for the reason the ISBN isn't valid. The return
value is a key in %ERROR_TEXT.
=cut
sub error { $_[0]->{'valid'} < 1 and $_[0]->{'valid'} }
=item error_is_bad_group
=item error_is_bad_publisher
=item error_is_article_out_of_range
=item error_is_bad_checksum
Returns true if the ISBN error is that type.
=cut
sub error_is_bad_group {
return $_[0]->error == INVALID_GROUP_CODE;
}
sub error_is_bad_publisher {
return $_[0]->error == INVALID_PUBLISHER_CODE;
}
sub error_is_article_out_of_range {
return $_[0]->error == ARTICLE_CODE_OUT_OF_RANGE;
}
sub error_is_bad_checksum {
return $_[0]->error == BAD_CHECKSUM;
}
=item error_text
Returns a text version of the error text
=cut
sub error_text { $ERROR_TEXT{$_[0]->{'valid'}} }
=item is_valid
Return true if the ISBN is valid, meaning that it has a valid prefix
(for ISBN-13), group code, and publisher code; and its checksum
validates.
=cut
sub is_valid { $_[0]->{'valid'} eq GOOD_ISBN }
=item type
Returns either C<ISBN10> or C<ISBN13>.
=cut
sub type { $_[0]->{'type'} }
=item prefix
Returns the prefix for the ISBN. This is currently either 978 or 979
for ISBN-13. It returns the empty string (so, a defined value) for
ISBN-10.
=cut
sub prefix { $_[0]->{'prefix'} }
sub _prefix_length { length $_[0]->{'prefix'} }
=item group_code
Returns the group code for the ISBN. This is the numerical version,
for example, '0' for the English group. The valid group codes come
from C<Business::ISBN::Data>.
=cut
sub group_code { $_[0]->{'group_code'} }
=item group
Returns the group name for the ISBN. This is the string version. For
instance, 'English' for the '0' group. The names come from
C<Business::ISBN::Data>.
=cut
sub group { $_[0]->_group_data( $_[0]->group_code )->[0] }
sub _group_code_length {
length(
defined $_[0]->{'group_code'} ? $_[0]->{'group_code'} : ''
);
}
=item publisher_code
Returns the publisher code for the ISBN. This is the numeric version,
for instance '596' for O'Reilly Media.
=cut
sub publisher_code { $_[0]->{'publisher_code'} }
sub _publisher_code_length {
length(
defined $_[0]->{'publisher_code'} ? $_[0]->{'publisher_code'} : ''
);
}
=item article_code
Returns the article code for the ISBN. This is the numeric version that
uniquely identifies the item.
=cut
sub article_code { $_[0]->{'article_code'} }
=item article_code_length
Returns the article code length for the ISBN.
=cut
sub article_code_length { length $_[0]->{'article_code'} }
=item article_code_min
Returns the minimum article code length for the publisher code.
=cut
sub article_code_min { 0 }
=item article_code_max
Returns the max article code length for the publisher code.
=cut
sub article_code_max { '9' x $_[0]->article_code_length }
=item checksum
Returns the checksum code for the ISBN. This checksum may not be valid since
you can create an object an fix the checksum later with C<fix_checksum>.
=cut
sub checksum { $_[0]->{'checksum'} }
sub _checksum_pos { length( $_[0]->isbn ) - 1 }
=item is_valid_checksum
Returns C<Business::ISBN::GOOD_ISBN> for valid checksums and
C<Business::ISBN::BAD_CHECKSUM> otherwise. This does not guarantee
that the rest of the ISBN is actually assigned to a book.
=cut
sub is_valid_checksum {
my $self = shift;
cluck "is_valid_checksum: Didn't get object!" unless ref $self;
no warnings 'uninitialized';
return GOOD_ISBN if $self->checksum eq $self->_checksum;
return BAD_CHECKSUM;
}
=item fix_checksum
Checks the checksum and modifies the ISBN to set it correctly if needed.
=cut
sub fix_checksum {
my $self = shift;
my $last_char = substr($self->isbn, $self->_checksum_pos, 1);
my $checksum = $self->_checksum;
my $isbn = $self->isbn;
substr($isbn, $self->_checksum_pos, 1) = $checksum;
$self->_set_isbn( $isbn );
$self->_set_checksum( $checksum );
$self->_check_validity;
return 0 if $last_char eq $checksum;
return 1;
}
=item as_string(), as_string([])
Return the ISBN as a string. This function takes an
optional anonymous array (or array reference) that specifies
the placement of hyphens in the string. An empty anonymous array
produces a string with no hyphens. An empty argument list
automatically hyphenates the ISBN based on the discovered
group and publisher codes. An ISBN that is not valid may
produce strange results.
The positions specified in the passed anonymous array
are only used for one method use and do not replace
the values specified by the constructor. The method
assumes that you know what you are doing and will attempt
to use the least three positions specified. If you pass
an anonymous array of several positions, the list will
be sorted and the lowest three positions will be used.
Positions less than 1 and greater than 12 are silently
ignored.
A terminating 'x' is changed to 'X'.
=cut
sub as_string {
my $self = shift;
my $array_ref = shift;
#this allows one to override the positions settings from the
#constructor
$array_ref = $self->_hyphen_positions unless ref $array_ref eq ref [];
# print STDERR Data::Dumper->Dump( [$array_ref], [qw(array_ref)] );
# print STDERR Data::Dumper->Dump( [$self], [qw(self)] );
return unless $self->is_valid eq GOOD_ISBN;
my $isbn = $self->isbn;
foreach my $position ( sort { $b <=> $a } @$array_ref ) {
next if $position > 12 or $position < 1;
substr($isbn, $position, 0) = '-';
}
return $isbn;
}
=item as_isbn10
Returns a new ISBN object. If the object is already ISBN-10, this method
clones it. If it is an ISBN-13 with the prefix 978, it returns the ISBN-10
equivalent. For all other cases it returns undef.
=cut
sub as_isbn10 {
croak "as_isbn10() must be implemented in Business::ISBN subclass"
}
=item as_isbn13
Returns a new ISBN object. If the object is already ISBN-13, this method
clones it. If it is an ISBN-10, it returns the ISBN-13 equivalent with the
978 prefix.
=cut
sub as_isbn13 {
croak "as_isbn13() must be implemented in Business::ISBN subclass"
}
=item increment
Returns the next C<Business::ISBN> by incrementing the article code of
the specified ISBN (object or scalar).
Returns undef, if the parameter is invalid or equals the maximum
possible ISBN for the publisher.
$isbn = Business::ISBN->new('1565922573'); # 1-56592-257-3
$next_isbn = $isbn->increment; # 1-56592-258-1
If the next article code would exceed the maximum possible article
code (such as incrementing 999 to 1000), this returns ARTICLE_CODE_OUT_OF_RANGE
as the error.
=cut
sub increment { $_[0]->_step_article_code( +1 ) }
=item decrement
Returns the previous C<Business::ISBN> by decrementing the article
code of the specified ISBN (object or scalar).
Returns undef, if the parameter is invalid or equals the minimum
possible ISBN for the publisher.
$isbn = Business::ISBN->new('1565922573'); # 1-56592-257-3
$prev_isbn = $isbn->decrement; # 1-56592-256-5
If the next article code would exceed the maximum possible article
code (such as incrementing 000 to -1), this returns ARTICLE_CODE_OUT_OF_RANGE
as the error.
=cut
sub decrement { $_[0]->_step_article_code( -1 ) }
sub _step_article_code {
my( $self, $step ) = @_;
carp "The step for _step_isbn must be an integer"
unless( $step == int $step and $step != 0 );
my $next_article_code = int $self->article_code + $step;
return ARTICLE_CODE_OUT_OF_RANGE unless
$next_article_code >= $self->article_code_min
&&
$next_article_code <= $self->article_code_max
;
my $next_isbn = Business::ISBN->new(
join('',
$self->prefix,
$self->group_code,
$self->publisher_code,
sprintf( "%0*d", $self->article_code_length, $next_article_code ),
'0'
)
);
$next_isbn->fix_checksum;
$next_isbn;
}
=item png_barcode
Returns image data in PNG format for the barcode for the ISBN. This
works with ISBN-10 and ISBN-13. The ISBN-10s are automaically converted
to ISBN-13.
This requires C<GD::Barcode::EAN13>.
=cut
sub png_barcode {
my $self = shift;
my $ean = $self->as_isbn13->as_string([]);
eval "use GD::Barcode::EAN13";
if( $@ )
{
carp "Need GD::Barcode::EAN13 to use png_barcode!";
return;
}
my $image = GD::Barcode::EAN13->new($ean)->plot->png;
return $image;
}
=back
=cut
sub _set_isbn { $_[0]->{'isbn'} = $_[1]; }
sub _set_is_valid { $_[0]->{'valid'} = $_[1]; }
sub _set_prefix
{
croak "_set_prefix() must be implemented in Business::ISBN subclass"
}
sub _set_group_code { $_[0]->{'group_code'} = $_[1]; }
sub _set_group_code_string { $_[0]->{'group_code_string'} = $_[1]; }
sub _set_publisher_code { $_[0]->{'publisher_code'} = $_[1]; }
sub _set_publisher_code_string { $_[0]->{'publisher_code_string'} = $_[1]; }
sub _set_article_code { $_[0]->{'article_code'} = $_[1]; }
sub _set_checksum { $_[0]->{'checksum'} = $_[1]; }
sub _set_type {
croak "_set_type() must be implemented in Business::ISBN subclass"
}
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # internal methods. you don't get to use this one.
sub _common_format {
#we want uppercase X's
my $data = uc shift;
#get rid of everything except decimal digits and X
$data =~ s/[^0-9X]//g;
return $1 if $data =~ m/
\A #anchor at start
(
(?:\d\d\d)?
\d{9}[0-9X]
)
\z #anchor at end
/x;
return;
}
sub _init {
my $self = shift;
my $common_data = shift;
my $class = ref $self =~ m/.*::(.*)/g;
$self->_set_type;
$self->_set_isbn( $common_data );
# we don't know if we have a valid group code yet
# so let's assume that we don't
$self->_set_is_valid( INVALID_GROUP_CODE );
}
{
my @methods = (
[ qw( prefix ), INVALID_PREFIX ],
[ qw( group_code ), INVALID_GROUP_CODE ],
[ qw( publisher_code ), INVALID_PUBLISHER_CODE ],
[ qw( article_code ), BAD_ISBN ],
[ qw( checksum ), BAD_CHECKSUM ],
);
sub _parse_isbn {
my $self = shift;
foreach my $pair ( @methods )
{
my( $method, $error_code ) = @$pair;
my $parser = "_parse_$method";
my $result = $self->$parser;
unless( defined $result )
{
$self->_set_is_valid( $error_code );
#print STDERR "Got bad result for $method [$$self{isbn}]\n";
return;
}
$method = "_set_$method";
$self->$method( $result );
}
$self->_set_is_valid( $self->is_valid_checksum );
return $self;
}
}
sub _parse_group_code {
my $self = shift;
my $trial; # try this to see what we get
my $group_code_length = 0;
my $count = 1;
GROUP_CODE:
while( defined( $trial= substr($self->isbn, $self->_prefix_length, $count++) ) )
{
if( defined $self->_group_data( $trial ) )
{
return $trial;
last GROUP_CODE;
}
# if we've past the point of finding a group
# code we're pretty much stuffed.
return if $count > $self->_max_group_code_length;
}
return; #failed if I got this far
}
sub _parse_publisher_code {
my $self = shift;
my $pairs = $self->_publisher_ranges;
# get the longest possible publisher code
# I'll try substrs of this to get the real one
my $longest = substr(
$self->isbn,
$self->_prefix_length + $self->_group_code_length,
$self->_max_publisher_code_length,
);
#print STDERR "Trying to parse publisher: longest [$longest]\n";
while( @$pairs ) {
my $lower = shift @$pairs;
my $upper = shift @$pairs;
my $trial = substr( $longest, 0, length $lower );
#print STDERR "Trying [$trial] with $lower <-> $upper [$$self{isbn}]\n";
# this has to be a sring comparison because there are
# possibly leading 0s
if( $trial ge $lower and $trial le $upper )
{
#print STDERR "Returning $trial\n";
return $trial;
}
}
return; #failed if I got this far
}
sub _parse_article_code {
my $self = shift;
my $head = $self->_prefix_length +
$self->_group_code_length +
$self->_publisher_code_length;
my $length = length( $self->isbn ) - $head - 1;
substr( $self->isbn, $head, $length );
}
sub _parse_checksum {
my $self = shift;
substr( $self->isbn, -1, 1 );
}
sub _check_validity {
my $self = shift;
if( $self->is_valid_checksum eq GOOD_ISBN and
defined $self->group_code and
defined $self->publisher_code and
defined $self->prefix
) {
$self->_set_is_valid( GOOD_ISBN );
return GOOD_ISBN;
}
else {
$self->_set_is_valid( INVALID_PUBLISHER_CODE )
unless defined $self->publisher_code;
$self->_set_is_valid( INVALID_GROUP_CODE )
unless defined $self->group_code;
$self->_set_is_valid( INVALID_PREFIX )
unless defined $self->prefix;
return;
}
}
sub _hyphen_positions {
croak "hyphen_positions() must be implemented in Business::ISBN subclass"
}
1;
__END__
=head1 BUGS
=head1 TO DO
* i would like to create the bar codes with the price extension
=head1 SOURCE AVAILABILITY
This source is in Github:
https://github.com/briandfoy/business-isbn
=head1 AUTHOR
brian d foy C<< <bdfoy@cpan.org> >>
=head1 COPYRIGHT AND LICENSE
Copyright © 2001-2016, brian d foy <bdfoy@cpan.org>. All rights reserved.
This module is licensed under the Artistic License 2.0. See the LICENSE
file in the distribution, or https://opensource.org/licenses/Artistic-2.0
=head1 CREDITS
Thanks to Mark W. Eichin C<< <eichin@thok.org> >> for suggestions and
discussions on EAN support.
Thanks to Andy Lester C<< <andy@petdance.com> >> for lots of bug fixes
and testing.
Ed Summers C<< <esummers@cpan.org> >> has volunteered to help with
this module.
Markus Spann C<< <markus_spann@gmx.de> >> added C<increment> and C<decrement>.
=cut
|