The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

AxKit::App::TABOO::Data - Base class of abstracted Data objects for TABOO

DESCRIPTION

You would rarely if ever use this class directly. Instead, you would call a subclass of this class, depending on what kind of data you are operating on. This class does, however, define some very useful methods that its subclasses can use unaltered.

It is to be noted that I have not, neither in this class nor in the subclasses, created methods to access or set every field. Instead, I rely mainly on methods that will manipulate internal data based on the for example objects that are passed as arguments. For example, the write_xml-method (below), will create XML based on all the available data in the object. This is usually all you want anyway.

In some subclasses, you will have some degree of control of what is loaded into the object data structure in the first place, by sending the names of the fields of the storage medium (e.g. database in the present implementation).

Similarly, if data is sent from a web application, I expect that the Data objects will be passed an Apache::Request object, and it is up to a method of the Data object to take what it wants from the Apache::Request object, and intelligently store it.

Some methods to access data will be implemented on an ad hoc basis, notably timestamp()-methods, that will be important in determining the validity of cached data.

Methods

new()

The constructor of this class. Rarely used.

load($key)

Will load and populate the data structure of an instance with the data from a the data source, given a key in the string $key.

write_xml($writer)

Takes an argument $writer, which must be an XML::Writer object, and appends it with the data contained in the data structure of the class in XML. This method is the jewel of this class, it should be sufficiently generic to rarely require subclassing. References to subclasses will be followed, and write_xml will call the write_xml of that object. Arrays will be represented with multiple instances of the same element. Fields that have undefined values will be represented by an empty element.

xmlelement($string)

This method is intended for internal use, but if you can use it without shooting somebody in the foot (including yourself), fine by me... It sets the parent element of an object to $string.

_addinfo($add, $this, $that)

This method is for use by subclasses only. It can be used by methods like adduserinfo(), and will be used to replace a field ($this) with another field ($that) containing a reference to a different class that will be added, $add.

Class Data Methods

dbstring($string)

A string to be passed to the DBI constructor. Currently defaults to "dbi:Pg:dbname=skepsis". Yeah, it will change...

dbuser($string)

The user name to be passed to the DBI constructor. Currently defaults to 'www-data'.

dbpasswd($string)

The password to be passed to the DBI constructor. Currently defaults to an empty string.

STORED DATA

The data is stored in named fields, currently in a database, but there is nothing stopping you from subclassing the Data classes and storing it somewhere else. TABOO should work well, but if you want to make it less painful for yourself, you should use the same names or provide some kind of mapping between your names and the names in these Data classes. Note that any similarity between these names and the internal names of this class is purely coincidential (eh, not really).

Consult the documentation for each individual Data class for the names of the stored data.

BUGS/TODO

Hey, it is a pre-alpha!

FORMALITIES

See AxKit::App::TABOO.