4 * Class representing a list of titles
5 * The execute() method checks them all for existence and adds them to a LinkCache object
11 * 2-d array, first index namespace, second index dbkey, value arbitrary
15 function __construct( $arr = array() ) {
16 foreach( $arr as $item ) {
17 $this->addObj( $item );
21 function addObj( $title ) {
22 if ( is_object( $title ) ) {
23 $this->add( $title->getNamespace(), $title->getDBkey() );
25 wfDebug( "Warning: LinkBatch::addObj got invalid title object\n" );
29 function add( $ns, $dbkey ) {
33 if ( !array_key_exists( $ns, $this->data
) ) {
34 $this->data
[$ns] = array();
37 $this->data
[$ns][$dbkey] = 1;
41 * Set the link list to a given 2-d array
42 * First key is the namespace, second is the DB key, value arbitrary
44 function setArray( $array ) {
49 * Returns true if no pages have been added, false otherwise.
52 return ($this->getSize() == 0);
56 * Returns the size of the batch.
59 return count( $this->data
);
63 * Do the query and add the results to the LinkCache object
64 * Return an array mapping PDBK to ID
67 $linkCache =& LinkCache
::singleton();
68 return $this->executeInto( $linkCache );
72 * Do the query and add the results to a given LinkCache object
73 * Return an array mapping PDBK to ID
75 function executeInto( &$cache ) {
76 $fname = 'LinkBatch::executeInto';
77 wfProfileIn( $fname );
79 $res = $this->doQuery();
81 wfProfileOut( $fname );
85 // For each returned entry, add it to the list of good links, and remove it from $remaining
88 $remaining = $this->data
;
89 while ( $row = $res->fetchObject() ) {
90 $title = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
91 $cache->addGoodLinkObj( $row->page_id
, $title );
92 $ids[$title->getPrefixedDBkey()] = $row->page_id
;
93 unset( $remaining[$row->page_namespace
][$row->page_title
] );
97 // The remaining links in $data are bad links, register them as such
98 foreach ( $remaining as $ns => $dbkeys ) {
99 foreach ( $dbkeys as $dbkey => $unused ) {
100 $title = Title
::makeTitle( $ns, $dbkey );
101 $cache->addBadLinkObj( $title );
102 $ids[$title->getPrefixedDBkey()] = 0;
105 wfProfileOut( $fname );
110 * Perform the existence test query, return a ResultWrapper with page_id fields
113 $fname = 'LinkBatch::doQuery';
115 if ( $this->isEmpty() ) {
118 wfProfileIn( $fname );
121 // This is very similar to Parser::replaceLinkHolders
122 $dbr = wfGetDB( DB_SLAVE
);
123 $page = $dbr->tableName( 'page' );
124 $set = $this->constructSet( 'page', $dbr );
125 if ( $set === false ) {
126 wfProfileOut( $fname );
129 $sql = "SELECT page_id, page_namespace, page_title FROM $page WHERE $set";
132 $res = new ResultWrapper( $dbr, $dbr->query( $sql, $fname ) );
133 wfProfileOut( $fname );
138 * Construct a WHERE clause which will match all the given titles.
139 * Give the appropriate table's field name prefix ('page', 'pl', etc).
141 * @param $prefix String: ??
145 function constructSet( $prefix, &$db ) {
149 foreach ( $this->data
as $ns => $dbkeys ) {
150 if ( !count( $dbkeys ) ) {
160 if (count($dbkeys)==1) { // avoid multiple-reference syntax if simple equality can be used
162 $sql .= "({$prefix}_namespace=$ns AND {$prefix}_title=".
163 $db->addQuotes(current(array_keys($dbkeys))).
166 $sql .= "({$prefix}_namespace=$ns AND {$prefix}_title IN (";
169 foreach( $dbkeys as $dbkey => $unused ) {
175 $sql .= $db->addQuotes( $dbkey );
180 if ( $first && $firstTitle ) {