xref: /dokuwiki/inc/indexer.php (revision c1209673030dd03537a2ece21331203ff0a6bf34)
1b4ce25e9SAndreas Gohr<?php
2b4ce25e9SAndreas Gohr/**
3fcd3bb7cSAndreas Gohr * Functions to create the fulltext search index
4b4ce25e9SAndreas Gohr *
5b4ce25e9SAndreas Gohr * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6b4ce25e9SAndreas Gohr * @author     Andreas Gohr <andi@splitbrain.org>
700803e56STom N Harris * @author     Tom N Harris <tnharris@whoopdedo.org>
8b4ce25e9SAndreas Gohr */
9b4ce25e9SAndreas Gohr
10fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.');
11b4ce25e9SAndreas Gohr
127c2ef4e8STom N Harris// Version tag used to force rebuild on upgrade
1300803e56STom N Harrisdefine('INDEXER_VERSION', 3);
147c2ef4e8STom N Harris
1533815ce2SChris Smith// set the minimum token length to use in the index (note, this doesn't apply to numeric tokens)
16d3fb3219SAndreas Gohrif (!defined('IDX_MINWORDLENGTH')) define('IDX_MINWORDLENGTH',2);
1733815ce2SChris Smith
1893a60ad2SAndreas Gohr// Asian characters are handled as words. The following regexp defines the
1993a60ad2SAndreas Gohr// Unicode-Ranges for Asian characters
2093a60ad2SAndreas Gohr// Ranges taken from http://en.wikipedia.org/wiki/Unicode_block
2193a60ad2SAndreas Gohr// I'm no language expert. If you think some ranges are wrongly chosen or
2293a60ad2SAndreas Gohr// a range is missing, please contact me
23d5b23302STom N Harrisdefine('IDX_ASIAN1','[\x{0E00}-\x{0E7F}]'); // Thai
24d5b23302STom N Harrisdefine('IDX_ASIAN2','['.
25d5b23302STom N Harris                   '\x{2E80}-\x{3040}'.  // CJK -> Hangul
26d5b23302STom N Harris                   '\x{309D}-\x{30A0}'.
27a0c5c349STom N Harris                   '\x{30FD}-\x{31EF}\x{3200}-\x{D7AF}'.
2893a60ad2SAndreas Gohr                   '\x{F900}-\x{FAFF}'.  // CJK Compatibility Ideographs
2993a60ad2SAndreas Gohr                   '\x{FE30}-\x{FE4F}'.  // CJK Compatibility Forms
3093a60ad2SAndreas Gohr                   ']');
31d5b23302STom N Harrisdefine('IDX_ASIAN3','['.                // Hiragana/Katakana (can be two characters)
32d5b23302STom N Harris                   '\x{3042}\x{3044}\x{3046}\x{3048}'.
33d5b23302STom N Harris                   '\x{304A}-\x{3062}\x{3064}-\x{3082}'.
34d5b23302STom N Harris                   '\x{3084}\x{3086}\x{3088}-\x{308D}'.
35d5b23302STom N Harris                   '\x{308F}-\x{3094}'.
36d5b23302STom N Harris                   '\x{30A2}\x{30A4}\x{30A6}\x{30A8}'.
37d5b23302STom N Harris                   '\x{30AA}-\x{30C2}\x{30C4}-\x{30E2}'.
38d5b23302STom N Harris                   '\x{30E4}\x{30E6}\x{30E8}-\x{30ED}'.
39d5b23302STom N Harris                   '\x{30EF}-\x{30F4}\x{30F7}-\x{30FA}'.
40d5b23302STom N Harris                   ']['.
41d5b23302STom N Harris                   '\x{3041}\x{3043}\x{3045}\x{3047}\x{3049}'.
42d5b23302STom N Harris                   '\x{3063}\x{3083}\x{3085}\x{3087}\x{308E}\x{3095}-\x{309C}'.
43d5b23302STom N Harris                   '\x{30A1}\x{30A3}\x{30A5}\x{30A7}\x{30A9}'.
44d5b23302STom N Harris                   '\x{30C3}\x{30E3}\x{30E5}\x{30E7}\x{30EE}\x{30F5}\x{30F6}\x{30FB}\x{30FC}'.
45d5b23302STom N Harris                   '\x{31F0}-\x{31FF}'.
46d5b23302STom N Harris                   ']?');
47699b8a0bSAndreas Gohrdefine('IDX_ASIAN', '(?:'.IDX_ASIAN1.'|'.IDX_ASIAN2.'|'.IDX_ASIAN3.')');
4893a60ad2SAndreas Gohr
49b4ce25e9SAndreas Gohr/**
507c2ef4e8STom N Harris * Version of the indexer taking into consideration the external tokenizer.
517c2ef4e8STom N Harris * The indexer is only compatible with data written by the same version.
527c2ef4e8STom N Harris *
537c2ef4e8STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
548605afb1SMichael Hamann * @author Michael Hamann <michael@content-space.de>
557c2ef4e8STom N Harris */
567c2ef4e8STom N Harrisfunction idx_get_version(){
577c2ef4e8STom N Harris    global $conf;
587c2ef4e8STom N Harris    if($conf['external_tokenizer'])
598605afb1SMichael Hamann        $version = INDEXER_VERSION . '+' . trim($conf['tokenizer_cmd']);
607c2ef4e8STom N Harris    else
618605afb1SMichael Hamann        $version = INDEXER_VERSION;
628605afb1SMichael Hamann
638605afb1SMichael Hamann    $data = array($version);
648605afb1SMichael Hamann    trigger_event('INDEXER_VERSION_GET', $data, null, false);
658605afb1SMichael Hamann    return implode('+', $data);
667c2ef4e8STom N Harris}
677c2ef4e8STom N Harris
687c2ef4e8STom N Harris/**
69d5b23302STom N Harris * Measure the length of a string.
70d5b23302STom N Harris * Differs from strlen in handling of asian characters.
71d5b23302STom N Harris *
72d5b23302STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
73d5b23302STom N Harris */
74d5b23302STom N Harrisfunction wordlen($w){
75d5b23302STom N Harris    $l = strlen($w);
76d5b23302STom N Harris    // If left alone, all chinese "words" will get put into w3.idx
77d5b23302STom N Harris    // So the "length" of a "word" is faked
784b9792c6STom N Harris    if(preg_match_all('/[\xE2-\xEF]/',$w,$leadbytes)) {
794b9792c6STom N Harris        foreach($leadbytes[0] as $b)
804b9792c6STom N Harris            $l += ord($b) - 0xE1;
814b9792c6STom N Harris    }
82d5b23302STom N Harris    return $l;
83d5b23302STom N Harris}
84d5b23302STom N Harris
85d5b23302STom N Harris/**
8600803e56STom N Harris * Class that encapsulates operations on the indexer database.
87579b0f7eSTNHarris *
88579b0f7eSTNHarris * @author Tom N Harris <tnharris@whoopdedo.org>
89579b0f7eSTNHarris */
9000803e56STom N Harrisclass Doku_Indexer {
91579b0f7eSTNHarris
92579b0f7eSTNHarris    /**
9300803e56STom N Harris     * Adds the contents of a page to the fulltext index
94dd35e9c9SAndreas Gohr     *
9500803e56STom N Harris     * The added text replaces previous words for the same page.
9600803e56STom N Harris     * An empty value erases the page.
9700803e56STom N Harris     *
9800803e56STom N Harris     * @param string    $page   a page name
9900803e56STom N Harris     * @param string    $text   the body of the page
10000803e56STom N Harris     * @return boolean          the function completed successfully
10100803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
102dd35e9c9SAndreas Gohr     * @author Andreas Gohr <andi@splitbrain.org>
103dd35e9c9SAndreas Gohr     */
10400803e56STom N Harris    public function addPageWords($page, $text) {
1059b41be24STom N Harris        if (!$this->_lock())
1069b41be24STom N Harris            return "locked";
10700803e56STom N Harris
10800803e56STom N Harris        // load known documents
10900803e56STom N Harris        $page_idx = $this->_addIndexKey('page', '', $page);
11000803e56STom N Harris        if ($page_idx === false) {
11100803e56STom N Harris            $this->_unlock();
11200803e56STom N Harris            return false;
11300803e56STom N Harris        }
11400803e56STom N Harris
11500803e56STom N Harris        $pagewords = array();
11600803e56STom N Harris        // get word usage in page
11700803e56STom N Harris        $words = $this->_getPageWords($text);
11800803e56STom N Harris        if ($words === false) {
11900803e56STom N Harris            $this->_unlock();
12000803e56STom N Harris            return false;
12100803e56STom N Harris        }
12200803e56STom N Harris
12300803e56STom N Harris        if (!empty($words)) {
12400803e56STom N Harris            foreach (array_keys($words) as $wlen) {
12500803e56STom N Harris                $index = $this->_getIndex('i', $wlen);
12600803e56STom N Harris                foreach ($words[$wlen] as $wid => $freq) {
12700803e56STom N Harris                    $idx = ($wid<count($index)) ? $index[$wid] : '';
12800803e56STom N Harris                    $index[$wid] = $this->_updateTuple($idx, $pid, $freq);
12900803e56STom N Harris                    $pagewords[] = "$wlen*$wid";
13000803e56STom N Harris                }
13100803e56STom N Harris                if (!$this->_saveIndex('i', $wlen, $index)) {
13200803e56STom N Harris                    $this->_unlock();
13300803e56STom N Harris                    return false;
13400803e56STom N Harris                }
13500803e56STom N Harris            }
13600803e56STom N Harris        }
13700803e56STom N Harris
13800803e56STom N Harris        // Remove obsolete index entries
13900803e56STom N Harris        $pageword_idx = $this->_getIndexKey('pageword', '', $pid);
14000803e56STom N Harris        if ($pageword_idx !== '') {
14100803e56STom N Harris            $oldwords = explode(':',$pageword_idx);
14200803e56STom N Harris            $delwords = array_diff($oldwords, $pagewords);
14300803e56STom N Harris            $upwords = array();
14400803e56STom N Harris            foreach ($delwords as $word) {
14500803e56STom N Harris                if ($word != '') {
14600803e56STom N Harris                    list($wlen,$wid) = explode('*', $word);
14700803e56STom N Harris                    $wid = (int)$wid;
14800803e56STom N Harris                    $upwords[$wlen][] = $wid;
14900803e56STom N Harris                }
15000803e56STom N Harris            }
15100803e56STom N Harris            foreach ($upwords as $wlen => $widx) {
15200803e56STom N Harris                $index = $this->_getIndex('i', $wlen);
15300803e56STom N Harris                foreach ($widx as $wid) {
15400803e56STom N Harris                    $index[$wid] = $this->_updateTuple($index[$wid], $pid, 0);
15500803e56STom N Harris                }
15600803e56STom N Harris                $this->_saveIndex('i', $wlen, $index);
15700803e56STom N Harris            }
15800803e56STom N Harris        }
15900803e56STom N Harris        // Save the reverse index
16000803e56STom N Harris        $pageword_idx = join(':', $pagewords);
16100803e56STom N Harris        if (!$this->_saveIndexKey('pageword', '', $pid, $pageword_idx)) {
16200803e56STom N Harris            $this->_unlock();
16300803e56STom N Harris            return false;
16400803e56STom N Harris        }
16500803e56STom N Harris
16600803e56STom N Harris        $this->_unlock();
167dd35e9c9SAndreas Gohr        return true;
168dd35e9c9SAndreas Gohr    }
169dd35e9c9SAndreas Gohr
170dd35e9c9SAndreas Gohr    /**
17100803e56STom N Harris     * Split the words in a page and add them to the index.
17244ca0adfSAndreas Gohr     *
17344ca0adfSAndreas Gohr     * @author Andreas Gohr <andi@splitbrain.org>
17417f42b01SChris Smith     * @author Christopher Smith <chris@jalakai.co.uk>
17500803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
176b4ce25e9SAndreas Gohr     */
17700803e56STom N Harris    private function _getPageWords($text) {
17844ca0adfSAndreas Gohr        global $conf;
17944ca0adfSAndreas Gohr
18000803e56STom N Harris        $tokens = $this->tokenizer($text);
18117f42b01SChris Smith        $tokens = array_count_values($tokens);  // count the frequency of each token
18217f42b01SChris Smith
18317f42b01SChris Smith        $words = array();
1844e1bf408STom N Harris        foreach ($tokens as $w=>$c) {
185d5b23302STom N Harris            $l = wordlen($w);
186579b0f7eSTNHarris            if (isset($words[$l])){
1874e1bf408STom N Harris                $words[$l][$w] = $c + (isset($words[$l][$w]) ? $words[$l][$w] : 0);
18817f42b01SChris Smith            }else{
1894e1bf408STom N Harris                $words[$l] = array($w => $c);
19017f42b01SChris Smith            }
19117f42b01SChris Smith        }
19217f42b01SChris Smith
193579b0f7eSTNHarris        // arrive here with $words = array(wordlen => array(word => frequency))
194e5e50383SMichael Hamann        $word_idx_modified = false;
195b4ce25e9SAndreas Gohr        $index = array();   //resulting index
196579b0f7eSTNHarris        foreach (array_keys($words) as $wlen) {
19700803e56STom N Harris            $word_idx = $this->_getIndex('w', $wlen);
198579b0f7eSTNHarris            foreach ($words[$wlen] as $word => $freq) {
19900803e56STom N Harris                $wid = array_search($word, $word_idx);
20000803e56STom N Harris                if ($wid === false) {
201d5b23302STom N Harris                    $wid = count($word_idx);
20200803e56STom N Harris                    $word_idx[] = $word;
203e5e50383SMichael Hamann                    $word_idx_modified = true;
204b4ce25e9SAndreas Gohr                }
205579b0f7eSTNHarris                if (!isset($index[$wlen]))
206579b0f7eSTNHarris                    $index[$wlen] = array();
207579b0f7eSTNHarris                $index[$wlen][$wid] = $freq;
20844ca0adfSAndreas Gohr            }
20900803e56STom N Harris            // save back the word index
21000803e56STom N Harris            if ($word_idx_modified && !$this->_saveIndex('w', $wlen, $word_idx))
21144ca0adfSAndreas Gohr                return false;
21244ca0adfSAndreas Gohr        }
213b4ce25e9SAndreas Gohr
214b4ce25e9SAndreas Gohr        return $index;
215b4ce25e9SAndreas Gohr    }
216b4ce25e9SAndreas Gohr
21744ca0adfSAndreas Gohr    /**
218e1e1a7e0SMichael Hamann     * Add/update keys to/of the metadata index.
21944ca0adfSAndreas Gohr     *
22000803e56STom N Harris     * Adding new keys does not remove other keys for the page.
22100803e56STom N Harris     * An empty value will erase the key.
22200803e56STom N Harris     * The $key parameter can be an array to add multiple keys. $value will
22300803e56STom N Harris     * not be used if $key is an array.
22444ca0adfSAndreas Gohr     *
22500803e56STom N Harris     * @param string    $page   a page name
22600803e56STom N Harris     * @param mixed     $key    a key string or array of key=>value pairs
22700803e56STom N Harris     * @param mixed     $value  the value or list of values
22800803e56STom N Harris     * @return boolean          the function completed successfully
22900803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
230e1e1a7e0SMichael Hamann     * @author Michael Hamann <michael@content-space.de>
23144ca0adfSAndreas Gohr     */
23200803e56STom N Harris    public function addMetaKeys($page, $key, $value=null) {
23300803e56STom N Harris        if (!is_array($key)) {
23400803e56STom N Harris            $key = array($key => $value);
23500803e56STom N Harris        } elseif (!is_null($value)) {
23600803e56STom N Harris            // $key is array, but $value is not null
23700803e56STom N Harris            trigger_error("array passed to addMetaKeys but value is not null", E_USER_WARNING);
23800803e56STom N Harris        }
23900803e56STom N Harris
240e1e1a7e0SMichael Hamann        if (!$this->_lock())
241e1e1a7e0SMichael Hamann            return "locked";
242b4ce25e9SAndreas Gohr
243488dd6ceSAndreas Gohr        // load known documents
24400803e56STom N Harris        $pid = $this->_addIndexKey('page', '', $page);
24500803e56STom N Harris        if ($pid === false) {
24600803e56STom N Harris            $this->_unlock();
247579b0f7eSTNHarris            return false;
24844ca0adfSAndreas Gohr        }
24900803e56STom N Harris
250*c1209673STom N Harris        // Special handling for titles so the index file is simpler
251*c1209673STom N Harris        if (array_key_exists('title', $key)) {
252*c1209673STom N Harris            $value = $key['title'];
253*c1209673STom N Harris            if (is_array($value))
254*c1209673STom N Harris                $value = $value[0];
255*c1209673STom N Harris            $this->_saveIndexKey('title', '', $pid, $value);
256*c1209673STom N Harris            unset($key['title']);
257*c1209673STom N Harris        }
258*c1209673STom N Harris
25900803e56STom N Harris        foreach ($key as $name => $values) {
26000803e56STom N Harris            $metaname = idx_cleanName($name);
26100803e56STom N Harris            $metaidx = $this->_getIndex($metaname, '_i');
26200803e56STom N Harris            $metawords = $this->_getIndex($metaname, '_w');
26300803e56STom N Harris            $addwords = false;
264e1e1a7e0SMichael Hamann
265e1e1a7e0SMichael Hamann            if (!is_array($values)) $values = array($values);
266e1e1a7e0SMichael Hamann
267e1e1a7e0SMichael Hamann            $val_idx = $this->_getIndexKey($metaname, '_p', $pid);
268e1e1a7e0SMichael Hamann            if ($val_idx != '') {
269e1e1a7e0SMichael Hamann                $val_idx = explode(':', $val_idx);
270e1e1a7e0SMichael Hamann                // -1 means remove, 0 keep, 1 add
271e1e1a7e0SMichael Hamann                $val_idx = array_combine($val_idx, array_fill(0, count($val_idx), -1));
272e1e1a7e0SMichael Hamann            } else {
273e1e1a7e0SMichael Hamann                $val_idx = array();
274e1e1a7e0SMichael Hamann            }
275e1e1a7e0SMichael Hamann
276e1e1a7e0SMichael Hamann
27700803e56STom N Harris            foreach ($values as $val) {
27800803e56STom N Harris                $val = (string)$val;
27900803e56STom N Harris                if ($val !== "") {
28000803e56STom N Harris                    $id = array_search($val, $metawords);
28100803e56STom N Harris                    if ($id === false) {
28200803e56STom N Harris                        $id = count($metawords);
28300803e56STom N Harris                        $metawords[$id] = $val;
28400803e56STom N Harris                        $addwords = true;
285d5b23302STom N Harris                    }
286e1e1a7e0SMichael Hamann                    // test if value is already in the index
287e1e1a7e0SMichael Hamann                    if (isset($val_idx[$id]) && $val_idx[$id] <= 0)
288e1e1a7e0SMichael Hamann                        $val_idx[$id] = 0;
289e1e1a7e0SMichael Hamann                    else // else add it
290e1e1a7e0SMichael Hamann                        $val_idx[$id] = 1;
29144ca0adfSAndreas Gohr                }
292579b0f7eSTNHarris            }
293e1e1a7e0SMichael Hamann
29400803e56STom N Harris            if ($addwords)
29500803e56STom N Harris                $this->_saveIndex($metaname.'_w', '', $metawords);
296e1e1a7e0SMichael Hamann            $vals_changed = false;
297e1e1a7e0SMichael Hamann            foreach ($val_idx as $id => $action) {
298e1e1a7e0SMichael Hamann                if ($action == -1) {
299e1e1a7e0SMichael Hamann                    $metaidx[$id] = $this->_updateTuple($metaidx[$id], $pid, 0);
300e1e1a7e0SMichael Hamann                    $vals_changed = true;
301e1e1a7e0SMichael Hamann                    unset($val_idx[$id]);
302e1e1a7e0SMichael Hamann                } elseif ($action == 1) {
303e1e1a7e0SMichael Hamann                    $metaidx[$id] = $this->_updateTuple($metaidx[$id], $pid, 1);
304e1e1a7e0SMichael Hamann                    $vals_changed = true;
305e1e1a7e0SMichael Hamann                }
306e1e1a7e0SMichael Hamann            }
307e1e1a7e0SMichael Hamann
308e1e1a7e0SMichael Hamann            if ($vals_changed) {
30900803e56STom N Harris                $this->_saveIndex($metaname.'_i', '', $metaidx);
310e1e1a7e0SMichael Hamann                $val_idx = implode(':', array_keys($val_idx));
311e1e1a7e0SMichael Hamann                $this->_saveIndexKey($metaname.'_p', '', $pid, $val_idx);
312b6344591STom N Harris            }
313e1e1a7e0SMichael Hamann
31400803e56STom N Harris            unset($metaidx);
31500803e56STom N Harris            unset($metawords);
316a0c5c349STom N Harris        }
317e1e1a7e0SMichael Hamann
318e1e1a7e0SMichael Hamann        $this->_unlock();
319579b0f7eSTNHarris        return true;
32044ca0adfSAndreas Gohr    }
32144ca0adfSAndreas Gohr
32244ca0adfSAndreas Gohr    /**
32300803e56STom N Harris     * Remove a page from the index
32444ca0adfSAndreas Gohr     *
32500803e56STom N Harris     * Erases entries in all known indexes.
32644ca0adfSAndreas Gohr     *
32700803e56STom N Harris     * @param string    $page   a page name
32800803e56STom N Harris     * @return boolean          the function completed successfully
32900803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
33044ca0adfSAndreas Gohr     */
33100803e56STom N Harris    public function deletePage($page) {
332bbc85ee4STom N Harris        if (!$this->_lock())
333bbc85ee4STom N Harris            return "locked";
334bbc85ee4STom N Harris
335bbc85ee4STom N Harris        // load known documents
336bbc85ee4STom N Harris        $page_idx = $this->_getIndexKey('page', '', $page);
337bbc85ee4STom N Harris        if ($page_idx === false) {
338bbc85ee4STom N Harris            $this->_unlock();
339bbc85ee4STom N Harris            return false;
340bbc85ee4STom N Harris        }
341bbc85ee4STom N Harris
342bbc85ee4STom N Harris        // Remove obsolete index entries
343bbc85ee4STom N Harris        $pageword_idx = $this->_getIndexKey('pageword', '', $pid);
344bbc85ee4STom N Harris        if ($pageword_idx !== '') {
345bbc85ee4STom N Harris            $delwords = explode(':',$pageword_idx);
346bbc85ee4STom N Harris            $upwords = array();
347bbc85ee4STom N Harris            foreach ($delwords as $word) {
348bbc85ee4STom N Harris                if ($word != '') {
349bbc85ee4STom N Harris                    list($wlen,$wid) = explode('*', $word);
350bbc85ee4STom N Harris                    $wid = (int)$wid;
351bbc85ee4STom N Harris                    $upwords[$wlen][] = $wid;
352bbc85ee4STom N Harris                }
353bbc85ee4STom N Harris            }
354bbc85ee4STom N Harris            foreach ($upwords as $wlen => $widx) {
355bbc85ee4STom N Harris                $index = $this->_getIndex('i', $wlen);
356bbc85ee4STom N Harris                foreach ($widx as $wid) {
357bbc85ee4STom N Harris                    $index[$wid] = $this->_updateTuple($index[$wid], $pid, 0);
358bbc85ee4STom N Harris                }
359bbc85ee4STom N Harris                $this->_saveIndex('i', $wlen, $index);
360bbc85ee4STom N Harris            }
361bbc85ee4STom N Harris        }
362bbc85ee4STom N Harris        // Save the reverse index
363bbc85ee4STom N Harris        if (!$this->_saveIndexKey('pageword', '', $pid, "")) {
364bbc85ee4STom N Harris            $this->_unlock();
365bbc85ee4STom N Harris            return false;
366bbc85ee4STom N Harris        }
367bbc85ee4STom N Harris
368bbc85ee4STom N Harris        // XXX TODO: delete meta keys
369*c1209673STom N Harris        $this->_saveIndexKey('title', '', $pid, "");
370bbc85ee4STom N Harris
371bbc85ee4STom N Harris        $this->_unlock();
372bbc85ee4STom N Harris        return true;
373d5b23302STom N Harris    }
37444ca0adfSAndreas Gohr
375d5b23302STom N Harris    /**
37600803e56STom N Harris     * Split the text into words for fulltext search
377d5b23302STom N Harris     *
37800803e56STom N Harris     * TODO: does this also need &$stopwords ?
379d5b23302STom N Harris     *
38000803e56STom N Harris     * @param string    $text   plain text
38100803e56STom N Harris     * @param boolean   $wc     are wildcards allowed?
38200803e56STom N Harris     * @return array            list of words in the text
383d5b23302STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
384d5b23302STom N Harris     * @author Andreas Gohr <andi@splitbrain.org>
385d5b23302STom N Harris     */
38600803e56STom N Harris    public function tokenizer($text, $wc=false) {
38722952965SYoBoY        global $conf;
38800803e56STom N Harris        $words = array();
38900803e56STom N Harris        $wc = ($wc) ? '' : '\*';
39000803e56STom N Harris        $stopwords =& idx_get_stopwords();
39100803e56STom N Harris
39200803e56STom N Harris        if ($conf['external_tokenizer'] && $conf['tokenizer_cmd'] != '') {
39300803e56STom N Harris            if (0 == io_exec($conf['tokenizer_cmd'], $text, $output))
39400803e56STom N Harris                $text = $output;
39522952965SYoBoY        } else {
39600803e56STom N Harris            if (preg_match('/[^0-9A-Za-z ]/u', $text)) {
39700803e56STom N Harris                // handle asian chars as single words (may fail on older PHP version)
39800803e56STom N Harris                $asia = @preg_replace('/('.IDX_ASIAN.')/u', ' \1 ', $text);
39900803e56STom N Harris                if (!is_null($asia)) $text = $asia; // recover from regexp falure
40022952965SYoBoY            }
40122952965SYoBoY        }
40200803e56STom N Harris        $text = strtr($text, "\r\n\t", '   ');
40300803e56STom N Harris        if (preg_match('/[^0-9A-Za-z ]/u', $text))
40400803e56STom N Harris            $text = utf8_stripspecials($text, ' ', '\._\-:'.$wc);
40522952965SYoBoY
40600803e56STom N Harris        $wordlist = explode(' ', $text);
40700803e56STom N Harris        foreach ($wordlist as $word) {
40800803e56STom N Harris            $word = (preg_match('/[^0-9A-Za-z]/u', $word)) ?
40900803e56STom N Harris                utf8_strtolower($word) : strtolower($word);
41000803e56STom N Harris            if (!is_numeric($word) && strlen($word) < IDX_MINWORDLENGTH) continue;
41100803e56STom N Harris            if (array_search($word, $stopwords) !== false) continue;
41200803e56STom N Harris            $words[] = $word;
41322952965SYoBoY        }
41400803e56STom N Harris        return $words;
41522952965SYoBoY    }
41622952965SYoBoY
41722952965SYoBoY    /**
41800803e56STom N Harris     * Find pages in the fulltext index containing the words,
419579b0f7eSTNHarris     *
42000803e56STom N Harris     * The search words must be pre-tokenized, meaning only letters and
42100803e56STom N Harris     * numbers with an optional wildcard
422579b0f7eSTNHarris     *
42300803e56STom N Harris     * The returned array will have the original tokens as key. The values
42400803e56STom N Harris     * in the returned list is an array with the page names as keys and the
42500803e56STom N Harris     * number of times that token appeas on the page as value.
42600803e56STom N Harris     *
4279b41be24STom N Harris     * @param arrayref  $tokens list of words to search for
42800803e56STom N Harris     * @return array            list of page names with usage counts
42900803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
43000803e56STom N Harris     * @author Andreas Gohr <andi@splitbrain.org>
431579b0f7eSTNHarris     */
4329b41be24STom N Harris    public function lookup(&$tokens) {
43300803e56STom N Harris        $result = array();
43400803e56STom N Harris        $wids = $this->_getIndexWords($tokens, $result);
43500803e56STom N Harris        if (empty($wids)) return array();
43600803e56STom N Harris        // load known words and documents
43700803e56STom N Harris        $page_idx = $this->_getIndex('page', '');
43800803e56STom N Harris        $docs = array();
43900803e56STom N Harris        foreach (array_keys($wids) as $wlen) {
44000803e56STom N Harris            $wids[$wlen] = array_unique($wids[$wlen]);
44100803e56STom N Harris            $index = $this->_getIndex('i', $wlen);
44200803e56STom N Harris            foreach($wids[$wlen] as $ixid) {
44300803e56STom N Harris                if ($ixid < count($index))
44400803e56STom N Harris                    $docs["$wlen*$ixid"] = $this->_parseTuples($page_idx, $index[$ixid]);
445d5b23302STom N Harris            }
446d5b23302STom N Harris        }
44700803e56STom N Harris        // merge found pages into final result array
44800803e56STom N Harris        $final = array();
44900803e56STom N Harris        foreach ($result as $word => $res) {
45000803e56STom N Harris            $final[$word] = array();
45100803e56STom N Harris            foreach ($res as $wid) {
45200803e56STom N Harris                $hits = &$docs[$wid];
45300803e56STom N Harris                foreach ($hits as $hitkey => $hitcnt) {
45400803e56STom N Harris                    // make sure the document still exists
45500803e56STom N Harris                    if (!page_exists($hitkey, '', false)) continue;
45600803e56STom N Harris                    if (!isset($final[$word][$hitkey]))
45700803e56STom N Harris                        $final[$word][$hitkey] = $hitcnt;
45800803e56STom N Harris                    else
45900803e56STom N Harris                        $final[$word][$hitkey] += $hitcnt;
460d5b23302STom N Harris                }
461579b0f7eSTNHarris            }
462579b0f7eSTNHarris        }
46300803e56STom N Harris        return $final;
464579b0f7eSTNHarris    }
465579b0f7eSTNHarris
466579b0f7eSTNHarris    /**
46700803e56STom N Harris     * Find pages containing a metadata key.
468d5b23302STom N Harris     *
46900803e56STom N Harris     * The metadata values are compared as case-sensitive strings. Pass a
47000803e56STom N Harris     * callback function that returns true or false to use a different
47100803e56STom N Harris     * comparison function
472d5b23302STom N Harris     *
47300803e56STom N Harris     * @param string    $key    name of the metadata key to look for
47400803e56STom N Harris     * @param string    $value  search term to look for
47500803e56STom N Harris     * @param callback  $func   comparison function
476f078bb00STom N Harris     * @return array            lists with page names, keys are query values if $key is array
47700803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
478cd763a5bSMichael Hamann     * @author Michael Hamann <michael@content-space.de>
47900803e56STom N Harris     */
48000803e56STom N Harris    public function lookupKey($key, $value, $func=null) {
481f078bb00STom N Harris        if (!is_array($value))
482f078bb00STom N Harris            $value_array = array($value);
483f078bb00STom N Harris        else
484f078bb00STom N Harris            $value_array =& $value;
485cd763a5bSMichael Hamann
486*c1209673STom N Harris        // the matching ids for the provided value(s)
487*c1209673STom N Harris        $value_ids = array();
488*c1209673STom N Harris
489*c1209673STom N Harris        $metaname = idx_cleanName($key);
490*c1209673STom N Harris
491*c1209673STom N Harris        // get all words in order to search the matching ids
492*c1209673STom N Harris        if ($key == 'title') {
493*c1209673STom N Harris            $words = $this->_getIndex('title', '');
494*c1209673STom N Harris        } else {
495*c1209673STom N Harris            $words = $this->_getIndex($metaname, '_w');
496*c1209673STom N Harris        }
497*c1209673STom N Harris
498f078bb00STom N Harris        if (!is_null($func)) {
499f078bb00STom N Harris            foreach ($value_array as $val) {
500f078bb00STom N Harris                foreach ($words as $i => $word) {
501f078bb00STom N Harris                    if (call_user_func_array($func, array($word, $val)))
502*c1209673STom N Harris                        $value_ids[$i][] = $val;
503f078bb00STom N Harris                }
504f078bb00STom N Harris            }
505f078bb00STom N Harris        } else {
506f078bb00STom N Harris            foreach ($value_array as $val) {
507f078bb00STom N Harris                $xval = $val;
508f078bb00STom N Harris                $caret = false;
509f078bb00STom N Harris                $dollar = false;
510f078bb00STom N Harris                // check for wildcards
511f078bb00STom N Harris                if (substr($xval, 0, 1) == '*') {
512f078bb00STom N Harris                    $xval = substr($xval, 1);
513f078bb00STom N Harris                    $caret = '^';
514f078bb00STom N Harris                }
515f078bb00STom N Harris                if (substr($xval, -1, 1) == '*') {
516f078bb00STom N Harris                    $xval = substr($xval, 0, -1);
517f078bb00STom N Harris                    $dollar = '$';
518f078bb00STom N Harris                }
519f078bb00STom N Harris                if ($caret || $dollar) {
520f078bb00STom N Harris                    $re = $caret.preg_quote($xval, '/').$dollar;
521f078bb00STom N Harris                    foreach(array_keys(preg_grep('/'.$re.'/', $words)) as $i)
522*c1209673STom N Harris                        $value_ids[$i][] = $val;
523cd763a5bSMichael Hamann                } else {
524f078bb00STom N Harris                    if (($i = array_search($val, $words)) !== false)
525*c1209673STom N Harris                        $value_ids[$i][] = $val;
526cd763a5bSMichael Hamann                }
527cd763a5bSMichael Hamann            }
528cd763a5bSMichael Hamann        }
529cd763a5bSMichael Hamann
530cd763a5bSMichael Hamann        unset($words); // free the used memory
531cd763a5bSMichael Hamann
532*c1209673STom N Harris        $result = array();
533cd763a5bSMichael Hamann        $page_idx = $this->_getIndex('page', '');
534cd763a5bSMichael Hamann
535*c1209673STom N Harris        // Special handling for titles
536*c1209673STom N Harris        if ($key == 'title') {
537*c1209673STom N Harris            foreach ($value_ids as $pid => $val_list) {
538*c1209673STom N Harris                $page = $page_idx[$pid];
539*c1209673STom N Harris                foreach ($val_list as $val) {
540*c1209673STom N Harris                    $result[$val][] = $page;
541*c1209673STom N Harris                }
542*c1209673STom N Harris            }
543*c1209673STom N Harris        } else {
544*c1209673STom N Harris            // load all lines and pages so the used lines can be taken and matched with the pages
545*c1209673STom N Harris            $lines = $this->_getIndex($metaname, '_i');
546*c1209673STom N Harris
547*c1209673STom N Harris            foreach ($value_ids as $value_id => $val_list) {
548cd763a5bSMichael Hamann                // parse the tuples of the form page_id*1:page2_id*1 and so on, return value
549cd763a5bSMichael Hamann                // is an array with page_id => 1, page2_id => 1 etc. so take the keys only
550*c1209673STom N Harris                $pages = array_keys($this->_parseTuples($page_idx, $lines[$value_id]));
551*c1209673STom N Harris                foreach ($val_list as $val) {
552*c1209673STom N Harris                    if (!isset($result[$val]))
553*c1209673STom N Harris                        $result[$val] = $pages;
554*c1209673STom N Harris                    else
555*c1209673STom N Harris                        $result[$val] = array_merge($result[$val], $pages);
556*c1209673STom N Harris                }
557*c1209673STom N Harris            }
558cd763a5bSMichael Hamann        }
559f078bb00STom N Harris        if (!is_array($value)) $result = $result[$value];
560cd763a5bSMichael Hamann        return $result;
56100803e56STom N Harris    }
56200803e56STom N Harris
56300803e56STom N Harris    /**
56400803e56STom N Harris     * Find the index ID of each search term.
56500803e56STom N Harris     *
56600803e56STom N Harris     * The query terms should only contain valid characters, with a '*' at
56700803e56STom N Harris     * either the beginning or end of the word (or both).
56800803e56STom N Harris     * The $result parameter can be used to merge the index locations with
56900803e56STom N Harris     * the appropriate query term.
57000803e56STom N Harris     *
5719b41be24STom N Harris     * @param arrayref  $words  The query terms.
57200803e56STom N Harris     * @param arrayref  $result Set to word => array("length*id" ...)
573d5b23302STom N Harris     * @return array            Set to length => array(id ...)
574d5b23302STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
575d5b23302STom N Harris     */
5769b41be24STom N Harris    private function _getIndexWords(&$words, &$result) {
577d5b23302STom N Harris        $tokens = array();
578d5b23302STom N Harris        $tokenlength = array();
579d5b23302STom N Harris        $tokenwild = array();
580d5b23302STom N Harris        foreach ($words as $word) {
581d5b23302STom N Harris            $result[$word] = array();
58200803e56STom N Harris            $caret = false;
58300803e56STom N Harris            $dollar = false;
584d5b23302STom N Harris            $xword = $word;
585d5b23302STom N Harris            $wlen = wordlen($word);
586d5b23302STom N Harris
587d5b23302STom N Harris            // check for wildcards
588d5b23302STom N Harris            if (substr($xword, 0, 1) == '*') {
589d5b23302STom N Harris                $xword = substr($xword, 1);
590f078bb00STom N Harris                $caret = '^';
591d5b23302STom N Harris                $wlen -= 1;
592d5b23302STom N Harris            }
593d5b23302STom N Harris            if (substr($xword, -1, 1) == '*') {
594d5b23302STom N Harris                $xword = substr($xword, 0, -1);
595f078bb00STom N Harris                $dollar = '$';
596d5b23302STom N Harris                $wlen -= 1;
597d5b23302STom N Harris            }
59800803e56STom N Harris            if ($wlen < IDX_MINWORDLENGTH && !$caret && !$dollar && !is_numeric($xword))
59900803e56STom N Harris                continue;
60000803e56STom N Harris            if (!isset($tokens[$xword]))
601d5b23302STom N Harris                $tokenlength[$wlen][] = $xword;
60200803e56STom N Harris            if ($caret || $dollar) {
603f078bb00STom N Harris                $re = $caret.preg_quote($xword, '/').$dollar;
60400803e56STom N Harris                $tokens[$xword][] = array($word, '/'.$re.'/');
60500803e56STom N Harris                if (!isset($tokenwild[$xword]))
60600803e56STom N Harris                    $tokenwild[$xword] = $wlen;
60700803e56STom N Harris            } else {
608d5b23302STom N Harris                $tokens[$xword][] = array($word, null);
609d5b23302STom N Harris            }
61000803e56STom N Harris        }
611d5b23302STom N Harris        asort($tokenwild);
61200803e56STom N Harris        // $tokens = array( base word => array( [ query term , regexp ] ... ) ... )
613d5b23302STom N Harris        // $tokenlength = array( base word length => base word ... )
614d5b23302STom N Harris        // $tokenwild = array( base word => base word length ... )
615d5b23302STom N Harris        $length_filter = empty($tokenwild) ? $tokenlength : min(array_keys($tokenlength));
61600803e56STom N Harris        $indexes_known = $this->_indexLengths($length_filter);
617d5b23302STom N Harris        if (!empty($tokenwild)) sort($indexes_known);
618d5b23302STom N Harris        // get word IDs
619d5b23302STom N Harris        $wids = array();
620d5b23302STom N Harris        foreach ($indexes_known as $ixlen) {
62100803e56STom N Harris            $word_idx = $this->_getIndex('w', $ixlen);
622d5b23302STom N Harris            // handle exact search
623d5b23302STom N Harris            if (isset($tokenlength[$ixlen])) {
624d5b23302STom N Harris                foreach ($tokenlength[$ixlen] as $xword) {
62500803e56STom N Harris                    $wid = array_search($xword, $word_idx);
62600803e56STom N Harris                    if ($wid !== false) {
627d5b23302STom N Harris                        $wids[$ixlen][] = $wid;
628d5b23302STom N Harris                        foreach ($tokens[$xword] as $w)
629d5b23302STom N Harris                            $result[$w[0]][] = "$ixlen*$wid";
630d5b23302STom N Harris                    }
631d5b23302STom N Harris                }
632d5b23302STom N Harris            }
633d5b23302STom N Harris            // handle wildcard search
634d5b23302STom N Harris            foreach ($tokenwild as $xword => $wlen) {
635d5b23302STom N Harris                if ($wlen >= $ixlen) break;
636d5b23302STom N Harris                foreach ($tokens[$xword] as $w) {
637d5b23302STom N Harris                    if (is_null($w[1])) continue;
638d5b23302STom N Harris                    foreach(array_keys(preg_grep($w[1], $word_idx)) as $wid) {
639d5b23302STom N Harris                        $wids[$ixlen][] = $wid;
640d5b23302STom N Harris                        $result[$w[0]][] = "$ixlen*$wid";
641d5b23302STom N Harris                    }
642d5b23302STom N Harris                }
643d5b23302STom N Harris            }
644d5b23302STom N Harris        }
645d5b23302STom N Harris        return $wids;
646d5b23302STom N Harris    }
647d5b23302STom N Harris
648d5b23302STom N Harris    /**
64900803e56STom N Harris     * Return a list of all pages
650*c1209673STom N Harris     * Warning: pages may not exist!
651488dd6ceSAndreas Gohr     *
65200803e56STom N Harris     * @param string    $key    list only pages containing the metadata key (optional)
65300803e56STom N Harris     * @return array            list of page names
65400803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
65500803e56STom N Harris     */
65600803e56STom N Harris    public function getPages($key=null) {
65700803e56STom N Harris        $page_idx = $this->_getIndex('page', '');
65800803e56STom N Harris        if (is_null($key)) return $page_idx;
659*c1209673STom N Harris
660*c1209673STom N Harris        $metaname = idx_cleanName($key);
661*c1209673STom N Harris
662*c1209673STom N Harris        // Special handling for titles
663*c1209673STom N Harris        if ($key == 'title') {
664*c1209673STom N Harris            $title_idx = $this->_getIndex('title', '');
665*c1209673STom N Harris            array_splice($page_idx, count($title_idx));
666*c1209673STom N Harris            foreach ($title_idx as $i => $title)
667*c1209673STom N Harris                if ($title === "") unset($page_idx[$i]);
668*c1209673STom N Harris            return $page_idx;
669*c1209673STom N Harris        }
670*c1209673STom N Harris
671*c1209673STom N Harris        $pages = array();
672*c1209673STom N Harris        $lines = $this->_getIndex($metaname, '_i');
673*c1209673STom N Harris        foreach ($lines as $line) {
674*c1209673STom N Harris            $pages = array_merge($pages, $this->_parseTuples($page_idx, $line));
675*c1209673STom N Harris        }
676*c1209673STom N Harris        return array_keys($pages);
67700803e56STom N Harris    }
67800803e56STom N Harris
67900803e56STom N Harris    /**
68000803e56STom N Harris     * Return a list of words sorted by number of times used
68100803e56STom N Harris     *
68200803e56STom N Harris     * @param int       $min    bottom frequency threshold
68300803e56STom N Harris     * @param int       $max    upper frequency limit. No limit if $max<$min
68400803e56STom N Harris     * @param string    $key    metadata key to list. Uses the fulltext index if not given
68500803e56STom N Harris     * @return array            list of words as the keys and frequency as values
68600803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
68700803e56STom N Harris     */
68800803e56STom N Harris    public function histogram($min=1, $max=0, $key=null) {
68900803e56STom N Harris    }
69000803e56STom N Harris
69100803e56STom N Harris    /**
69200803e56STom N Harris     * Lock the indexer.
69300803e56STom N Harris     *
69400803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
69500803e56STom N Harris     */
69600803e56STom N Harris    private function _lock() {
69700803e56STom N Harris        global $conf;
69800803e56STom N Harris        $status = true;
69900803e56STom N Harris        $lock = $conf['lockdir'].'/_indexer.lock';
70000803e56STom N Harris        while (!@mkdir($lock, $conf['dmode'])) {
70100803e56STom N Harris            usleep(50);
70200803e56STom N Harris            if (time() - @filemtime($lock) > 60*5) {
70300803e56STom N Harris                // looks like a stale lock, remove it
70400803e56STom N Harris                @rmdir($lock);
70500803e56STom N Harris                $status = "stale lock removed";
70600803e56STom N Harris            } else {
70700803e56STom N Harris                return false;
70800803e56STom N Harris            }
70900803e56STom N Harris        }
71000803e56STom N Harris        if ($conf['dperm'])
71100803e56STom N Harris            chmod($lock, $conf['dperm']);
71200803e56STom N Harris        return $status;
71300803e56STom N Harris    }
71400803e56STom N Harris
71500803e56STom N Harris    /**
71600803e56STom N Harris     * Release the indexer lock.
71700803e56STom N Harris     *
71800803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
71900803e56STom N Harris     */
72000803e56STom N Harris    private function _unlock() {
72100803e56STom N Harris        global $conf;
72200803e56STom N Harris        @rmdir($conf['lockdir'].'/_indexer.lock');
72300803e56STom N Harris        return true;
72400803e56STom N Harris    }
72500803e56STom N Harris
72600803e56STom N Harris    /**
72700803e56STom N Harris     * Retrieve the entire index.
72800803e56STom N Harris     *
72900803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
73000803e56STom N Harris     */
73100803e56STom N Harris    private function _getIndex($idx, $suffix) {
73200803e56STom N Harris        global $conf;
73300803e56STom N Harris        $fn = $conf['indexdir'].'/'.$idx.$suffix.'.idx';
734d64516f5SMichael Hamann        if (!@file_exists($fn)) return array();
735d64516f5SMichael Hamann        return file($fn, FILE_IGNORE_NEW_LINES);
73600803e56STom N Harris    }
73700803e56STom N Harris
73800803e56STom N Harris    /**
73900803e56STom N Harris     * Replace the contents of the index with an array.
74000803e56STom N Harris     *
74100803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
74200803e56STom N Harris     */
74300803e56STom N Harris    private function _saveIndex($idx, $suffix, &$lines) {
74400803e56STom N Harris        global $conf;
74500803e56STom N Harris        $fn = $conf['indexdir'].'/'.$idx.$suffix;
74600803e56STom N Harris        $fh = @fopen($fn.'.tmp', 'w');
74700803e56STom N Harris        if (!$fh) return false;
74800803e56STom N Harris        fwrite($fh, join("\n", $lines));
74900803e56STom N Harris        fclose($fh);
75000803e56STom N Harris        if (isset($conf['fperm']))
75100803e56STom N Harris            chmod($fn.'.tmp', $conf['fperm']);
75200803e56STom N Harris        io_rename($fn.'.tmp', $fn.'.idx');
75300803e56STom N Harris        if ($suffix !== '')
75400803e56STom N Harris            $this->_cacheIndexDir($idx, $suffix, empty($lines));
75500803e56STom N Harris        return true;
75600803e56STom N Harris    }
75700803e56STom N Harris
75800803e56STom N Harris    /**
75900803e56STom N Harris     * Retrieve a line from the index.
76000803e56STom N Harris     *
76100803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
76200803e56STom N Harris     */
76300803e56STom N Harris    private function _getIndexKey($idx, $suffix, $id) {
76400803e56STom N Harris        global $conf;
76500803e56STom N Harris        $fn = $conf['indexdir'].'/'.$idx.$suffix.'.idx';
76600803e56STom N Harris        if (!@file_exists($fn)) return '';
76700803e56STom N Harris        $fh = @fopen($fn, 'r');
76800803e56STom N Harris        if (!$fh) return '';
76900803e56STom N Harris        $ln = -1;
77000803e56STom N Harris        while (($line = fgets($fh)) !== false) {
77100803e56STom N Harris            if (++$ln == $id) break;
77200803e56STom N Harris        }
77300803e56STom N Harris        fclose($fh);
77400803e56STom N Harris        return rtrim((string)$line);
77500803e56STom N Harris    }
77600803e56STom N Harris
77700803e56STom N Harris    /**
77800803e56STom N Harris     * Write a line into the index.
77900803e56STom N Harris     *
78000803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
78100803e56STom N Harris     */
78200803e56STom N Harris    private function _saveIndexKey($idx, $suffix, $id, $line) {
78300803e56STom N Harris        global $conf;
78400803e56STom N Harris        if (substr($line, -1) != "\n")
78500803e56STom N Harris            $line .= "\n";
78600803e56STom N Harris        $fn = $conf['indexdir'].'/'.$idx.$suffix;
78700803e56STom N Harris        $fh = @fopen($fn.'.tmp', 'w');
78800803e56STom N Harris        if (!fh) return false;
78900803e56STom N Harris        $ih = @fopen($fn.'.idx', 'r');
79000803e56STom N Harris        if ($ih) {
79100803e56STom N Harris            $ln = -1;
79200803e56STom N Harris            while (($curline = fgets($ih)) !== false) {
79300803e56STom N Harris                fwrite($fh, (++$ln == $id) ? $line : $curline);
79400803e56STom N Harris            }
7954373c7b5SMichael Hamann            if ($id > $ln) {
7964373c7b5SMichael Hamann                while ($id > ++$ln)
7974373c7b5SMichael Hamann                    fwrite($fh, "\n");
79800803e56STom N Harris                fwrite($fh, $line);
7994373c7b5SMichael Hamann            }
80000803e56STom N Harris            fclose($ih);
80100803e56STom N Harris        } else {
8024373c7b5SMichael Hamann            $ln = -1;
8034373c7b5SMichael Hamann            while ($id > ++$ln)
8044373c7b5SMichael Hamann                fwrite($fh, "\n");
80500803e56STom N Harris            fwrite($fh, $line);
80600803e56STom N Harris        }
80700803e56STom N Harris        fclose($fh);
80800803e56STom N Harris        if (isset($conf['fperm']))
80900803e56STom N Harris            chmod($fn.'.tmp', $conf['fperm']);
81000803e56STom N Harris        io_rename($fn.'.tmp', $fn.'.idx');
81100803e56STom N Harris        if ($suffix !== '')
81200803e56STom N Harris            $this->_cacheIndexDir($idx, $suffix);
81300803e56STom N Harris        return true;
81400803e56STom N Harris    }
81500803e56STom N Harris
81600803e56STom N Harris    /**
81700803e56STom N Harris     * Retrieve or insert a value in the index.
81800803e56STom N Harris     *
81900803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
82000803e56STom N Harris     */
82100803e56STom N Harris    private function _addIndexKey($idx, $suffix, $value) {
82200803e56STom N Harris        $index = $this->_getIndex($idx, $suffix);
82300803e56STom N Harris        $id = array_search($value, $index);
82400803e56STom N Harris        if ($id === false) {
82500803e56STom N Harris            $id = count($index);
82600803e56STom N Harris            $index[$id] = $value;
82700803e56STom N Harris            if (!$this->_saveIndex($idx, $suffix, $index)) {
82800803e56STom N Harris                trigger_error("Failed to write $idx index", E_USER_ERROR);
82900803e56STom N Harris                return false;
83000803e56STom N Harris            }
83100803e56STom N Harris        }
83200803e56STom N Harris        return $id;
83300803e56STom N Harris    }
83400803e56STom N Harris
83500803e56STom N Harris    private function _cacheIndexDir($idx, $suffix, $delete=false) {
83600803e56STom N Harris        global $conf;
83700803e56STom N Harris        if ($idx == 'i')
83800803e56STom N Harris            $cachename = $conf['indexdir'].'/lengths';
83900803e56STom N Harris        else
84000803e56STom N Harris            $cachename = $conf['indexdir'].'/'.$idx.'lengths';
84100803e56STom N Harris        $lengths = @file($cachename.'.idx', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
84200803e56STom N Harris        if ($lengths === false) $lengths = array();
84300803e56STom N Harris        $old = array_search((string)$suffix, $lengths);
84400803e56STom N Harris        if (empty($lines)) {
84500803e56STom N Harris            if ($old === false) return;
84600803e56STom N Harris            unset($lengths[$old]);
84700803e56STom N Harris        } else {
84800803e56STom N Harris            if ($old !== false) return;
84900803e56STom N Harris            $lengths[] = $suffix;
85000803e56STom N Harris            sort($lengths);
85100803e56STom N Harris        }
85200803e56STom N Harris        $fh = @fopen($cachename.'.tmp', 'w');
85300803e56STom N Harris        if (!$fh) {
85400803e56STom N Harris            trigger_error("Failed to write index cache", E_USER_ERROR);
85500803e56STom N Harris            return;
85600803e56STom N Harris        }
85700803e56STom N Harris        @fwrite($fh, implode("\n", $lengths));
85800803e56STom N Harris        @fclose($fh);
85900803e56STom N Harris        if (isset($conf['fperm']))
86000803e56STom N Harris            chmod($cachename.'.tmp', $conf['fperm']);
86100803e56STom N Harris        io_rename($cachename.'.tmp', $cachename.'.idx');
86200803e56STom N Harris    }
86300803e56STom N Harris
86400803e56STom N Harris    /**
86500803e56STom N Harris     * Get the list of lengths indexed in the wiki.
86600803e56STom N Harris     *
86700803e56STom N Harris     * Read the index directory or a cache file and returns
86800803e56STom N Harris     * a sorted array of lengths of the words used in the wiki.
86900803e56STom N Harris     *
87000803e56STom N Harris     * @author YoBoY <yoboy.leguesh@gmail.com>
87100803e56STom N Harris     */
87200803e56STom N Harris    private function _listIndexLengths() {
87300803e56STom N Harris        global $conf;
87400803e56STom N Harris        $cachename = $conf['indexdir'].'/lengths';
87500803e56STom N Harris        clearstatcache();
87600803e56STom N Harris        if (@file_exists($cachename.'.idx')) {
87700803e56STom N Harris            $lengths = @file($cachename.'.idx', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
87800803e56STom N Harris            if ($lengths !== false) {
87900803e56STom N Harris                $idx = array();
88000803e56STom N Harris                foreach ($lengths as $length)
88100803e56STom N Harris                    $idx[] = (int)$length;
88200803e56STom N Harris                return $idx;
88300803e56STom N Harris            }
88400803e56STom N Harris        }
88500803e56STom N Harris
88600803e56STom N Harris        $dir = @opendir($conf['indexdir']);
88700803e56STom N Harris        if ($dir === false)
88800803e56STom N Harris            return array();
88900803e56STom N Harris        $lengths[] = array();
89000803e56STom N Harris        while (($f = readdir($dir)) !== false) {
89100803e56STom N Harris            if (substr($f, 0, 1) == 'i' && substr($f, -4) == '.idx') {
89200803e56STom N Harris                $i = substr($f, 1, -4);
89300803e56STom N Harris                if (is_numeric($i))
89400803e56STom N Harris                    $lengths[] = (int)$i;
89500803e56STom N Harris            }
89600803e56STom N Harris        }
89700803e56STom N Harris        closedir($dir);
89800803e56STom N Harris        sort($lengths);
89900803e56STom N Harris        // save this in a file
90000803e56STom N Harris        $fh = @fopen($cachename.'.tmp', 'w');
90100803e56STom N Harris        if (!$fh) {
90200803e56STom N Harris            trigger_error("Failed to write index cache", E_USER_ERROR);
90300803e56STom N Harris            return;
90400803e56STom N Harris        }
90500803e56STom N Harris        @fwrite($fh, implode("\n", $lengths));
90600803e56STom N Harris        @fclose($fh);
90700803e56STom N Harris        if (isset($conf['fperm']))
90800803e56STom N Harris            chmod($cachename.'.tmp', $conf['fperm']);
90900803e56STom N Harris        io_rename($cachename.'.tmp', $cachename.'.idx');
91000803e56STom N Harris
91100803e56STom N Harris        return $lengths;
91200803e56STom N Harris    }
91300803e56STom N Harris
91400803e56STom N Harris    /**
91500803e56STom N Harris     * Get the word lengths that have been indexed.
91600803e56STom N Harris     *
91700803e56STom N Harris     * Reads the index directory and returns an array of lengths
91800803e56STom N Harris     * that there are indices for.
91900803e56STom N Harris     *
92000803e56STom N Harris     * @author YoBoY <yoboy.leguesh@gmail.com>
92100803e56STom N Harris     */
92200803e56STom N Harris    private function _indexLengths($filter) {
92300803e56STom N Harris        global $conf;
92400803e56STom N Harris        $idx = array();
92500803e56STom N Harris        if (is_array($filter)) {
92600803e56STom N Harris            // testing if index files exist only
92700803e56STom N Harris            $path = $conf['indexdir']."/i";
92800803e56STom N Harris            foreach ($filter as $key => $value) {
92900803e56STom N Harris                if (@file_exists($path.$key.'.idx'))
93000803e56STom N Harris                    $idx[] = $key;
93100803e56STom N Harris            }
93200803e56STom N Harris        } else {
93300803e56STom N Harris            $lengths = idx_listIndexLengths();
93400803e56STom N Harris            foreach ($lengths as $key => $length) {
93500803e56STom N Harris                // keep all the values equal or superior
93600803e56STom N Harris                if ((int)$length >= (int)$filter)
93700803e56STom N Harris                    $idx[] = $length;
93800803e56STom N Harris            }
93900803e56STom N Harris        }
94000803e56STom N Harris        return $idx;
94100803e56STom N Harris    }
94200803e56STom N Harris
94300803e56STom N Harris    /**
94400803e56STom N Harris     * Insert or replace a tuple in a line.
94500803e56STom N Harris     *
94600803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
94700803e56STom N Harris     */
94800803e56STom N Harris    private function _updateTuple($line, $id, $count) {
94900803e56STom N Harris        $newLine = $line;
95000803e56STom N Harris        if ($newLine !== '')
95100803e56STom N Harris            $newLine = preg_replace('/(^|:)'.preg_quote($id,'/').'\*\d*/', '', $newLine);
95200803e56STom N Harris        $newLine = trim($newLine, ':');
95300803e56STom N Harris        if ($count) {
954d64516f5SMichael Hamann            if (strlen($newLine) > 0)
95500803e56STom N Harris                return "$id*$count:".$newLine;
95600803e56STom N Harris            else
95700803e56STom N Harris                return "$id*$count".$newLine;
95800803e56STom N Harris        }
95900803e56STom N Harris        return $newLine;
96000803e56STom N Harris    }
96100803e56STom N Harris
96200803e56STom N Harris    /**
96300803e56STom N Harris     * Split a line into an array of tuples.
96400803e56STom N Harris     *
96500803e56STom N Harris     * @author Tom N Harris <tnharris@whoopdedo.org>
96600803e56STom N Harris     * @author Andreas Gohr <andi@splitbrain.org>
96700803e56STom N Harris     */
96800803e56STom N Harris    private function _parseTuples(&$keys, $line) {
96900803e56STom N Harris        $result = array();
97000803e56STom N Harris        if ($line == '') return $result;
97100803e56STom N Harris        $parts = explode(':', $line);
97200803e56STom N Harris        foreach ($parts as $tuple) {
97300803e56STom N Harris            if ($tuple == '') continue;
97400803e56STom N Harris            list($key, $cnt) = explode('*', $tuple);
975d64516f5SMichael Hamann            if (!$cnt) continue;
97600803e56STom N Harris            $key = $keys[$key];
97700803e56STom N Harris            if (!$key) continue;
97800803e56STom N Harris            $result[$key] = $cnt;
97900803e56STom N Harris        }
98000803e56STom N Harris        return $result;
98100803e56STom N Harris    }
98200803e56STom N Harris}
98300803e56STom N Harris
98400803e56STom N Harris/**
98500803e56STom N Harris * Create an instance of the indexer.
98600803e56STom N Harris *
98700803e56STom N Harris * @return object               a Doku_Indexer
98800803e56STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
98900803e56STom N Harris */
9909b41be24STom N Harrisfunction idx_get_indexer() {
99100803e56STom N Harris    static $Indexer = null;
99200803e56STom N Harris    if (is_null($Indexer)) {
99300803e56STom N Harris        $Indexer = new Doku_Indexer();
99400803e56STom N Harris    }
99500803e56STom N Harris    return $Indexer;
99600803e56STom N Harris}
99700803e56STom N Harris
99800803e56STom N Harris/**
99900803e56STom N Harris * Returns words that will be ignored.
100000803e56STom N Harris *
100100803e56STom N Harris * @return array                list of stop words
100200803e56STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
100300803e56STom N Harris */
100400803e56STom N Harrisfunction & idx_get_stopwords() {
100500803e56STom N Harris    static $stopwords = null;
100600803e56STom N Harris    if (is_null($stopwords)) {
100700803e56STom N Harris        global $conf;
100800803e56STom N Harris        $swfile = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt';
100900803e56STom N Harris        if(@file_exists($swfile)){
101000803e56STom N Harris            $stopwords = file($swfile, FILE_IGNORE_NEW_LINES);
101100803e56STom N Harris        }else{
101200803e56STom N Harris            $stopwords = array();
101300803e56STom N Harris        }
101400803e56STom N Harris    }
101500803e56STom N Harris    return $stopwords;
101600803e56STom N Harris}
101700803e56STom N Harris
101800803e56STom N Harris/**
101900803e56STom N Harris * Adds/updates the search index for the given page
102000803e56STom N Harris *
102100803e56STom N Harris * Locking is handled internally.
102200803e56STom N Harris *
102300803e56STom N Harris * @param string        $page   name of the page to index
10249b41be24STom N Harris * @param boolean       $verbose    print status messages
102500803e56STom N Harris * @return boolean              the function completed successfully
102600803e56STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
102700803e56STom N Harris */
10289b41be24STom N Harrisfunction idx_addPage($page, $verbose=false) {
10299b41be24STom N Harris    // check if indexing needed
10309b41be24STom N Harris    $idxtag = metaFN($page,'.indexed');
10319b41be24STom N Harris    if(@file_exists($idxtag)){
10329b41be24STom N Harris        if(trim(io_readFile($idxtag)) == idx_get_version()){
10339b41be24STom N Harris            $last = @filemtime($idxtag);
10349b41be24STom N Harris            if($last > @filemtime(wikiFN($ID))){
10359b41be24STom N Harris                if ($verbose) print("Indexer: index for $page up to date".DOKU_LF);
10369b41be24STom N Harris                return false;
10379b41be24STom N Harris            }
10389b41be24STom N Harris        }
10399b41be24STom N Harris    }
10409b41be24STom N Harris
1041bbc85ee4STom N Harris    if (!page_exists($page)) {
1042bbc85ee4STom N Harris        if (!@file_exists($idxtag)) {
1043bbc85ee4STom N Harris            if ($verbose) print("Indexer: $page does not exist, ignoring".DOKU_LF);
1044bbc85ee4STom N Harris            return false;
1045bbc85ee4STom N Harris        }
1046bbc85ee4STom N Harris        $Indexer = idx_get_indexer();
1047bbc85ee4STom N Harris        $result = $Indexer->deletePage($page);
1048bbc85ee4STom N Harris        if ($result === "locked") {
1049bbc85ee4STom N Harris            if ($verbose) print("Indexer: locked".DOKU_LF);
1050bbc85ee4STom N Harris            return false;
1051bbc85ee4STom N Harris        }
1052bbc85ee4STom N Harris        @unlink($idxtag);
1053bbc85ee4STom N Harris        return $result;
1054bbc85ee4STom N Harris    }
1055bbc85ee4STom N Harris    $indexenabled = p_get_metadata($page, 'internal index', false);
1056bbc85ee4STom N Harris    if ($indexenabled === false) {
1057bbc85ee4STom N Harris        $result = false;
1058bbc85ee4STom N Harris        if (@file_exists($idxtag)) {
1059bbc85ee4STom N Harris            $Indexer = idx_get_indexer();
1060bbc85ee4STom N Harris            $result = $Indexer->deletePage($page);
1061bbc85ee4STom N Harris            if ($result === "locked") {
1062bbc85ee4STom N Harris                if ($verbose) print("Indexer: locked".DOKU_LF);
1063bbc85ee4STom N Harris                return false;
1064bbc85ee4STom N Harris            }
1065bbc85ee4STom N Harris            @unlink($idxtag);
1066bbc85ee4STom N Harris        }
1067bbc85ee4STom N Harris        if ($verbose) print("Indexer: index disabled for $page".DOKU_LF);
1068bbc85ee4STom N Harris        return $result;
1069bbc85ee4STom N Harris    }
1070bbc85ee4STom N Harris
107100803e56STom N Harris    $body = '';
107200803e56STom N Harris    $data = array($page, $body);
107300803e56STom N Harris    $evt = new Doku_Event('INDEXER_PAGE_ADD', $data);
107400803e56STom N Harris    if ($evt->advise_before()) $data[1] = $data[1] . " " . rawWiki($page);
107500803e56STom N Harris    $evt->advise_after();
107600803e56STom N Harris    unset($evt);
107700803e56STom N Harris    list($page,$body) = $data;
107800803e56STom N Harris
10799b41be24STom N Harris    $Indexer = idx_get_indexer();
10809b41be24STom N Harris    $result = $Indexer->addPageWords($page, $body);
1081e1e1a7e0SMichael Hamann    if ($result === "locked") {
10829b41be24STom N Harris        if ($verbose) print("Indexer: locked".DOKU_LF);
10839b41be24STom N Harris        return false;
10849b41be24STom N Harris    }
1085320f489aSMichael Hamann
1086320f489aSMichael Hamann    if ($result) {
1087320f489aSMichael Hamann        $data = array('page' => $page, 'metadata' => array());
1088320f489aSMichael Hamann
1089bbc85ee4STom N Harris        $data['metadata']['title'] = p_get_metadata($page, 'title', false);
1090bbc85ee4STom N Harris        if (($references = p_get_metadata($page, 'relation references', false)) !== null)
1091320f489aSMichael Hamann            $data['metadata']['relation_references'] = array_keys($references);
1092320f489aSMichael Hamann
1093320f489aSMichael Hamann        $evt = new Doku_Event('INDEXER_METADATA_INDEX', $data);
1094320f489aSMichael Hamann        if ($evt->advise_before()) {
1095320f489aSMichael Hamann            $result = $Indexer->addMetaKeys($page, $data['metadata']);
1096320f489aSMichael Hamann            if ($result === "locked") {
1097320f489aSMichael Hamann                if ($verbose) print("Indexer: locked".DOKU_LF);
1098320f489aSMichael Hamann                return false;
1099320f489aSMichael Hamann            }
1100320f489aSMichael Hamann        }
1101320f489aSMichael Hamann        $evt->advise_after();
1102320f489aSMichael Hamann        unset($evt);
1103320f489aSMichael Hamann    }
1104320f489aSMichael Hamann
11059b41be24STom N Harris    if ($result)
11069b41be24STom N Harris        io_saveFile(metaFN($page,'.indexed'), idx_get_version());
11079b41be24STom N Harris    if ($verbose) {
11089b41be24STom N Harris        print("Indexer: finished".DOKU_LF);
11099b41be24STom N Harris        return true;
11109b41be24STom N Harris    }
11119b41be24STom N Harris    return $result;
111200803e56STom N Harris}
111300803e56STom N Harris
111400803e56STom N Harris/**
111500803e56STom N Harris * Find tokens in the fulltext index
111600803e56STom N Harris *
111700803e56STom N Harris * Takes an array of words and will return a list of matching
111800803e56STom N Harris * pages for each one.
1119488dd6ceSAndreas Gohr *
112063773904SAndreas Gohr * Important: No ACL checking is done here! All results are
112163773904SAndreas Gohr *            returned, regardless of permissions
112263773904SAndreas Gohr *
11239b41be24STom N Harris * @param arrayref      $words  list of words to search for
112400803e56STom N Harris * @return array                list of pages found, associated with the search terms
1125488dd6ceSAndreas Gohr */
11269b41be24STom N Harrisfunction idx_lookup(&$words) {
11279b41be24STom N Harris    $Indexer = idx_get_indexer();
112800803e56STom N Harris    return $Indexer->lookup($words);
1129488dd6ceSAndreas Gohr}
1130488dd6ceSAndreas Gohr
1131488dd6ceSAndreas Gohr/**
113200803e56STom N Harris * Split a string into tokens
1133488dd6ceSAndreas Gohr *
1134488dd6ceSAndreas Gohr */
113500803e56STom N Harrisfunction idx_tokenizer($string, $wc=false) {
11369b41be24STom N Harris    $Indexer = idx_get_indexer();
113700803e56STom N Harris    return $Indexer->tokenizer($string, $wc);
1138488dd6ceSAndreas Gohr}
113900803e56STom N Harris
114000803e56STom N Harris/* For compatibility */
1141488dd6ceSAndreas Gohr
1142f5eb7cf0SAndreas Gohr/**
114300803e56STom N Harris * Read the list of words in an index (if it exists).
1144f5eb7cf0SAndreas Gohr *
11454e1bf408STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
1146f5eb7cf0SAndreas Gohr */
114700803e56STom N Harrisfunction idx_getIndex($idx, $suffix) {
11481c07b9e6STom N Harris    global $conf;
114900803e56STom N Harris    $fn = $conf['indexdir'].'/'.$idx.$suffix.'.idx';
115000803e56STom N Harris    if (!@file_exists($fn)) return array();
115100803e56STom N Harris    return file($fn);
115200803e56STom N Harris}
1153f5eb7cf0SAndreas Gohr
115400803e56STom N Harris/**
115500803e56STom N Harris * Get the list of lengths indexed in the wiki.
115600803e56STom N Harris *
115700803e56STom N Harris * Read the index directory or a cache file and returns
115800803e56STom N Harris * a sorted array of lengths of the words used in the wiki.
115900803e56STom N Harris *
116000803e56STom N Harris * @author YoBoY <yoboy.leguesh@gmail.com>
116100803e56STom N Harris */
116200803e56STom N Harrisfunction idx_listIndexLengths() {
116300803e56STom N Harris    global $conf;
116400803e56STom N Harris    // testing what we have to do, create a cache file or not.
116500803e56STom N Harris    if ($conf['readdircache'] == 0) {
116600803e56STom N Harris        $docache = false;
11671c07b9e6STom N Harris    } else {
116800803e56STom N Harris        clearstatcache();
116900803e56STom N Harris        if (@file_exists($conf['indexdir'].'/lengths.idx')
117000803e56STom N Harris        && (time() < @filemtime($conf['indexdir'].'/lengths.idx') + $conf['readdircache'])) {
117100803e56STom N Harris            if (($lengths = @file($conf['indexdir'].'/lengths.idx', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES)) !== false) {
117200803e56STom N Harris                $idx = array();
117300803e56STom N Harris                foreach ($lengths as $length) {
117400803e56STom N Harris                    $idx[] = (int)$length;
117500803e56STom N Harris                }
117600803e56STom N Harris                return $idx;
1177f5eb7cf0SAndreas Gohr            }
11781c07b9e6STom N Harris        }
117900803e56STom N Harris        $docache = true;
118000803e56STom N Harris    }
11814e1bf408STom N Harris
118200803e56STom N Harris    if ($conf['readdircache'] == 0 || $docache) {
118300803e56STom N Harris        $dir = @opendir($conf['indexdir']);
118400803e56STom N Harris        if ($dir === false)
118500803e56STom N Harris            return array();
118600803e56STom N Harris        $idx[] = array();
118700803e56STom N Harris        while (($f = readdir($dir)) !== false) {
118800803e56STom N Harris            if (substr($f, 0, 1) == 'i' && substr($f, -4) == '.idx') {
118900803e56STom N Harris                $i = substr($f, 1, -4);
119000803e56STom N Harris                if (is_numeric($i))
119100803e56STom N Harris                    $idx[] = (int)$i;
119200803e56STom N Harris            }
119300803e56STom N Harris        }
119400803e56STom N Harris        closedir($dir);
119500803e56STom N Harris        sort($idx);
119600803e56STom N Harris        // save this in a file
119700803e56STom N Harris        if ($docache) {
119800803e56STom N Harris            $handle = @fopen($conf['indexdir'].'/lengths.idx', 'w');
119900803e56STom N Harris            @fwrite($handle, implode("\n", $idx));
120000803e56STom N Harris            @fclose($handle);
120100803e56STom N Harris        }
120200803e56STom N Harris        return $idx;
120300803e56STom N Harris    }
120400803e56STom N Harris
120500803e56STom N Harris    return array();
120600803e56STom N Harris}
120700803e56STom N Harris
120800803e56STom N Harris/**
120900803e56STom N Harris * Get the word lengths that have been indexed.
121000803e56STom N Harris *
121100803e56STom N Harris * Reads the index directory and returns an array of lengths
121200803e56STom N Harris * that there are indices for.
121300803e56STom N Harris *
121400803e56STom N Harris * @author YoBoY <yoboy.leguesh@gmail.com>
121500803e56STom N Harris */
121600803e56STom N Harrisfunction idx_indexLengths($filter) {
121700803e56STom N Harris    global $conf;
121800803e56STom N Harris    $idx = array();
121900803e56STom N Harris    if (is_array($filter)) {
122000803e56STom N Harris        // testing if index files exist only
122100803e56STom N Harris        $path = $conf['indexdir']."/i";
122200803e56STom N Harris        foreach ($filter as $key => $value) {
122300803e56STom N Harris            if (@file_exists($path.$key.'.idx'))
122400803e56STom N Harris                $idx[] = $key;
122500803e56STom N Harris        }
1226f5eb7cf0SAndreas Gohr    } else {
122700803e56STom N Harris        $lengths = idx_listIndexLengths();
122800803e56STom N Harris        foreach ($lengths as $key => $length) {
122900803e56STom N Harris            // keep all the values equal or superior
123000803e56STom N Harris            if ((int)$length >= (int)$filter)
123100803e56STom N Harris                $idx[] = $length;
1232f5eb7cf0SAndreas Gohr        }
123300803e56STom N Harris    }
123400803e56STom N Harris    return $idx;
1235f5eb7cf0SAndreas Gohr}
1236f5eb7cf0SAndreas Gohr
123700803e56STom N Harris/**
123800803e56STom N Harris * Clean a name of a key for use as a file name.
123900803e56STom N Harris *
124000803e56STom N Harris * Romanizes non-latin characters, then strips away anything that's
124100803e56STom N Harris * not a letter, number, or underscore.
124200803e56STom N Harris *
124300803e56STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
124400803e56STom N Harris */
124500803e56STom N Harrisfunction idx_cleanName($name) {
124600803e56STom N Harris    $name = utf8_romanize(trim((string)$name));
124700803e56STom N Harris    $name = preg_replace('#[ \./\\:-]+#', '_', $name);
124800803e56STom N Harris    $name = preg_replace('/[^A-Za-z0-9_]/', '', $name);
124900803e56STom N Harris    return strtolower($name);
1250f5eb7cf0SAndreas Gohr}
1251f5eb7cf0SAndreas Gohr
125200803e56STom N Harris//Setup VIM: ex: et ts=4 :
1253