Line: 1 to 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Added: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | DBCacheContrib<-- Contributions to this contrib are appreciated. Please update the contrib page at http://twiki.org/cgi-bin/view/Plugins/DBCacheContrib Page contents
Summary of Contents
This module supports structured queries over a database built on the fly from the forms in TWiki topics. It does not support any tags, as it is provided as a service for other plugins that want to treat a TWiki web as a simple database; for example, the TWiki:Plugins/FormQueryPlugin The plugin encapsulates code that was formerly in the "engine room" of the FormQueryPlugin. It has been abstracted out in the belief that it will be useful to anyone who wants to do simple search operations from a plugin.
Features
How the database gets builtYou can think of the database as an array of all the topics in a web. Each array entry is a map (or hash in perl terms) that maps a set of field names to values. Each topic in the web automatically gets a number of standard fields, generated by reading the metadata from the topic (see TWikiMetaData)
The sub-Maps created for Other fields may be added by subclasses. Refer to the documentation for the plugin that is using the DBCache for more details.
The cache
To achieve best perfomance the plugin caches the database read from the TWiki topics. The cache is stored in the work area for the DBCacheContrib (see
Extending or customisingExtension or customisation is welcome, as long as all extensions are described and code provided back to the author.
The module is shipped with a perl build file, which should be used for installation and testing. Testing is done using CPAN:Test::Unit
Detailed Documentation
Clients use the DBCache by defining a subclass of the
class DBCacheContribGeneral purpose cache that treats TWiki topics as hashes. Useful for rapid read and search of the database. Only works on one web. Typical usage: use TWiki::Contrib::DBCacheContrib; $db = new TWiki::Contrib::DBCacheContrib( $web ); # always done $db->load(); # may be always done, or only on demand when a tag is parsed that needs it # the DB is a hash of topics keyed on their name foreach my $topic ($db->getKeys()) { my $attachments = $db->get($topic)->get("attachments"); # attachments is an array foreach my $val ($attachments->getValues()) { my $aname = $attachments->get("name"); my $acomment = $attachments->get("comment"); my $adate = $attachments->get("date"); ... } }As topics are loaded, the readTopicLine method gives subclasses an opportunity to apply special processing to indivual lines, for example to extract special syntax such as %ACTION lines, or embedded tables in the text. See FormQueryPlugin for an example of this.
|
Operator | Result | Meaning |
---|---|---|
= |
Boolean | LHS exactly matches the regular expression on the RHS. The expression must match the whole string. |
!= |
Boolean | Inverse of = |
=~ |
Boolean | LHS contains RHS i.e. the RHS is found somewhere in the field value. |
< |
Boolean | Numeric < |
> |
Boolean | Numeric > |
>= |
Boolean | Numeric >= |
<= |
Boolean | Numeric <= |
lc |
String | Unary lower case |
uc |
String | Unary UPPER CASE |
EARLIER_THAN |
BOOLEAN | Date is earlier than the given date |
LATER_THAN |
Boolean | LHS is later than the given date (string containing a date e.g. '1 Apr 2003') |
WITHIN_DAYS |
Boolean | Date (which must be in the future) is within n working days of todays date |
! |
Boolean | Unary NOT |
AND |
Boolean | AND |
OR |
Boolean | OR |
() |
any | Bracketed subexpression |
Dates for EARLIER_THAN
, LATER_THAN
and WITHIN_DAYS
must be dates in the format expected by Time::ParseDate
(like the ActionTrackerPlugin). WITHIN_DAYS
works out the number of working days (i.e. excluding Saturday and Sunday). Apologies in advance if your weekend is offset ± a day! Integers will automatically be converted to dates, by assuming they represent a number of seconds since midnight GMT on 1st January 1970.
$db = new TWiki::Contrib::DBCacheContrib::DBCache( $web ); # always done $db->load(); my $search = new TWiki::Contrib::DBCacheContrib::Search("date EARLIER_THAN '1st January 2000'"); foreach my $topic ($db->getKeys()) { my $attachments = $topic->get("attachments"); foreach my $val ($attachments->getValues()) { if ($search->matches($val)) { print $val->get("name") . "\n"; } } }
A search object implements the "matches" method as its general contract with the rest of the world.
new($string)
$string
- string containing an expression to parse
toString()
-> string
--+++ =addOperator(%oper) Add an operator to the parser
%oper
is a hash, containing the following fields:
name
- operator string
prec
- operator precedence, positive non-zero integer. Larger number => higher precedence.
arity
- set to 1 if this operator is unary, 2 for binary. Arity 0 is legal, should you ever need it.
exec
- the handler to implement the new operator
Object that handles a file/time tuple for use in Storable and
TWiki::Contrib::DBCacheContrib::Archive
.
new($file)
$file
- filename
uptodate()
-> boolean
toString()
-> string
write()
read()
Generic array object. This is required because perl arrays are not objects, and cannot be subclassed e.g. for serialisation. To avoid lots of horrid code to handle special cases of the different perl data structures, we use this array object instead.
new()
add($object)
$object
any perl data type
find($object)
-> integer
remove($index)
$index
- integer index
get($key, $root)
-> datum $k
- key
get("9", $r)
where $n is a number will get the 9th entry in the array
get("[9]", $r)
will also get the 9th entry
get(".9", $r)
will also get the 9th entry
get(".X", $r)
will return the sum of the subfield X
of each entry
get("[?search]", $r)
will perform the given search over the entries in the array. Always returns an array result, even when there is only one result. For example: [?name='Sam']
will return an array of all the entries that have their subfield name
set to Sam
.
#
means "reset to root". So get("#[3]", $r)
will return the 4th entry of $r (assuming $r is an array!).
get("[*X]", $r)
will get a new array made from subfield X of each entry in this array.
Where the result of a subfield expansion is another object (a Map or an Array) then further subfield expansions can be used. For example,
get("parent.UserTable[?SubTopic='ThisTopic'].UserName", $web);
See also TWiki::Contrib::DBCacheContrib::Map
for syntax that applies to maps.
size()
-> integer
sum($field)
-> number $field
- name of a field in the class of objects stored by this array
search($search)
-> search result $search
- TWiki::Contrib::DBCacheContrib::Search object to use in the search
TWiki::Contrib::DBCacheContrib::Array
of matching entries.
getValues()
-> perl array
Get a "perl" array of the values in the array, suitable for use with foreach
toString($limit, $level, $strung)
-> string $limit
- recursion limit for expansion of elements
$level
- currentl recursion level
$archive
- the TWiki::Contrib::DBCacheContrib::Archive being written to
$archive
- the TWiki::Contrib::DBCacheContrib::Archive being read from
name = \w+ | \w+ "." name
The . indicates a field reference in a sub-map.
Objects in the map are either strings, or other objects that must
support toString.
new($string)
fastget($k)
-> datum $k
- key
get($k, $root)
-> datum $k
- key
$root
what # refers to
$k
; return undef if not set.
Subfield syntax
get("X",$r)
will get the subfield named X
.
get("X.Y",$r)
will get the subfield Y
of the subfield named X
.
get("[X]",$r) = will get the subfield named =X
(so X[Y] and X.Y are synonymous)..
#
means "reset to root". So get("#.Y", $r) will return the subfield =Y
of $r (assuming $r is a map!), as will get("#[Y]"
.
Where the result of a subfield expansion is another object (a Map or an Array) then further subfield expansions can be used. For example,
get("UserTable[0].Surname", $web);
See also TWiki::Contrib::DBCacheContrib::Array
for syntax that applies to arrays.
set($k, $v)
$k
- key
$v
- value
size()
-> integer
remove($index)
-> old value $index
- integer index
getKeys()
-> perl array
Get a "perl" array of the keys in the map, suitable for use with foreach
getValues()
-> perl array
Get a "perl" array of the values in the Map, suitable for use with foreach
search($search)
-> search result $search
- TWiki::Contrib::DBCacheContrib::Search object to use in the search
TWiki::Contrib::DBCacheContrib::Array
of matching keys.
toString($limit, $level, $strung)
-> string $limit
- recursion limit for expansion of elements
$level
- currentl recursion level
$archive
- the TWiki::Contrib::DBCacheContrib::Archive being written to
$archive
- the TWiki::Contrib::DBCacheContrib::Archive being read from
<--
If $TWiki::cfg{DBCache}{AlwaysUpdateCache} is set to FALSE (defaults to TRUE for compatibility) then DBCacheContrib will avoid calling _updateCache
unless requested. _updateCache
accesses every topic file in the web, so its an unnecessary performance hit. DBCacePlugin now only requests _updateCache
from the afterSaveHandler and from the new REST updateCache handler.
You do not need to install anything in the browser to use this extension. The following instructions are for the administrator who installs the extension on the server where TWiki is running.
Like many other TWiki extensions, this module is shipped with a fully automatic installer script written using the BuildContrib.
configure
interface (Go to Plugins->Find More Extensions) .zip
or .tgz
archives
perl <module>_installer
)
configure
and enable the module, if it is a plugin.
,v
files in your existing install (take care not to lock the files when you check in)
Author: | TWiki:Main.CrawfordCurrie![]() |
|||||||||
Copyright: | This code is based on an original development of Motorola Inc. and is protected by the following copyrights: © 2002-2003 Motorola Inc. All Rights Reserved. Portions copyright © 2004. Crawford Currie http://www.c-dot.co.uk ![]() © 2004-2011, TWiki:TWiki.TWikiContributor ![]() |
|||||||||
License: | As required for the publication of all extensions to TWiki, this software is published under the terms of the GNU General Public License![]() |
|||||||||
Version: | 21578 (2011-07-07) | |||||||||
Change History: | <-- versions below in reverse order --> |
|||||||||
2011-07-07: | TWikibug:Item6711![]() |
|||||||||
2010-04-29: | TWikibug:Item6433![]() |
|||||||||
16347 | remove META data from text hash; include META data in all hash. TWiki:Main/MichaelDaum![]() |
|||||||||
16346 | caching all topic elements to an all field to allow th search in all of the text and the formfields like the normal grep-based SEARCH does. TWiki:Main/MichaelDaum![]() |
|||||||||
15868 | fixed WITHIN_DAYS and EARLIER_THAN. TWiki:Main/MichaelDaum![]() |
|||||||||
15583 | made query parser pluggable so that other plugins can implement their own predicates. TWiki:Main/MichaelDaum![]() |
|||||||||
15019 | added {DBCache}{AlwaysUpdateCache} to remove the updateCache from every operation. TWiki:Main/SvenDowideit![]() |
|||||||||
13562 | Bugs:Item3985 - fixed failures with hierarchical webs | |||||||||
13527 | Moved the cache into the extensions work areas, instead of the web directory | |||||||||
12943 | Bugs:Item3659: added automatic conversion of integers to dates | |||||||||
12923 | added REF operator; added link to web object to hashes; fixed parent relation to end in WebHome; added "web" property to topic hashes; caching META:PREFERENCES now | |||||||||
11537 | Added lc and uc operators for case-insensitive searches | |||||||||
9303 | TWikibug:Item1844![]() |
|||||||||
8682 | TWikibug:Item1580![]() |
|||||||||
8110 | TWikibug:Item663![]() |
|||||||||
7552 | TWikibug:Item997![]() |
|||||||||
7274 | TWikibug:Item719![]() |
|||||||||
7262 | TWikibug:Item719![]() |
|||||||||
7260 | TWikibug:Item727![]() |
|||||||||
6353 | TWikibug:Item380![]() |
|||||||||
5720 | Updated tests | |||||||||
5719 | Fix for correct handling of parent relations | |||||||||
5229 | Small improvement to the way it handles errors from Storable and Archive | |||||||||
5223 | Documentation fixes, adding gifs. | |||||||||
5048 | Cairo readiness | |||||||||
5036 | Split from SharedCode | |||||||||
5031 | Moving to new name | |||||||||
5030 | About to rename | |||||||||
5019 | Improved topic data model, cleaned up tests | |||||||||
5008 | Added extended access syntax, [?], [*] etc. | |||||||||
5006 | Doc fixes | |||||||||
5005 | Poddified documentation | |||||||||
5003 | Initial version | |||||||||
8 Jul 2004 | Initial version, split out from FormQueryPlugin | |||||||||
Dependencies: |
|
|||||||||
Perl Version: | 5.0 | |||||||||
Plugin Home: | http://TWiki.org/cgi-bin/view/Plugins/DBCacheContrib![]() |
|||||||||
Feedback: | http://TWiki.org/cgi-bin/view/Plugins/DBCacheContribDev![]() |
|||||||||
Appraisal: | http://TWiki.org/cgi-bin/view/Plugins/DBCacheContribAppraisal![]() |
Related Topics: DBCachePlugin, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences