xref: /dokuwiki/inc/indexer.php (revision 952ab260ab7f87aa89066ccc658bfc94ba7f673a)
1<?php
2/**
3 * Functions to create the fulltext search index
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Andreas Gohr <andi@splitbrain.org>
7 * @author     Tom N Harris <tnharris@whoopdedo.org>
8 */
9
10if(!defined('DOKU_INC')) die('meh.');
11
12// Version tag used to force rebuild on upgrade
13define('INDEXER_VERSION', 4);
14
15// set the minimum token length to use in the index (note, this doesn't apply to numeric tokens)
16if (!defined('IDX_MINWORDLENGTH')) define('IDX_MINWORDLENGTH',2);
17
18// Asian characters are handled as words. The following regexp defines the
19// Unicode-Ranges for Asian characters
20// Ranges taken from http://en.wikipedia.org/wiki/Unicode_block
21// I'm no language expert. If you think some ranges are wrongly chosen or
22// a range is missing, please contact me
23define('IDX_ASIAN1','[\x{0E00}-\x{0E7F}]'); // Thai
24define('IDX_ASIAN2','['.
25                   '\x{2E80}-\x{3040}'.  // CJK -> Hangul
26                   '\x{309D}-\x{30A0}'.
27                   '\x{30FD}-\x{31EF}\x{3200}-\x{D7AF}'.
28                   '\x{F900}-\x{FAFF}'.  // CJK Compatibility Ideographs
29                   '\x{FE30}-\x{FE4F}'.  // CJK Compatibility Forms
30                   "\xF0\xA0\x80\x80-\xF0\xAA\x9B\x9F". // CJK Extension B
31                   "\xF0\xAA\x9C\x80-\xF0\xAB\x9C\xBF". // CJK Extension C
32                   "\xF0\xAB\x9D\x80-\xF0\xAB\xA0\x9F". // CJK Extension D
33                   "\xF0\xAF\xA0\x80-\xF0\xAF\xAB\xBF". // CJK Compatibility Supplement
34                   ']');
35define('IDX_ASIAN3','['.                // Hiragana/Katakana (can be two characters)
36                   '\x{3042}\x{3044}\x{3046}\x{3048}'.
37                   '\x{304A}-\x{3062}\x{3064}-\x{3082}'.
38                   '\x{3084}\x{3086}\x{3088}-\x{308D}'.
39                   '\x{308F}-\x{3094}'.
40                   '\x{30A2}\x{30A4}\x{30A6}\x{30A8}'.
41                   '\x{30AA}-\x{30C2}\x{30C4}-\x{30E2}'.
42                   '\x{30E4}\x{30E6}\x{30E8}-\x{30ED}'.
43                   '\x{30EF}-\x{30F4}\x{30F7}-\x{30FA}'.
44                   ']['.
45                   '\x{3041}\x{3043}\x{3045}\x{3047}\x{3049}'.
46                   '\x{3063}\x{3083}\x{3085}\x{3087}\x{308E}\x{3095}-\x{309C}'.
47                   '\x{30A1}\x{30A3}\x{30A5}\x{30A7}\x{30A9}'.
48                   '\x{30C3}\x{30E3}\x{30E5}\x{30E7}\x{30EE}\x{30F5}\x{30F6}\x{30FB}\x{30FC}'.
49                   '\x{31F0}-\x{31FF}'.
50                   ']?');
51define('IDX_ASIAN', '(?:'.IDX_ASIAN1.'|'.IDX_ASIAN2.'|'.IDX_ASIAN3.')');
52
53/**
54 * Version of the indexer taking into consideration the external tokenizer.
55 * The indexer is only compatible with data written by the same version.
56 *
57 * @triggers INDEXER_VERSION_GET
58 * Plugins that modify what gets indexed should hook this event and
59 * add their version info to the event data like so:
60 *     $data[$plugin_name] = $plugin_version;
61 *
62 * @author Tom N Harris <tnharris@whoopdedo.org>
63 * @author Michael Hamann <michael@content-space.de>
64 */
65function idx_get_version(){
66    static $indexer_version = null;
67    if ($indexer_version == null) {
68        global $conf;
69        $version = INDEXER_VERSION;
70
71        // DokuWiki version is included for the convenience of plugins
72        $data = array('dokuwiki'=>$version);
73        trigger_event('INDEXER_VERSION_GET', $data, null, false);
74        unset($data['dokuwiki']); // this needs to be first
75        ksort($data);
76        foreach ($data as $plugin=>$vers)
77            $version .= '+'.$plugin.'='.$vers;
78        $indexer_version = $version;
79    }
80    return $indexer_version;
81}
82
83/**
84 * Measure the length of a string.
85 * Differs from strlen in handling of asian characters.
86 *
87 * @author Tom N Harris <tnharris@whoopdedo.org>
88 */
89function wordlen($w){
90    $l = strlen($w);
91    // If left alone, all chinese "words" will get put into w3.idx
92    // So the "length" of a "word" is faked
93    if(preg_match_all('/[\xE2-\xEF]/',$w,$leadbytes)) {
94        foreach($leadbytes[0] as $b)
95            $l += ord($b) - 0xE1;
96    }
97    return $l;
98}
99
100/**
101 * Class that encapsulates operations on the indexer database.
102 *
103 * @author Tom N Harris <tnharris@whoopdedo.org>
104 */
105class Doku_Indexer {
106
107    /**
108     * Adds the contents of a page to the fulltext index
109     *
110     * The added text replaces previous words for the same page.
111     * An empty value erases the page.
112     *
113     * @param string    $page   a page name
114     * @param string    $text   the body of the page
115     * @return boolean          the function completed successfully
116     * @author Tom N Harris <tnharris@whoopdedo.org>
117     * @author Andreas Gohr <andi@splitbrain.org>
118     */
119    public function addPageWords($page, $text) {
120        if (!$this->lock())
121            return "locked";
122
123        // load known documents
124        $pid = $this->addIndexKey('page', '', $page);
125        if ($pid === false) {
126            $this->unlock();
127            return false;
128        }
129
130        $pagewords = array();
131        // get word usage in page
132        $words = $this->getPageWords($text);
133        if ($words === false) {
134            $this->unlock();
135            return false;
136        }
137
138        if (!empty($words)) {
139            foreach (array_keys($words) as $wlen) {
140                $index = $this->getIndex('i', $wlen);
141                foreach ($words[$wlen] as $wid => $freq) {
142                    $idx = ($wid<count($index)) ? $index[$wid] : '';
143                    $index[$wid] = $this->updateTuple($idx, $pid, $freq);
144                    $pagewords[] = "$wlen*$wid";
145                }
146                if (!$this->saveIndex('i', $wlen, $index)) {
147                    $this->unlock();
148                    return false;
149                }
150            }
151        }
152
153        // Remove obsolete index entries
154        $pageword_idx = $this->getIndexKey('pageword', '', $pid);
155        if ($pageword_idx !== '') {
156            $oldwords = explode(':',$pageword_idx);
157            $delwords = array_diff($oldwords, $pagewords);
158            $upwords = array();
159            foreach ($delwords as $word) {
160                if ($word != '') {
161                    list($wlen,$wid) = explode('*', $word);
162                    $wid = (int)$wid;
163                    $upwords[$wlen][] = $wid;
164                }
165            }
166            foreach ($upwords as $wlen => $widx) {
167                $index = $this->getIndex('i', $wlen);
168                foreach ($widx as $wid) {
169                    $index[$wid] = $this->updateTuple($index[$wid], $pid, 0);
170                }
171                $this->saveIndex('i', $wlen, $index);
172            }
173        }
174        // Save the reverse index
175        $pageword_idx = join(':', $pagewords);
176        if (!$this->saveIndexKey('pageword', '', $pid, $pageword_idx)) {
177            $this->unlock();
178            return false;
179        }
180
181        $this->unlock();
182        return true;
183    }
184
185    /**
186     * Split the words in a page and add them to the index.
187     *
188     * @param string    $text   content of the page
189     * @return array            list of word IDs and number of times used
190     * @author Andreas Gohr <andi@splitbrain.org>
191     * @author Christopher Smith <chris@jalakai.co.uk>
192     * @author Tom N Harris <tnharris@whoopdedo.org>
193     */
194    protected function getPageWords($text) {
195        global $conf;
196
197        $tokens = $this->tokenizer($text);
198        $tokens = array_count_values($tokens);  // count the frequency of each token
199
200        $words = array();
201        foreach ($tokens as $w=>$c) {
202            $l = wordlen($w);
203            if (isset($words[$l])){
204                $words[$l][$w] = $c + (isset($words[$l][$w]) ? $words[$l][$w] : 0);
205            }else{
206                $words[$l] = array($w => $c);
207            }
208        }
209
210        // arrive here with $words = array(wordlen => array(word => frequency))
211        $word_idx_modified = false;
212        $index = array();   //resulting index
213        foreach (array_keys($words) as $wlen) {
214            $word_idx = $this->getIndex('w', $wlen);
215            foreach ($words[$wlen] as $word => $freq) {
216                $wid = array_search($word, $word_idx);
217                if ($wid === false) {
218                    $wid = count($word_idx);
219                    $word_idx[] = $word;
220                    $word_idx_modified = true;
221                }
222                if (!isset($index[$wlen]))
223                    $index[$wlen] = array();
224                $index[$wlen][$wid] = $freq;
225            }
226            // save back the word index
227            if ($word_idx_modified && !$this->saveIndex('w', $wlen, $word_idx))
228                return false;
229        }
230
231        return $index;
232    }
233
234    /**
235     * Add/update keys to/of the metadata index.
236     *
237     * Adding new keys does not remove other keys for the page.
238     * An empty value will erase the key.
239     * The $key parameter can be an array to add multiple keys. $value will
240     * not be used if $key is an array.
241     *
242     * @param string    $page   a page name
243     * @param mixed     $key    a key string or array of key=>value pairs
244     * @param mixed     $value  the value or list of values
245     * @return boolean          the function completed successfully
246     * @author Tom N Harris <tnharris@whoopdedo.org>
247     * @author Michael Hamann <michael@content-space.de>
248     */
249    public function addMetaKeys($page, $key, $value=null) {
250        if (!is_array($key)) {
251            $key = array($key => $value);
252        } elseif (!is_null($value)) {
253            // $key is array, but $value is not null
254            trigger_error("array passed to addMetaKeys but value is not null", E_USER_WARNING);
255        }
256
257        if (!$this->lock())
258            return "locked";
259
260        // load known documents
261        $pid = $this->addIndexKey('page', '', $page);
262        if ($pid === false) {
263            $this->unlock();
264            return false;
265        }
266
267        // Special handling for titles so the index file is simpler
268        if (array_key_exists('title', $key)) {
269            $value = $key['title'];
270            if (is_array($value))
271                $value = $value[0];
272            $this->saveIndexKey('title', '', $pid, $value);
273            unset($key['title']);
274        }
275
276        foreach ($key as $name => $values) {
277            $metaname = idx_cleanName($name);
278            $this->addIndexKey('metadata', '', $metaname);
279            $metaidx = $this->getIndex($metaname.'_i', '');
280            $metawords = $this->getIndex($metaname.'_w', '');
281            $addwords = false;
282
283            if (!is_array($values)) $values = array($values);
284
285            $val_idx = $this->getIndexKey($metaname.'_p', '', $pid);
286            if ($val_idx != '') {
287                $val_idx = explode(':', $val_idx);
288                // -1 means remove, 0 keep, 1 add
289                $val_idx = array_combine($val_idx, array_fill(0, count($val_idx), -1));
290            } else {
291                $val_idx = array();
292            }
293
294
295            foreach ($values as $val) {
296                $val = (string)$val;
297                if ($val !== "") {
298                    $id = array_search($val, $metawords);
299                    if ($id === false) {
300                        $id = count($metawords);
301                        $metawords[$id] = $val;
302                        $addwords = true;
303                    }
304                    // test if value is already in the index
305                    if (isset($val_idx[$id]) && $val_idx[$id] <= 0)
306                        $val_idx[$id] = 0;
307                    else // else add it
308                        $val_idx[$id] = 1;
309                }
310            }
311
312            if ($addwords)
313                $this->saveIndex($metaname.'_w', '', $metawords);
314            $vals_changed = false;
315            foreach ($val_idx as $id => $action) {
316                if ($action == -1) {
317                    $metaidx[$id] = $this->updateTuple($metaidx[$id], $pid, 0);
318                    $vals_changed = true;
319                    unset($val_idx[$id]);
320                } elseif ($action == 1) {
321                    $metaidx[$id] = $this->updateTuple($metaidx[$id], $pid, 1);
322                    $vals_changed = true;
323                }
324            }
325
326            if ($vals_changed) {
327                $this->saveIndex($metaname.'_i', '', $metaidx);
328                $val_idx = implode(':', array_keys($val_idx));
329                $this->saveIndexKey($metaname.'_p', '', $pid, $val_idx);
330            }
331
332            unset($metaidx);
333            unset($metawords);
334        }
335
336        $this->unlock();
337        return true;
338    }
339
340    /**
341     * Remove a page from the index
342     *
343     * Erases entries in all known indexes.
344     *
345     * @param string    $page   a page name
346     * @return boolean          the function completed successfully
347     * @author Tom N Harris <tnharris@whoopdedo.org>
348     */
349    public function deletePage($page) {
350        if (!$this->lock())
351            return "locked";
352
353        // load known documents
354        $pid = $this->getIndexKey('page', '', $page);
355        if ($pid === false) {
356            $this->unlock();
357            return false;
358        }
359
360        // Remove obsolete index entries
361        $pageword_idx = $this->getIndexKey('pageword', '', $pid);
362        if ($pageword_idx !== '') {
363            $delwords = explode(':',$pageword_idx);
364            $upwords = array();
365            foreach ($delwords as $word) {
366                if ($word != '') {
367                    list($wlen,$wid) = explode('*', $word);
368                    $wid = (int)$wid;
369                    $upwords[$wlen][] = $wid;
370                }
371            }
372            foreach ($upwords as $wlen => $widx) {
373                $index = $this->getIndex('i', $wlen);
374                foreach ($widx as $wid) {
375                    $index[$wid] = $this->updateTuple($index[$wid], $pid, 0);
376                }
377                $this->saveIndex('i', $wlen, $index);
378            }
379        }
380        // Save the reverse index
381        if (!$this->saveIndexKey('pageword', '', $pid, "")) {
382            $this->unlock();
383            return false;
384        }
385
386        $this->saveIndexKey('title', '', $pid, "");
387        $keyidx = $this->getIndex('metadata', '');
388        foreach ($keyidx as $metaname) {
389            $val_idx = explode(':', $this->getIndexKey($metaname.'_p', '', $pid));
390            $meta_idx = $this->getIndex($metaname.'_i', '');
391            foreach ($val_idx as $id) {
392                $meta_idx[$id] = $this->updateTuple($meta_idx[$id], $pid, 0);
393            }
394            $this->saveIndex($metaname.'_i', '', $meta_idx);
395            $this->saveIndexKey($metaname.'_p', '', $pid, '');
396        }
397
398        $this->unlock();
399        return true;
400    }
401
402    /**
403     * Split the text into words for fulltext search
404     *
405     * TODO: does this also need &$stopwords ?
406     *
407     * @triggers INDEXER_TEXT_PREPARE
408     * This event allows plugins to modify the text before it gets tokenized.
409     * Plugins intercepting this event should also intercept INDEX_VERSION_GET
410     *
411     * @param string    $text   plain text
412     * @param boolean   $wc     are wildcards allowed?
413     * @return array            list of words in the text
414     * @author Tom N Harris <tnharris@whoopdedo.org>
415     * @author Andreas Gohr <andi@splitbrain.org>
416     */
417    public function tokenizer($text, $wc=false) {
418        global $conf;
419        $words = array();
420        $wc = ($wc) ? '' : '\*';
421        $stopwords =& idx_get_stopwords();
422
423        // prepare the text to be tokenized
424        $evt = new Doku_Event('INDEXER_TEXT_PREPARE', $text);
425        if ($evt->advise_before(true)) {
426            if (preg_match('/[^0-9A-Za-z ]/u', $text)) {
427                // handle asian chars as single words (may fail on older PHP version)
428                $asia = @preg_replace('/('.IDX_ASIAN.')/u', ' \1 ', $text);
429                if (!is_null($asia)) $text = $asia; // recover from regexp falure
430            }
431        }
432        $evt->advise_after();
433        unset($evt);
434
435        $text = strtr($text,
436                       array(
437                           "\r" => ' ',
438                           "\n" => ' ',
439                           "\t" => ' ',
440                           "\xC2\xAD" => '', //soft-hyphen
441                       )
442                     );
443        if (preg_match('/[^0-9A-Za-z ]/u', $text))
444            $text = utf8_stripspecials($text, ' ', '\._\-:'.$wc);
445
446        $wordlist = explode(' ', $text);
447        foreach ($wordlist as $i => &$word) {
448            $word = (preg_match('/[^0-9A-Za-z]/u', $word)) ?
449                utf8_strtolower($word) : strtolower($word);
450            if ((!is_numeric($word) && strlen($word) < IDX_MINWORDLENGTH)
451              || array_search($word, $stopwords) !== false)
452                unset($wordlist[$i]);
453        }
454        return array_values($wordlist);
455    }
456
457    /**
458     * Find pages in the fulltext index containing the words,
459     *
460     * The search words must be pre-tokenized, meaning only letters and
461     * numbers with an optional wildcard
462     *
463     * The returned array will have the original tokens as key. The values
464     * in the returned list is an array with the page names as keys and the
465     * number of times that token appears on the page as value.
466     *
467     * @param arrayref  $tokens list of words to search for
468     * @return array            list of page names with usage counts
469     * @author Tom N Harris <tnharris@whoopdedo.org>
470     * @author Andreas Gohr <andi@splitbrain.org>
471     */
472    public function lookup(&$tokens) {
473        $result = array();
474        $wids = $this->getIndexWords($tokens, $result);
475        if (empty($wids)) return array();
476        // load known words and documents
477        $page_idx = $this->getIndex('page', '');
478        $docs = array();
479        foreach (array_keys($wids) as $wlen) {
480            $wids[$wlen] = array_unique($wids[$wlen]);
481            $index = $this->getIndex('i', $wlen);
482            foreach($wids[$wlen] as $ixid) {
483                if ($ixid < count($index))
484                    $docs["$wlen*$ixid"] = $this->parseTuples($page_idx, $index[$ixid]);
485            }
486        }
487        // merge found pages into final result array
488        $final = array();
489        foreach ($result as $word => $res) {
490            $final[$word] = array();
491            foreach ($res as $wid) {
492                // handle the case when ($ixid < count($index)) has been false
493                // and thus $docs[$wid] hasn't been set.
494                if (!isset($docs[$wid])) continue;
495                $hits = &$docs[$wid];
496                foreach ($hits as $hitkey => $hitcnt) {
497                    // make sure the document still exists
498                    if (!page_exists($hitkey, '', false)) continue;
499                    if (!isset($final[$word][$hitkey]))
500                        $final[$word][$hitkey] = $hitcnt;
501                    else
502                        $final[$word][$hitkey] += $hitcnt;
503                }
504            }
505        }
506        return $final;
507    }
508
509    /**
510     * Find pages containing a metadata key.
511     *
512     * The metadata values are compared as case-sensitive strings. Pass a
513     * callback function that returns true or false to use a different
514     * comparison function. The function will be called with the $value being
515     * searched for as the first argument, and the word in the index as the
516     * second argument. The function preg_match can be used directly if the
517     * values are regexes.
518     *
519     * @param string    $key    name of the metadata key to look for
520     * @param string    $value  search term to look for, must be a string or array of strings
521     * @param callback  $func   comparison function
522     * @return array            lists with page names, keys are query values if $value is array
523     * @author Tom N Harris <tnharris@whoopdedo.org>
524     * @author Michael Hamann <michael@content-space.de>
525     */
526    public function lookupKey($key, &$value, $func=null) {
527        if (!is_array($value))
528            $value_array = array($value);
529        else
530            $value_array =& $value;
531
532        // the matching ids for the provided value(s)
533        $value_ids = array();
534
535        $metaname = idx_cleanName($key);
536
537        // get all words in order to search the matching ids
538        if ($key == 'title') {
539            $words = $this->getIndex('title', '');
540        } else {
541            $words = $this->getIndex($metaname.'_w', '');
542        }
543
544        if (!is_null($func)) {
545            foreach ($value_array as $val) {
546                foreach ($words as $i => $word) {
547                    if (call_user_func_array($func, array($val, $word)))
548                        $value_ids[$i][] = $val;
549                }
550            }
551        } else {
552            foreach ($value_array as $val) {
553                $xval = $val;
554                $caret = '^';
555                $dollar = '$';
556                // check for wildcards
557                if (substr($xval, 0, 1) == '*') {
558                    $xval = substr($xval, 1);
559                    $caret = '';
560                }
561                if (substr($xval, -1, 1) == '*') {
562                    $xval = substr($xval, 0, -1);
563                    $dollar = '';
564                }
565                if (!$caret || !$dollar) {
566                    $re = $caret.preg_quote($xval, '/').$dollar;
567                    foreach(array_keys(preg_grep('/'.$re.'/', $words)) as $i)
568                        $value_ids[$i][] = $val;
569                } else {
570                    if (($i = array_search($val, $words)) !== false)
571                        $value_ids[$i][] = $val;
572                }
573            }
574        }
575
576        unset($words); // free the used memory
577
578        // initialize the result so it won't be null
579        $result = array();
580        foreach ($value_array as $val) {
581            $result[$val] = array();
582        }
583
584        $page_idx = $this->getIndex('page', '');
585
586        // Special handling for titles
587        if ($key == 'title') {
588            foreach ($value_ids as $pid => $val_list) {
589                $page = $page_idx[$pid];
590                foreach ($val_list as $val) {
591                    $result[$val][] = $page;
592                }
593            }
594        } else {
595            // load all lines and pages so the used lines can be taken and matched with the pages
596            $lines = $this->getIndex($metaname.'_i', '');
597
598            foreach ($value_ids as $value_id => $val_list) {
599                // parse the tuples of the form page_id*1:page2_id*1 and so on, return value
600                // is an array with page_id => 1, page2_id => 1 etc. so take the keys only
601                $pages = array_keys($this->parseTuples($page_idx, $lines[$value_id]));
602                foreach ($val_list as $val) {
603                    $result[$val] = array_merge($result[$val], $pages);
604                }
605            }
606        }
607        if (!is_array($value)) $result = $result[$value];
608        return $result;
609    }
610
611    /**
612     * Find the index ID of each search term.
613     *
614     * The query terms should only contain valid characters, with a '*' at
615     * either the beginning or end of the word (or both).
616     * The $result parameter can be used to merge the index locations with
617     * the appropriate query term.
618     *
619     * @param arrayref  $words  The query terms.
620     * @param arrayref  $result Set to word => array("length*id" ...)
621     * @return array            Set to length => array(id ...)
622     * @author Tom N Harris <tnharris@whoopdedo.org>
623     */
624    protected function getIndexWords(&$words, &$result) {
625        $tokens = array();
626        $tokenlength = array();
627        $tokenwild = array();
628        foreach ($words as $word) {
629            $result[$word] = array();
630            $caret = '^';
631            $dollar = '$';
632            $xword = $word;
633            $wlen = wordlen($word);
634
635            // check for wildcards
636            if (substr($xword, 0, 1) == '*') {
637                $xword = substr($xword, 1);
638                $caret = '';
639                $wlen -= 1;
640            }
641            if (substr($xword, -1, 1) == '*') {
642                $xword = substr($xword, 0, -1);
643                $dollar = '';
644                $wlen -= 1;
645            }
646            if ($wlen < IDX_MINWORDLENGTH && $caret && $dollar && !is_numeric($xword))
647                continue;
648            if (!isset($tokens[$xword]))
649                $tokenlength[$wlen][] = $xword;
650            if (!$caret || !$dollar) {
651                $re = $caret.preg_quote($xword, '/').$dollar;
652                $tokens[$xword][] = array($word, '/'.$re.'/');
653                if (!isset($tokenwild[$xword]))
654                    $tokenwild[$xword] = $wlen;
655            } else {
656                $tokens[$xword][] = array($word, null);
657            }
658        }
659        asort($tokenwild);
660        // $tokens = array( base word => array( [ query term , regexp ] ... ) ... )
661        // $tokenlength = array( base word length => base word ... )
662        // $tokenwild = array( base word => base word length ... )
663        $length_filter = empty($tokenwild) ? $tokenlength : min(array_keys($tokenlength));
664        $indexes_known = $this->indexLengths($length_filter);
665        if (!empty($tokenwild)) sort($indexes_known);
666        // get word IDs
667        $wids = array();
668        foreach ($indexes_known as $ixlen) {
669            $word_idx = $this->getIndex('w', $ixlen);
670            // handle exact search
671            if (isset($tokenlength[$ixlen])) {
672                foreach ($tokenlength[$ixlen] as $xword) {
673                    $wid = array_search($xword, $word_idx);
674                    if ($wid !== false) {
675                        $wids[$ixlen][] = $wid;
676                        foreach ($tokens[$xword] as $w)
677                            $result[$w[0]][] = "$ixlen*$wid";
678                    }
679                }
680            }
681            // handle wildcard search
682            foreach ($tokenwild as $xword => $wlen) {
683                if ($wlen >= $ixlen) break;
684                foreach ($tokens[$xword] as $w) {
685                    if (is_null($w[1])) continue;
686                    foreach(array_keys(preg_grep($w[1], $word_idx)) as $wid) {
687                        $wids[$ixlen][] = $wid;
688                        $result[$w[0]][] = "$ixlen*$wid";
689                    }
690                }
691            }
692        }
693        return $wids;
694    }
695
696    /**
697     * Return a list of all pages
698     * Warning: pages may not exist!
699     *
700     * @param string    $key    list only pages containing the metadata key (optional)
701     * @return array            list of page names
702     * @author Tom N Harris <tnharris@whoopdedo.org>
703     */
704    public function getPages($key=null) {
705        $page_idx = $this->getIndex('page', '');
706        if (is_null($key)) return $page_idx;
707
708        $metaname = idx_cleanName($key);
709
710        // Special handling for titles
711        if ($key == 'title') {
712            $title_idx = $this->getIndex('title', '');
713            array_splice($page_idx, count($title_idx));
714            foreach ($title_idx as $i => $title)
715                if ($title === "") unset($page_idx[$i]);
716            return array_values($page_idx);
717        }
718
719        $pages = array();
720        $lines = $this->getIndex($metaname.'_i', '');
721        foreach ($lines as $line) {
722            $pages = array_merge($pages, $this->parseTuples($page_idx, $line));
723        }
724        return array_keys($pages);
725    }
726
727    /**
728     * Return a list of words sorted by number of times used
729     *
730     * @param int       $min    bottom frequency threshold
731     * @param int       $max    upper frequency limit. No limit if $max<$min
732     * @param int       $length minimum length of words to count
733     * @param string    $key    metadata key to list. Uses the fulltext index if not given
734     * @return array            list of words as the keys and frequency as values
735     * @author Tom N Harris <tnharris@whoopdedo.org>
736     */
737    public function histogram($min=1, $max=0, $minlen=3, $key=null) {
738        if ($min < 1)
739            $min = 1;
740        if ($max < $min)
741            $max = 0;
742
743        $result = array();
744
745        if ($key == 'title') {
746            $index = $this->getIndex('title', '');
747            $index = array_count_values($index);
748            foreach ($index as $val => $cnt) {
749                if ($cnt >= $min && (!$max || $cnt <= $max) && strlen($val) >= $minlen)
750                    $result[$val] = $cnt;
751            }
752        }
753        elseif (!is_null($key)) {
754            $metaname = idx_cleanName($key);
755            $index = $this->getIndex($metaname.'_i', '');
756            $val_idx = array();
757            foreach ($index as $wid => $line) {
758                $freq = $this->countTuples($line);
759                if ($freq >= $min && (!$max || $freq <= $max) && strlen($val) >= $minlen)
760                    $val_idx[$wid] = $freq;
761            }
762            if (!empty($val_idx)) {
763                $words = $this->getIndex($metaname.'_w', '');
764                foreach ($val_idx as $wid => $freq)
765                    $result[$words[$wid]] = $freq;
766            }
767        }
768        else {
769            $lengths = idx_listIndexLengths();
770            foreach ($lengths as $length) {
771                if ($length < $minlen) continue;
772                $index = $this->getIndex('i', $length);
773                $words = null;
774                foreach ($index as $wid => $line) {
775                    $freq = $this->countTuples($line);
776                    if ($freq >= $min && (!$max || $freq <= $max)) {
777                        if ($words === null)
778                            $words = $this->getIndex('w', $length);
779                        $result[$words[$wid]] = $freq;
780                    }
781                }
782            }
783        }
784
785        arsort($result);
786        return $result;
787    }
788
789    /**
790     * Lock the indexer.
791     *
792     * @author Tom N Harris <tnharris@whoopdedo.org>
793     */
794    protected function lock() {
795        global $conf;
796        $status = true;
797        $run = 0;
798        $lock = $conf['lockdir'].'/_indexer.lock';
799        while (!@mkdir($lock, $conf['dmode'])) {
800            usleep(50);
801            if(is_dir($lock) && time()-@filemtime($lock) > 60*5){
802                // looks like a stale lock - remove it
803                if (!@rmdir($lock)) {
804                    $status = "removing the stale lock failed";
805                    return false;
806                } else {
807                    $status = "stale lock removed";
808                }
809            }elseif($run++ == 1000){
810                // we waited 5 seconds for that lock
811                return false;
812            }
813        }
814        if ($conf['dperm'])
815            chmod($lock, $conf['dperm']);
816        return $status;
817    }
818
819    /**
820     * Release the indexer lock.
821     *
822     * @author Tom N Harris <tnharris@whoopdedo.org>
823     */
824    protected function unlock() {
825        global $conf;
826        @rmdir($conf['lockdir'].'/_indexer.lock');
827        return true;
828    }
829
830    /**
831     * Retrieve the entire index.
832     *
833     * The $suffix argument is for an index that is split into
834     * multiple parts. Different index files should use different
835     * base names.
836     *
837     * @param string    $idx    name of the index
838     * @param string    $suffix subpart identifier
839     * @return array            list of lines without CR or LF
840     * @author Tom N Harris <tnharris@whoopdedo.org>
841     */
842    protected function getIndex($idx, $suffix) {
843        global $conf;
844        $fn = $conf['indexdir'].'/'.$idx.$suffix.'.idx';
845        if (!@file_exists($fn)) return array();
846        return file($fn, FILE_IGNORE_NEW_LINES);
847    }
848
849    /**
850     * Replace the contents of the index with an array.
851     *
852     * @param string    $idx    name of the index
853     * @param string    $suffix subpart identifier
854     * @param arrayref  $linex  list of lines without LF
855     * @author Tom N Harris <tnharris@whoopdedo.org>
856     */
857    protected function saveIndex($idx, $suffix, &$lines) {
858        global $conf;
859        $fn = $conf['indexdir'].'/'.$idx.$suffix;
860        $fh = @fopen($fn.'.tmp', 'w');
861        if (!$fh) return false;
862        fwrite($fh, join("\n", $lines));
863        fclose($fh);
864        if (isset($conf['fperm']))
865            chmod($fn.'.tmp', $conf['fperm']);
866        io_rename($fn.'.tmp', $fn.'.idx');
867        if ($suffix !== '')
868            $this->cacheIndexDir($idx, $suffix, empty($lines));
869        return true;
870    }
871
872    /**
873     * Retrieve a line from the index.
874     *
875     * @param string    $idx    name of the index
876     * @param string    $suffix subpart identifier
877     * @param int       $id     the line number
878     * @return string           a line with trailing whitespace removed
879     * @author Tom N Harris <tnharris@whoopdedo.org>
880     */
881    protected function getIndexKey($idx, $suffix, $id) {
882        global $conf;
883        $fn = $conf['indexdir'].'/'.$idx.$suffix.'.idx';
884        if (!@file_exists($fn)) return '';
885        $fh = @fopen($fn, 'r');
886        if (!$fh) return '';
887        $ln = -1;
888        while (($line = fgets($fh)) !== false) {
889            if (++$ln == $id) break;
890        }
891        fclose($fh);
892        return rtrim((string)$line);
893    }
894
895    /**
896     * Write a line into the index.
897     *
898     * @param string    $idx    name of the index
899     * @param string    $suffix subpart identifier
900     * @param int       $id     the line number
901     * @param string    $line   line to write
902     * @author Tom N Harris <tnharris@whoopdedo.org>
903     */
904    protected function saveIndexKey($idx, $suffix, $id, $line) {
905        global $conf;
906        if (substr($line, -1) != "\n")
907            $line .= "\n";
908        $fn = $conf['indexdir'].'/'.$idx.$suffix;
909        $fh = @fopen($fn.'.tmp', 'w');
910        if (!fh) return false;
911        $ih = @fopen($fn.'.idx', 'r');
912        if ($ih) {
913            $ln = -1;
914            while (($curline = fgets($ih)) !== false) {
915                fwrite($fh, (++$ln == $id) ? $line : $curline);
916            }
917            if ($id > $ln) {
918                while ($id > ++$ln)
919                    fwrite($fh, "\n");
920                fwrite($fh, $line);
921            }
922            fclose($ih);
923        } else {
924            $ln = -1;
925            while ($id > ++$ln)
926                fwrite($fh, "\n");
927            fwrite($fh, $line);
928        }
929        fclose($fh);
930        if (isset($conf['fperm']))
931            chmod($fn.'.tmp', $conf['fperm']);
932        io_rename($fn.'.tmp', $fn.'.idx');
933        if ($suffix !== '')
934            $this->cacheIndexDir($idx, $suffix);
935        return true;
936    }
937
938    /**
939     * Retrieve or insert a value in the index.
940     *
941     * @param string    $idx    name of the index
942     * @param string    $suffix subpart identifier
943     * @param string    $value  line to find in the index
944     * @return int              line number of the value in the index
945     * @author Tom N Harris <tnharris@whoopdedo.org>
946     */
947    protected function addIndexKey($idx, $suffix, $value) {
948        $index = $this->getIndex($idx, $suffix);
949        $id = array_search($value, $index);
950        if ($id === false) {
951            $id = count($index);
952            $index[$id] = $value;
953            if (!$this->saveIndex($idx, $suffix, $index)) {
954                trigger_error("Failed to write $idx index", E_USER_ERROR);
955                return false;
956            }
957        }
958        return $id;
959    }
960
961    protected function cacheIndexDir($idx, $suffix, $delete=false) {
962        global $conf;
963        if ($idx == 'i')
964            $cachename = $conf['indexdir'].'/lengths';
965        else
966            $cachename = $conf['indexdir'].'/'.$idx.'lengths';
967        $lengths = @file($cachename.'.idx', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
968        if ($lengths === false) $lengths = array();
969        $old = array_search((string)$suffix, $lengths);
970        if (empty($lines)) {
971            if ($old === false) return;
972            unset($lengths[$old]);
973        } else {
974            if ($old !== false) return;
975            $lengths[] = $suffix;
976            sort($lengths);
977        }
978        $fh = @fopen($cachename.'.tmp', 'w');
979        if (!$fh) {
980            trigger_error("Failed to write index cache", E_USER_ERROR);
981            return;
982        }
983        @fwrite($fh, implode("\n", $lengths));
984        @fclose($fh);
985        if (isset($conf['fperm']))
986            chmod($cachename.'.tmp', $conf['fperm']);
987        io_rename($cachename.'.tmp', $cachename.'.idx');
988    }
989
990    /**
991     * Get the list of lengths indexed in the wiki.
992     *
993     * Read the index directory or a cache file and returns
994     * a sorted array of lengths of the words used in the wiki.
995     *
996     * @author YoBoY <yoboy.leguesh@gmail.com>
997     */
998    protected function listIndexLengths() {
999        global $conf;
1000        $cachename = $conf['indexdir'].'/lengths';
1001        clearstatcache();
1002        if (@file_exists($cachename.'.idx')) {
1003            $lengths = @file($cachename.'.idx', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
1004            if ($lengths !== false) {
1005                $idx = array();
1006                foreach ($lengths as $length)
1007                    $idx[] = (int)$length;
1008                return $idx;
1009            }
1010        }
1011
1012        $dir = @opendir($conf['indexdir']);
1013        if ($dir === false)
1014            return array();
1015        $lengths[] = array();
1016        while (($f = readdir($dir)) !== false) {
1017            if (substr($f, 0, 1) == 'i' && substr($f, -4) == '.idx') {
1018                $i = substr($f, 1, -4);
1019                if (is_numeric($i))
1020                    $lengths[] = (int)$i;
1021            }
1022        }
1023        closedir($dir);
1024        sort($lengths);
1025        // save this in a file
1026        $fh = @fopen($cachename.'.tmp', 'w');
1027        if (!$fh) {
1028            trigger_error("Failed to write index cache", E_USER_ERROR);
1029            return;
1030        }
1031        @fwrite($fh, implode("\n", $lengths));
1032        @fclose($fh);
1033        if (isset($conf['fperm']))
1034            chmod($cachename.'.tmp', $conf['fperm']);
1035        io_rename($cachename.'.tmp', $cachename.'.idx');
1036
1037        return $lengths;
1038    }
1039
1040    /**
1041     * Get the word lengths that have been indexed.
1042     *
1043     * Reads the index directory and returns an array of lengths
1044     * that there are indices for.
1045     *
1046     * @author YoBoY <yoboy.leguesh@gmail.com>
1047     */
1048    protected function indexLengths($filter) {
1049        global $conf;
1050        $idx = array();
1051        if (is_array($filter)) {
1052            // testing if index files exist only
1053            $path = $conf['indexdir']."/i";
1054            foreach ($filter as $key => $value) {
1055                if (@file_exists($path.$key.'.idx'))
1056                    $idx[] = $key;
1057            }
1058        } else {
1059            $lengths = idx_listIndexLengths();
1060            foreach ($lengths as $key => $length) {
1061                // keep all the values equal or superior
1062                if ((int)$length >= (int)$filter)
1063                    $idx[] = $length;
1064            }
1065        }
1066        return $idx;
1067    }
1068
1069    /**
1070     * Insert or replace a tuple in a line.
1071     *
1072     * @author Tom N Harris <tnharris@whoopdedo.org>
1073     */
1074    protected function updateTuple($line, $id, $count) {
1075        $newLine = $line;
1076        if ($newLine !== '')
1077            $newLine = preg_replace('/(^|:)'.preg_quote($id,'/').'\*\d*/', '', $newLine);
1078        $newLine = trim($newLine, ':');
1079        if ($count) {
1080            if (strlen($newLine) > 0)
1081                return "$id*$count:".$newLine;
1082            else
1083                return "$id*$count".$newLine;
1084        }
1085        return $newLine;
1086    }
1087
1088    /**
1089     * Split a line into an array of tuples.
1090     *
1091     * @author Tom N Harris <tnharris@whoopdedo.org>
1092     * @author Andreas Gohr <andi@splitbrain.org>
1093     */
1094    protected function parseTuples(&$keys, $line) {
1095        $result = array();
1096        if ($line == '') return $result;
1097        $parts = explode(':', $line);
1098        foreach ($parts as $tuple) {
1099            if ($tuple === '') continue;
1100            list($key, $cnt) = explode('*', $tuple);
1101            if (!$cnt) continue;
1102            $key = $keys[$key];
1103            if (!$key) continue;
1104            $result[$key] = $cnt;
1105        }
1106        return $result;
1107    }
1108
1109    /**
1110     * Sum the counts in a list of tuples.
1111     *
1112     * @author Tom N Harris <tnharris@whoopdedo.org>
1113     */
1114    protected function countTuples($line) {
1115        $freq = 0;
1116        $parts = explode(':', $line);
1117        foreach ($parts as $tuple) {
1118            if ($tuple === '') continue;
1119            list($pid, $cnt) = explode('*', $tuple);
1120            $freq += (int)$cnt;
1121        }
1122        return $freq;
1123    }
1124}
1125
1126/**
1127 * Create an instance of the indexer.
1128 *
1129 * @return object               a Doku_Indexer
1130 * @author Tom N Harris <tnharris@whoopdedo.org>
1131 */
1132function idx_get_indexer() {
1133    static $Indexer = null;
1134    if (is_null($Indexer)) {
1135        $Indexer = new Doku_Indexer();
1136    }
1137    return $Indexer;
1138}
1139
1140/**
1141 * Returns words that will be ignored.
1142 *
1143 * @return array                list of stop words
1144 * @author Tom N Harris <tnharris@whoopdedo.org>
1145 */
1146function & idx_get_stopwords() {
1147    static $stopwords = null;
1148    if (is_null($stopwords)) {
1149        global $conf;
1150        $swfile = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt';
1151        if(@file_exists($swfile)){
1152            $stopwords = file($swfile, FILE_IGNORE_NEW_LINES);
1153        }else{
1154            $stopwords = array();
1155        }
1156    }
1157    return $stopwords;
1158}
1159
1160/**
1161 * Adds/updates the search index for the given page
1162 *
1163 * Locking is handled internally.
1164 *
1165 * @param string        $page   name of the page to index
1166 * @param boolean       $verbose    print status messages
1167 * @return boolean              the function completed successfully
1168 * @author Tom N Harris <tnharris@whoopdedo.org>
1169 */
1170function idx_addPage($page, $verbose=false) {
1171    // check if indexing needed
1172    $idxtag = metaFN($page,'.indexed');
1173    if(@file_exists($idxtag)){
1174        if(trim(io_readFile($idxtag)) == idx_get_version()){
1175            $last = @filemtime($idxtag);
1176            if($last > @filemtime(wikiFN($page))){
1177                if ($verbose) print("Indexer: index for $page up to date".DOKU_LF);
1178                return false;
1179            }
1180        }
1181    }
1182
1183    if (!page_exists($page)) {
1184        if (!@file_exists($idxtag)) {
1185            if ($verbose) print("Indexer: $page does not exist, ignoring".DOKU_LF);
1186            return false;
1187        }
1188        $Indexer = idx_get_indexer();
1189        $result = $Indexer->deletePage($page);
1190        if ($result === "locked") {
1191            if ($verbose) print("Indexer: locked".DOKU_LF);
1192            return false;
1193        }
1194        @unlink($idxtag);
1195        return $result;
1196    }
1197    $indexenabled = p_get_metadata($page, 'internal index', true);
1198    if ($indexenabled === false) {
1199        $result = false;
1200        if (@file_exists($idxtag)) {
1201            $Indexer = idx_get_indexer();
1202            $result = $Indexer->deletePage($page);
1203            if ($result === "locked") {
1204                if ($verbose) print("Indexer: locked".DOKU_LF);
1205                return false;
1206            }
1207            @unlink($idxtag);
1208        }
1209        if ($verbose) print("Indexer: index disabled for $page".DOKU_LF);
1210        return $result;
1211    }
1212
1213    $body = '';
1214    $metadata = array();
1215    $metadata['title'] = p_get_metadata($page, 'title', true);
1216    if (($references = p_get_metadata($page, 'relation references', true)) !== null)
1217        $metadata['relation_references'] = array_keys($references);
1218    else
1219        $metadata['relation_references'] = array();
1220    $data = compact('page', 'body', 'metadata');
1221    $evt = new Doku_Event('INDEXER_PAGE_ADD', $data);
1222    if ($evt->advise_before()) $data['body'] = $data['body'] . " " . rawWiki($page);
1223    $evt->advise_after();
1224    unset($evt);
1225    extract($data);
1226
1227    $Indexer = idx_get_indexer();
1228    $result = $Indexer->addPageWords($page, $body);
1229    if ($result === "locked") {
1230        if ($verbose) print("Indexer: locked".DOKU_LF);
1231        return false;
1232    }
1233
1234    if ($result) {
1235        $result = $Indexer->addMetaKeys($page, $metadata);
1236        if ($result === "locked") {
1237            if ($verbose) print("Indexer: locked".DOKU_LF);
1238            return false;
1239        }
1240    }
1241
1242    if ($result)
1243        io_saveFile(metaFN($page,'.indexed'), idx_get_version());
1244    if ($verbose) {
1245        print("Indexer: finished".DOKU_LF);
1246        return true;
1247    }
1248    return $result;
1249}
1250
1251/**
1252 * Find tokens in the fulltext index
1253 *
1254 * Takes an array of words and will return a list of matching
1255 * pages for each one.
1256 *
1257 * Important: No ACL checking is done here! All results are
1258 *            returned, regardless of permissions
1259 *
1260 * @param arrayref      $words  list of words to search for
1261 * @return array                list of pages found, associated with the search terms
1262 */
1263function idx_lookup(&$words) {
1264    $Indexer = idx_get_indexer();
1265    return $Indexer->lookup($words);
1266}
1267
1268/**
1269 * Split a string into tokens
1270 *
1271 */
1272function idx_tokenizer($string, $wc=false) {
1273    $Indexer = idx_get_indexer();
1274    return $Indexer->tokenizer($string, $wc);
1275}
1276
1277/* For compatibility */
1278
1279/**
1280 * Read the list of words in an index (if it exists).
1281 *
1282 * @author Tom N Harris <tnharris@whoopdedo.org>
1283 */
1284function idx_getIndex($idx, $suffix) {
1285    global $conf;
1286    $fn = $conf['indexdir'].'/'.$idx.$suffix.'.idx';
1287    if (!@file_exists($fn)) return array();
1288    return file($fn);
1289}
1290
1291/**
1292 * Get the list of lengths indexed in the wiki.
1293 *
1294 * Read the index directory or a cache file and returns
1295 * a sorted array of lengths of the words used in the wiki.
1296 *
1297 * @author YoBoY <yoboy.leguesh@gmail.com>
1298 */
1299function idx_listIndexLengths() {
1300    global $conf;
1301    // testing what we have to do, create a cache file or not.
1302    if ($conf['readdircache'] == 0) {
1303        $docache = false;
1304    } else {
1305        clearstatcache();
1306        if (@file_exists($conf['indexdir'].'/lengths.idx')
1307        && (time() < @filemtime($conf['indexdir'].'/lengths.idx') + $conf['readdircache'])) {
1308            if (($lengths = @file($conf['indexdir'].'/lengths.idx', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES)) !== false) {
1309                $idx = array();
1310                foreach ($lengths as $length) {
1311                    $idx[] = (int)$length;
1312                }
1313                return $idx;
1314            }
1315        }
1316        $docache = true;
1317    }
1318
1319    if ($conf['readdircache'] == 0 || $docache) {
1320        $dir = @opendir($conf['indexdir']);
1321        if ($dir === false)
1322            return array();
1323        $idx[] = array();
1324        while (($f = readdir($dir)) !== false) {
1325            if (substr($f, 0, 1) == 'i' && substr($f, -4) == '.idx') {
1326                $i = substr($f, 1, -4);
1327                if (is_numeric($i))
1328                    $idx[] = (int)$i;
1329            }
1330        }
1331        closedir($dir);
1332        sort($idx);
1333        // save this in a file
1334        if ($docache) {
1335            $handle = @fopen($conf['indexdir'].'/lengths.idx', 'w');
1336            @fwrite($handle, implode("\n", $idx));
1337            @fclose($handle);
1338        }
1339        return $idx;
1340    }
1341
1342    return array();
1343}
1344
1345/**
1346 * Get the word lengths that have been indexed.
1347 *
1348 * Reads the index directory and returns an array of lengths
1349 * that there are indices for.
1350 *
1351 * @author YoBoY <yoboy.leguesh@gmail.com>
1352 */
1353function idx_indexLengths($filter) {
1354    global $conf;
1355    $idx = array();
1356    if (is_array($filter)) {
1357        // testing if index files exist only
1358        $path = $conf['indexdir']."/i";
1359        foreach ($filter as $key => $value) {
1360            if (@file_exists($path.$key.'.idx'))
1361                $idx[] = $key;
1362        }
1363    } else {
1364        $lengths = idx_listIndexLengths();
1365        foreach ($lengths as $key => $length) {
1366            // keep all the values equal or superior
1367            if ((int)$length >= (int)$filter)
1368                $idx[] = $length;
1369        }
1370    }
1371    return $idx;
1372}
1373
1374/**
1375 * Clean a name of a key for use as a file name.
1376 *
1377 * Romanizes non-latin characters, then strips away anything that's
1378 * not a letter, number, or underscore.
1379 *
1380 * @author Tom N Harris <tnharris@whoopdedo.org>
1381 */
1382function idx_cleanName($name) {
1383    $name = utf8_romanize(trim((string)$name));
1384    $name = preg_replace('#[ \./\\:-]+#', '_', $name);
1385    $name = preg_replace('/[^A-Za-z0-9_]/', '', $name);
1386    return strtolower($name);
1387}
1388
1389//Setup VIM: ex: et ts=4 :
1390