wiki.techinc.nl/includes/parser/Preprocessor.php

307 lines
7.5 KiB
PHP
Raw Normal View History

<?php
/**
* Interfaces for preprocessors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup Parser
*/
/**
* @ingroup Parser
*/
interface Preprocessor {
2011-05-28 17:51:33 +00:00
/**
* Create a new preprocessor object based on an initialised Parser object
*
* @param Parser $parser
2011-05-28 17:51:33 +00:00
*/
function __construct( $parser );
2008-02-18 07:45:44 +00:00
/**
* Create a new top-level frame for expansion of a page
*
* @return PPFrame
*/
function newFrame();
2008-02-18 07:45:44 +00:00
/**
* Create a new custom frame for programmatic use of parameter replacement
* as used in some extensions.
*
* @param array $args
*
* @return PPFrame
*/
function newCustomFrame( $args );
2011-05-28 17:51:33 +00:00
/**
* Create a new custom node for programmatic use of parameter replacement
* as used in some extensions.
2011-05-28 17:51:33 +00:00
*
* @param array $values
2011-05-28 17:51:33 +00:00
*/
function newPartNodeArray( $values );
/**
* Preprocess text to a PPNode
*
* @param string $text
* @param int $flags
*
* @return PPNode
*/
function preprocessToObj( $text, $flags = 0 );
}
/**
* @ingroup Parser
*/
interface PPFrame {
const NO_ARGS = 1;
const NO_TEMPLATES = 2;
const STRIP_COMMENTS = 4;
const NO_IGNORE = 8;
const RECOVER_COMMENTS = 16;
const NO_TAGS = 32;
const RECOVER_ORIG = 59; // = 1|2|8|16|32 no constant expression support in PHP yet
/** This constant exists when $indexOffset is supported in newChild() */
const SUPPORTS_INDEX_OFFSET = 1;
/**
* Create a child frame
2011-05-28 17:18:50 +00:00
*
* @param array|bool $args
* @param bool|Title $title
* @param int $indexOffset A number subtracted from the index attributes of the arguments
2011-05-28 17:51:33 +00:00
*
2011-05-28 17:18:50 +00:00
* @return PPFrame
*/
function newChild( $args = false, $title = false, $indexOffset = 0 );
/**
* Expand a document tree node, caching the result on its parent with the given key
*/
function cachedExpand( $key, $root, $flags = 0 );
/**
* Expand a document tree node
*/
function expand( $root, $flags = 0 );
/**
* Implode with flags for expand()
*/
function implodeWithFlags( $sep, $flags /*, ... */ );
/**
* Implode with no flags specified
*/
function implode( $sep /*, ... */ );
/**
* Makes an object that, when expand()ed, will be the same as one obtained
* with implode()
*/
function virtualImplode( $sep /*, ... */ );
/**
* Virtual implode with brackets
*/
function virtualBracketedImplode( $start, $sep, $end /*, ... */ );
/**
* Returns true if there are no arguments in this frame
2011-05-28 17:51:33 +00:00
*
* @return bool
*/
function isEmpty();
2008-02-18 07:45:44 +00:00
/**
* Returns all arguments of this frame
*/
function getArguments();
/**
* Returns all numbered arguments of this frame
*/
function getNumberedArguments();
/**
* Returns all named arguments of this frame
*/
function getNamedArguments();
2008-02-18 07:45:44 +00:00
/**
* Get an argument to this frame by name
2008-02-18 07:45:44 +00:00
*/
function getArgument( $name );
/**
* Returns true if the infinite loop check is OK, false if a loop is detected
2011-05-28 17:51:33 +00:00
*
* @param Title $title
2011-05-28 17:51:33 +00:00
* @return bool
*/
function loopCheck( $title );
/**
* Return true if the frame is a template frame
*/
function isTemplate();
/**
* Set the "volatile" flag.
*
* Note that this is somewhat of a "hack" in order to make extensions
* with side effects (such as Cite) work with the PHP parser. New
* extensions should be written in a way that they do not need this
* function, because other parsers (such as Parsoid) are not guaranteed
* to respect it, and it may be removed in the future.
*
* @param bool $flag
*/
function setVolatile( $flag = true );
/**
* Get the "volatile" flag.
*
* Callers should avoid caching the result of an expansion if it has the
* volatile flag set.
*
* @see self::setVolatile()
* @return bool
*/
function isVolatile();
/**
* Get the TTL of the frame's output.
*
* This is the maximum amount of time, in seconds, that this frame's
* output should be cached for. A value of null indicates that no
* maximum has been specified.
*
* Note that this TTL only applies to caching frames as parts of pages.
* It is not relevant to caching the entire rendered output of a page.
*
* @return int|null
*/
function getTTL();
/**
* Set the TTL of the output of this frame and all of its ancestors.
* Has no effect if the new TTL is greater than the one already set.
* Note that it is the caller's responsibility to change the cache
* expiry of the page as a whole, if such behavior is desired.
*
* @see self::getTTL()
* @param int $ttl
*/
function setTTL( $ttl );
/**
* Get a title of frame
*
* @return Title
*/
function getTitle();
}
2008-02-18 07:45:44 +00:00
/**
* There are three types of nodes:
* * Tree nodes, which have a name and contain other nodes as children
* * Array nodes, which also contain other nodes but aren't considered part of a tree
* * Leaf nodes, which contain the actual data
*
* This interface provides access to the tree structure and to the contents of array nodes,
* but it does not provide access to the internal structure of leaf nodes. Access to leaf
2008-02-18 07:45:44 +00:00
* data is provided via two means:
* * PPFrame::expand(), which provides expanded text
* * The PPNode::split*() functions, which provide metadata about certain types of tree node
* @ingroup Parser
2008-02-18 07:45:44 +00:00
*/
interface PPNode {
/**
2008-02-18 07:45:44 +00:00
* Get an array-type node containing the children of this node.
* Returns false if this is not a tree node.
*/
function getChildren();
2008-02-18 07:45:44 +00:00
/**
* Get the first child of a tree node. False if there isn't one.
*
* @return PPNode
2008-02-18 07:45:44 +00:00
*/
function getFirstChild();
2008-02-18 07:45:44 +00:00
/**
* Get the next sibling of any node. False if there isn't one
*/
function getNextSibling();
2008-02-18 07:45:44 +00:00
/**
* Get all children of this tree node which have a given name.
* Returns an array-type node, or false if this is not a tree node.
*/
function getChildrenOfType( $type );
2008-02-18 07:45:44 +00:00
/**
* Returns the length of the array, or false if this is not an array-type node
*/
function getLength();
2008-02-18 07:45:44 +00:00
/**
* Returns an item of an array-type node
*/
function item( $i );
2008-02-18 07:45:44 +00:00
/**
2008-02-18 07:45:44 +00:00
* Get the name of this node. The following names are defined here:
*
* h A heading node.
* template A double-brace node.
* tplarg A triple-brace node.
* title The first argument to a template or tplarg node.
* part Subsequent arguments to a template or tplarg node.
* #nodelist An array-type node
*
* The subclass may define various other names for tree and leaf nodes.
*/
function getName();
2008-02-18 07:45:44 +00:00
/**
* Split a "<part>" node into an associative array containing:
2008-02-18 07:45:44 +00:00
* name PPNode name
* index String index
* value PPNode value
2008-02-18 07:45:44 +00:00
*/
function splitArg();
2008-02-18 07:45:44 +00:00
/**
* Split an "<ext>" node into an associative array containing name, attr, inner and close
2008-02-18 07:45:44 +00:00
* All values in the resulting array are PPNodes. Inner and close are optional.
*/
function splitExt();
2008-02-18 07:45:44 +00:00
/**
* Split an "<h>" node
2008-02-18 07:45:44 +00:00
*/
function splitHeading();
}