Difference: TWikiStoreRcsFileDotPm (1 vs. 5)

Revision 52013-10-14 - TWikiContributor

Line: 12 to 12
 
On this page:
Added:
>
>

ObjectMethod getDiskInfo ($web,$site,$diskID) -> ($dataDir,$pubDir,$diskID)

ObjectMethod getDiskList () -> ('',1,...)

 

ClassMethod new ($session,$web,$topic,$attachment)

Constructor. There is one object per stored file.

Revision 42008-01-22 - TWikiContributor

Line: 1 to 1
 

Package TWiki::Store::RcsFile

This class is PACKAGE PRIVATE to Store, and should never be

Changed:
<
<
used from anywhere else. Base class of implementations of stores
>
>
used from anywhere else. It is the base class of implementations of stores
 that manipulate RCS format files.

The general contract of the methods on this class and its subclasses

Line: 20 to 20
 
Added:
>
>

ObjectMethod finish ()

Break circular references.

 

ObjectMethod getRevisionInfo ($version) -> ($rev,$date,$user,$comment)

  • $version if 0 or undef, or out of range (version number > number of revs) will return info about the latest revision.
Line: 43 to 48
 
Deleted:
<
<

ObjectMethod readMetaData ($name) -> $text

Get a meta-data block for this web

 

ObjectMethod getWorkArea ($key) -> $directorypath

Gets a private directory uniquely identified by $key. The directory is intended as a work area for plugins.

The standard is a directory named the same as "key" under

Changed:
<
<
$TWiki::cfg{RCS}{WorkAreaDir}

ObjectMethod saveMetaData ($web,$name) -> $text

Write a named meta-data string. If web is given the meta-data is stored alongside a web.

>
>
$TWiki::cfg{WorkingDir}/work_areas
 
Line: 103 to 95
 
Added:
>
>

ObjectMethod searchInWebMetaData ($query,\@topics) -> \%matches

Search for a meta-data expression in the content of a web. $query must be a TWiki::Query object.

