dtRdr::Library - library class frontend/base
This module is still in need of some major hacking to get the plugin loader worked out. Metadata and other API aspects are also undecided.
dtRdr::Library.pm - Library interface
dtRdr::Library->class_by_type($type);
Create a new empty library object.
my $library = dtRdr::Library->new();
Load the library stored at URI
and set the location property.
Return a list of book objects for the books stored in a library object
Return a list of all the metadata objects stored in this library
Return a list of book info objects.
my @infos = $lib->get_book_info;
Return a book object matching a given key/value lookup pair.
$lib->open_book(intid => $id);
or
$lib->open_book(title => $title);
or
$lib->open_book(book_id => $book_id);
Virtual: find a book for a given $key/$value match.
$info = $lib->find_book_by($key, $value);
Add the metadata
object to the book
, stored in the library
Remove the metadata
from the specified book
, as it's stored in the library.
$lib->delete_metadata($book, $metadata);
Remove the book.
All metadata for the book will be deleted from the library.
Dan Sugalski, <dan@sidhe.org>
Eric Wilhelm <ewilhelm at cpan dot org>
Copyright (C) 2006-2007 by Dan Sugalski, Eric L. Wilhelm, and OSoft, All Rights Reserved.
Absolutely, positively NO WARRANTY, neither express or implied, is offered with this software. You use this software at your own risk. In case of loss, no person or entity owes you anything whatsoever. You have been warned.
The dotReader(TM) is OSI Certified Open Source Software licensed under the GNU General Public License (GPL) Version 2, June 1991. Non-encrypted and encrypted packages are usable in connection with the dotReader(TM). The ability to create, edit, or otherwise modify content of such encrypted packages is self-contained within the packages, and NOT provided by the dotReader(TM), and is addressed in a separate commercial license.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.