Package TWiki::Meta
Meta-data handling.
A meta-data object is a hash of different types of meta-data (keyed on
the type, such as 'FIELD' and 'TOPICINFO').
Each entry in the hash is an array, where each entry in the array
contains another hash of the key=value pairs, corresponding to a
single meta-datum.
If there may be multiple entries of the same top-level type (i.e. for FIELD
and FILEATTACHMENT) then the array hash multiple entries. These types
are referred to as "keyed" types. The array entries are keyed with the
attribute 'name' which must be in each entry in the array.
For unkeyed types, the array has only one entry.
The module knows nothing about how meta-data is stored. That is entirely the
responsibility of the Store module.
Meta-data objects are created by the Store engine when topics are read. They
are populated using the put
method.
On this page:
- ClassMethod new ($session,$web,$topic)
- ClassMethod web ()
- ClassMethod topic ()
- ObjectMethod put ($type,\%args)
- ObjectMethod putKeyed ($type,\%args)
- ObjectMethod putAll
- ObjectMethod get ($type,$key) -> \%hash
- ObjectMethod find ($type) -> @values
- StaticMethod indexByKey
- ObjectMethod remove ($type,$key)
- ObjectMethod copyFrom ($otherMeta,$type,$nameFilter)
- ObjectMethod count ($type) -> $integer
- ObjectMethod addTOPICINFO ($rev,$time,$user)
- ObjectMethod getRevisionInfo ($fromrev) -> ($date,$author,$rev,$comment)
- ObjectMethod merge ($otherMeta,$formDef)
- ObjectMethod stringify ($types) -> $string
- ObjectMethod forEachSelectedValue ($types,$keys,\&fn,\%options)
- ObjectMethod getParent () -> $parent
- ObjectMethod getFormName () -> $formname
ClassMethod new ($session,$web,$topic)
Construct a new, empty Meta collection.ClassMethod web ()
Get the web nameClassMethod topic ()
Get the topic nameObjectMethod put ($type,\%args)
Put a hash of key=value pairs into the given type set in this meta. See the main comment for this package to understand how meta-data is represented.ObjectMethod putKeyed ($type,\%args)
Put a hash of key=value pairs into the given type set in this meta. The entries are keyed by 'name'. See the main comment for this package to understand how meta-data is represented.ObjectMethod putAll
Replaces all the items of a given key with a new array This is the logical inverse of the find methodObjectMethod get ($type,$key) -> \%hash
Find the value of a meta-datum in the map. If the type is keyed, the $key parameter is required to say which entry you want. Otherwise it can be undef. WARNING SMELL If key is undef but the type is keyed you get the FIRST entry If you want all the keys of a given type use the 'find' method. The result is a reference to the hash for the item. ObjectMethod find ($type) -> @values
Get all meta data for a specific type
Returns the array stored for the type. This will be zero length
if there are no entries.
StaticMethod indexByKey
See tests/unit/MetaTests.pm for an example The result is a hash the same as the array provided by find but keyed by the keyName. NB. results are indeterminate if the key you choose is not unique in the find. Flattens a keyed hash structure, taking only the values. Returns a hash. See tests/unit/MetaTests.pm for an exampleObjectMethod remove ($type,$key)
With no type, will remove all the contents of the object. With a $type but no $key, will remove all items of that type (so for example if $type were FILEATTACHMENT it would remove all of them) With a $type and a $key it will remove only the specific item.ObjectMethod copyFrom ($otherMeta,$type,$nameFilter)
Copy all entries of a type from another meta data set. This will destroy the old values for that type, unless the copied object doesn't contain entries for that type, in which case it will retain the old values. If $type is undef, will copy ALL TYPES. If $nameFilter is defined (an RE), it will copy only data where {name} matches $nameFilter. SMELL: That spec absolutely STINKS !! SMELL: this is a shallow copyObjectMethod count ($type) -> $integer
Return the number of entries of the given type that are in this meta setObjectMethod addTOPICINFO ($rev,$time,$user)
-
$rev
- the revision number -
$time
- the time stamp -
$user
- the user object
ObjectMethod getRevisionInfo ($fromrev) -> ($date,$author,$rev,$comment)
Try and get revision info from the meta information, or, if it is not present, kick down to the Store module for the same information. Returns ( $revDate, $author, $rev, $comment ) $rev is an integer revision number.ObjectMethod merge ($otherMeta,$formDef)
-
$otherMeta
- a block of meta-data to merge with $this -
$formDef
reference to a TWiki::Form that gives the types of the fields in $this
- File attachments that only appear in one set are preserved.
- Form fields that only appear in one set are preserved.
- Form field values that are different in each set are text-merged
- We don't merge for field attributes or title
- Topic info is not touched
- The
mergeable
method on the form def is used to determine if that fields is mergeable. if it isn't, the value currently in meta will not be changed.
ObjectMethod stringify ($types) -> $string
Return a string version of the meta object. Uses \n to separate lines. If $types is specified, return only types specified by that RE.ObjectMethod forEachSelectedValue ($types,$keys,\&fn,\%options)
Iterate over the values selected by the regular expressions in $types and $keys.-
$types
- regular expression matching the names of fields to be processed. Will default to qr/^[A-Z]+$/ if undef. -
$keys
- regular expression matching the names of keys to be processed. Will default to qr/^[a-z]+$/ if undef.
\&fn
on each, and replacing the value
with the result of \&fn.
\%options will be passed on to $fn, with the following additions: -
_type
=> the type name (e.g. "FILEATTACHMENT") -
_key
=> the key name (e.g. "user")