Returns a reference to a hash that maps the names of topics that all matched to the result of the query expression (e.g. if the query expression is 'TOPICPARENT.name' then you will get back a hash that maps topic names to their parent.

SMELL: this is really inefficient!

 

ObjectMethod moveWeb ($newWeb)

Move a web.

Line: 130 to 135
 
Changed:
<
<

ObjectMethod restoreLatestRevision ($wikiname)

>
>

ObjectMethod restoreLatestRevision ($user)

  Restore the plaintext file from the revision at the head.
Line: 323 to 328
 
Deleted:
<
<
sub _constructAttributesForAutoAttached as long as stat is defined, return an emulated set of attributes for that attachment.
 

ObjectMethod getAttachmentList ($web,$topic)

returns {} of filename => { key => value, key2 => value } for any given web, topic

Line: 339 to 340
 Generate string representation for debugging
Added:
>
>

ObjectMethod recordChange ($user,$rev,$more)

Record that the file changed

ObjectMethod eachChange ($since) -> $iterator

Return iterator over changes - see Store for details

Revision 32007-01-16 - TWikiContributor

Line: 191 to 206
 
Added:
>
>

ObjectMethod removeSpuriousLeases ($web)

Remove leases that are not related to a topic. These can get left behind in some store implementations when a topic is created, but never saved.

 

ObjectMethod getStream () -> \*STREAM

Return a text stream that will supply the text stored in the topic.

Revision 22006-06-25 - TWikiContributor

Line: 121 to 121
 
Changed:
<
<

ObjectMethod restoreLatestRevision ()

>
>

ObjectMethod restoreLatestRevision ($wikiname)

  Restore the plaintext file from the revision at the head.
Line: 304 to 308
 returns {} of filename => { key => value, key2 => value } for any given web, topic Ignores files starting with _ or ending with ,v
Added:
>
>

ObjectMethod stringify ()

Generate string representation for debugging

Revision 12006-02-01 - TWikiContributor

Line: 1 to 1
Added:
>
>

Package TWiki::Store::RcsFile

This class is PACKAGE PRIVATE to Store, and should never be used from anywhere else. Base class of implementations of stores that manipulate RCS format files.

The general contract of the methods on this class and its subclasses calls for errors to be signalled by Error::Simple exceptions.

Refer to Store.pm for models of usage.

On this page:

ClassMethod new ($session,$web,$topic,$attachment)

Constructor. There is one object per stored file.

Note that $web, $topic and $attachment must be untainted!

ObjectMethod getRevisionInfo ($version) -> ($rev,$date,$user,$comment)

  • $version if 0 or undef, or out of range (version number > number of revs) will return info about the latest revision.

Returns (rev, date, user, comment) where rev is the number of the rev for which the info was recovered, date is the date of that rev (epoch s), user is the login name of the user who saved that rev, and comment is the comment associated with the rev.

Designed to be overridden by subclasses, which can call up to this method if file-based rev info is required.

ObjectMethod getLatestRevision () -> $text

Get the text of the most recent revision

ObjectMethod getLatestRevisionTime () -> $text

Get the time of the most recent revision

ObjectMethod readMetaData ($name) -> $text

Get a meta-data block for this web

ObjectMethod getWorkArea ($key) -> $directorypath

Gets a private directory uniquely identified by $key. The directory is intended as a work area for plugins.

The standard is a directory named the same as "key" under $TWiki::cfg{RCS}{WorkAreaDir}

ObjectMethod saveMetaData ($web,$name) -> $text

Write a named meta-data string. If web is given the meta-data is stored alongside a web.

ObjectMethod getTopicNames () -> @topics

Get list of all topics in a web

  • $web - Web name, required, e.g. 'Sandbox'
Return a topic list, e.g. ( 'WebChanges',  'WebHome', 'WebIndex', 'WebNotify' )

ObjectMethod getWebNames () -> @webs

Gets a list of names of subwebs in the current web

ObjectMethod searchInWebContent ($searchString,$web,\@topics,\%options) -> \%map

Search for a string in the content of a web. The search must be over all content and all formatted meta-data, though the latter search type is deprecated (use searchMetaData instead).

  • $searchString - the search string, in egrep format if regex
  • $web - The web to search in
  • \@topics - reference to a list of topics to search
  • \%options - reference to an options hash
The \%options hash may contain the following options:
  • type - if regex will perform a egrep-syntax RE search (default '')
  • casesensitive - false to ignore case (defaulkt true)
  • files_without_match - true to return files only (default false)

The return value is a reference to a hash which maps each matching topic name to a list of the lines in that topic that matched the search, as would be returned by 'grep'. If files_without_match is specified, it will return on the first match in each topic (i.e. it will return only one match per topic, and will not return matching lines).

ObjectMethod moveWeb ($newWeb)

Move a web.

ObjectMethod getRevision ($version) -> $text

Get the text for a given revision. The version number must be an integer.

Virtual method - must be implemented by subclasses

ObjectMethod storedDataExists () -> $boolean

Establishes if there is stored data associated with this handler.

ObjectMethod getTimestamp () -> $integer

Get the timestamp of the file Returns 0 if no file, otherwise epoch seconds

ObjectMethod restoreLatestRevision ()

Restore the plaintext file from the revision at the head.

ObjectMethod removeWeb ($web)

  • $web - web being removed

Destroy a web, utterly. Removed the data and attachments in the web.

Use with great care! No backup is taken!

ObjectMethod moveTopic ($newWeb,$newTopic)

Move/rename a topic.

ObjectMethod copyTopic ($newWeb,$newTopic)

Copy a topic.

ObjectMethod moveAttachment ($newWeb,$newTopic,$newAttachment)

Move an attachment from one topic to another. The name is retained.

ObjectMethod copyAttachment ($newWeb,$newTopic)

Copy an attachment from one topic to another. The name is retained.

ObjectMethod isAsciiDefault () -> $boolean

Check if this file type is known to be an ascii type file.

ObjectMethod setLock ($lock,$user)

Set a lock on the topic, if $lock, otherwise clear it. $user is a wikiname.

SMELL: there is a tremendous amount of potential for race conditions using this locking approach.

ObjectMethod isLocked () -> ($user,$time)

See if a twiki lock exists. Return the lock user and lock time if it does.

ObjectMethod setLease ($lease)

  • $lease reference to lease hash, or undef if the existing lease is to be cleared.

Set an lease on the topic.

ObjectMethod getLease () -> $lease

Get the current lease on the topic.

ObjectMethod getStream () -> \*STREAM

Return a text stream that will supply the text stored in the topic.

ObjectMethod numRevisions () -> $integer

Must be provided by subclasses.

Find out how many revisions there are. If there is a problem, such as a nonexistent file, returns 0.

Virtual method - must be implemented by subclasses

ObjectMethod initBinary ()

Initialise a binary file.

Must be provided by subclasses.

Virtual method - must be implemented by subclasses

ObjectMethod initText ()

Initialise a text file.

Must be provided by subclasses.

Virtual method - must be implemented by subclasses

ObjectMethod addRevisionFromText ($text,$comment,$user,$date)

Add new revision. Replace file with text.

  • $text of new revision
  • $comment checkin comment
  • $user is a wikiname.
  • $date in epoch seconds; may be ignored

Virtual method - must be implemented by subclasses

ObjectMethod addRevisionFromStream ($fh,$comment,$user,$date)

Add new revision. Replace file with contents of stream.

  • $fh filehandle for contents of new revision
  • $comment checkin comment
  • $user is a wikiname.
  • $date in epoch seconds; may be ignored

Virtual method - must be implemented by subclasses

ObjectMethod replaceRevision ($text,$comment,$user,$date)

Replace the top revision.
  • $text is the new revision
  • $date is in epoch seconds.
  • $user is a wikiname.
  • $comment is a string

Virtual method - must be implemented by subclasses

ObjectMethod deleteRevision ()

Delete the last revision - do nothing if there is only one revision

Virtual method - must be implemented by subclasses

ObjectMethod revisionDiff ($rev1,$rev2,$contextLines) -> \@diffArray

rev2 newer than rev1. Return reference to an array of [ diffType, $right, $left ]

Virtual method - must be implemented by subclasses

!!!getRevision!!!

ObjectMethod getRevisionAtTime ($time) -> $rev

Get a single-digit version number for the rev that was alive at the given epoch-secs time, or undef it none could be found.

Virtual method - must be implemented by subclasses

ObjectMethod getAttachmentAttributes ($web,$topic,$attachment)

returns [stat] for any given web, topic, $attachment SMELL - should this return a hash of arbitrary attributes so that SMELL + attributes supported by the underlying filesystem are supported SMELL + (eg: windows directories supporting photo "author", "dimension" fields)

sub _constructAttributesForAutoAttached as long as stat is defined, return an emulated set of attributes for that attachment.

ObjectMethod getAttachmentList ($web,$topic)

returns {} of filename => { key => value, key2 => value } for any given web, topic Ignores files starting with _ or ending with ,v

 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 1999-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback
Note: Please contribute updates to this topic on TWiki.org at TWiki:TWiki.TWikiStoreRcsFileDotPm.