xref: /dokuwiki/inc/indexer.php (revision e5e503830f067ce7305e22eac58c78c2f4a007d2)
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>
7b4ce25e9SAndreas Gohr */
8b4ce25e9SAndreas Gohr
9fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.');
10b4ce25e9SAndreas Gohr
1133815ce2SChris Smith// set the minimum token length to use in the index (note, this doesn't apply to numeric tokens)
12d3fb3219SAndreas Gohrif (!defined('IDX_MINWORDLENGTH')) define('IDX_MINWORDLENGTH',2);
1333815ce2SChris Smith
1493a60ad2SAndreas Gohr// Asian characters are handled as words. The following regexp defines the
1593a60ad2SAndreas Gohr// Unicode-Ranges for Asian characters
1693a60ad2SAndreas Gohr// Ranges taken from http://en.wikipedia.org/wiki/Unicode_block
1793a60ad2SAndreas Gohr// I'm no language expert. If you think some ranges are wrongly chosen or
1893a60ad2SAndreas Gohr// a range is missing, please contact me
19d5b23302STom N Harrisdefine('IDX_ASIAN1','[\x{0E00}-\x{0E7F}]'); // Thai
20d5b23302STom N Harrisdefine('IDX_ASIAN2','['.
21d5b23302STom N Harris                   '\x{2E80}-\x{3040}'.  // CJK -> Hangul
22d5b23302STom N Harris                   '\x{309D}-\x{30A0}'.
23a0c5c349STom N Harris                   '\x{30FD}-\x{31EF}\x{3200}-\x{D7AF}'.
2493a60ad2SAndreas Gohr                   '\x{F900}-\x{FAFF}'.  // CJK Compatibility Ideographs
2593a60ad2SAndreas Gohr                   '\x{FE30}-\x{FE4F}'.  // CJK Compatibility Forms
2693a60ad2SAndreas Gohr                   ']');
27d5b23302STom N Harrisdefine('IDX_ASIAN3','['.                // Hiragana/Katakana (can be two characters)
28d5b23302STom N Harris                   '\x{3042}\x{3044}\x{3046}\x{3048}'.
29d5b23302STom N Harris                   '\x{304A}-\x{3062}\x{3064}-\x{3082}'.
30d5b23302STom N Harris                   '\x{3084}\x{3086}\x{3088}-\x{308D}'.
31d5b23302STom N Harris                   '\x{308F}-\x{3094}'.
32d5b23302STom N Harris                   '\x{30A2}\x{30A4}\x{30A6}\x{30A8}'.
33d5b23302STom N Harris                   '\x{30AA}-\x{30C2}\x{30C4}-\x{30E2}'.
34d5b23302STom N Harris                   '\x{30E4}\x{30E6}\x{30E8}-\x{30ED}'.
35d5b23302STom N Harris                   '\x{30EF}-\x{30F4}\x{30F7}-\x{30FA}'.
36d5b23302STom N Harris                   ']['.
37d5b23302STom N Harris                   '\x{3041}\x{3043}\x{3045}\x{3047}\x{3049}'.
38d5b23302STom N Harris                   '\x{3063}\x{3083}\x{3085}\x{3087}\x{308E}\x{3095}-\x{309C}'.
39d5b23302STom N Harris                   '\x{30A1}\x{30A3}\x{30A5}\x{30A7}\x{30A9}'.
40d5b23302STom N Harris                   '\x{30C3}\x{30E3}\x{30E5}\x{30E7}\x{30EE}\x{30F5}\x{30F6}\x{30FB}\x{30FC}'.
41d5b23302STom N Harris                   '\x{31F0}-\x{31FF}'.
42d5b23302STom N Harris                   ']?');
43699b8a0bSAndreas Gohrdefine('IDX_ASIAN', '(?:'.IDX_ASIAN1.'|'.IDX_ASIAN2.'|'.IDX_ASIAN3.')');
4493a60ad2SAndreas Gohr
45b4ce25e9SAndreas Gohr/**
46d5b23302STom N Harris * Measure the length of a string.
47d5b23302STom N Harris * Differs from strlen in handling of asian characters.
48d5b23302STom N Harris *
49d5b23302STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
50d5b23302STom N Harris */
51d5b23302STom N Harrisfunction wordlen($w){
52d5b23302STom N Harris    $l = strlen($w);
53d5b23302STom N Harris    // If left alone, all chinese "words" will get put into w3.idx
54d5b23302STom N Harris    // So the "length" of a "word" is faked
55d5b23302STom N Harris    if(preg_match('/'.IDX_ASIAN2.'/u',$w))
56d5b23302STom N Harris        $l += ord($w) - 0xE1;  // Lead bytes from 0xE2-0xEF
57d5b23302STom N Harris    return $l;
58d5b23302STom N Harris}
59d5b23302STom N Harris
60d5b23302STom N Harris/**
61579b0f7eSTNHarris * Write a list of strings to an index file.
62579b0f7eSTNHarris *
63579b0f7eSTNHarris * @author Tom N Harris <tnharris@whoopdedo.org>
64579b0f7eSTNHarris */
65b6344591STom N Harrisfunction idx_saveIndex($pre, $wlen, &$idx){
66579b0f7eSTNHarris    global $conf;
67579b0f7eSTNHarris    $fn = $conf['indexdir'].'/'.$pre.$wlen;
68579b0f7eSTNHarris    $fh = @fopen($fn.'.tmp','w');
69579b0f7eSTNHarris    if(!$fh) return false;
7006af2d03SMichael Hamann    fwrite($fh,join('', $idx));
71579b0f7eSTNHarris    fclose($fh);
72c66972f2SAdrian Lang    if(isset($conf['fperm'])) chmod($fn.'.tmp', $conf['fperm']);
73579b0f7eSTNHarris    io_rename($fn.'.tmp', $fn.'.idx');
74579b0f7eSTNHarris    return true;
75579b0f7eSTNHarris}
76579b0f7eSTNHarris
77579b0f7eSTNHarris/**
78dd35e9c9SAndreas Gohr * Append a given line to an index file.
79dd35e9c9SAndreas Gohr *
80dd35e9c9SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
81dd35e9c9SAndreas Gohr */
82dd35e9c9SAndreas Gohrfunction idx_appendIndex($pre, $wlen, $line){
83dd35e9c9SAndreas Gohr    global $conf;
84dd35e9c9SAndreas Gohr    $fn = $conf['indexdir'].'/'.$pre.$wlen;
85dd35e9c9SAndreas Gohr    $fh = @fopen($fn.'.idx','a');
86dd35e9c9SAndreas Gohr    if(!$fh) return false;
87dd35e9c9SAndreas Gohr    fwrite($fh,$line);
88dd35e9c9SAndreas Gohr    fclose($fh);
89dd35e9c9SAndreas Gohr    return true;
90dd35e9c9SAndreas Gohr}
91dd35e9c9SAndreas Gohr
92dd35e9c9SAndreas Gohr/**
93579b0f7eSTNHarris * Read the list of words in an index (if it exists).
94579b0f7eSTNHarris *
95579b0f7eSTNHarris * @author Tom N Harris <tnharris@whoopdedo.org>
96579b0f7eSTNHarris */
97579b0f7eSTNHarrisfunction idx_getIndex($pre, $wlen){
98579b0f7eSTNHarris    global $conf;
99579b0f7eSTNHarris    $fn = $conf['indexdir'].'/'.$pre.$wlen.'.idx';
100579b0f7eSTNHarris    if(!@file_exists($fn)) return array();
101579b0f7eSTNHarris    return file($fn);
102579b0f7eSTNHarris}
103579b0f7eSTNHarris
104579b0f7eSTNHarris/**
105579b0f7eSTNHarris * Create an empty index file if it doesn't exist yet.
106579b0f7eSTNHarris *
107b6344591STom N Harris * FIXME: This function isn't currently used. It will probably be removed soon.
108b6344591STom N Harris *
109579b0f7eSTNHarris * @author Tom N Harris <tnharris@whoopdedo.org>
110579b0f7eSTNHarris */
111579b0f7eSTNHarrisfunction idx_touchIndex($pre, $wlen){
112579b0f7eSTNHarris    global $conf;
113579b0f7eSTNHarris    $fn = $conf['indexdir'].'/'.$pre.$wlen.'.idx';
114579b0f7eSTNHarris    if(!@file_exists($fn)){
115579b0f7eSTNHarris        touch($fn);
116579b0f7eSTNHarris        if($conf['fperm']) chmod($fn, $conf['fperm']);
117579b0f7eSTNHarris    }
118579b0f7eSTNHarris}
119579b0f7eSTNHarris
120579b0f7eSTNHarris/**
121b6344591STom N Harris * Read a line ending with \n.
122b6344591STom N Harris * Returns false on EOF.
123b6344591STom N Harris *
124b6344591STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
125b6344591STom N Harris */
126b6344591STom N Harrisfunction _freadline($fh) {
127b6344591STom N Harris    if (feof($fh)) return false;
128b6344591STom N Harris    $ln = '';
129b6344591STom N Harris    while (($buf = fgets($fh,4096)) !== false) {
130b6344591STom N Harris        $ln .= $buf;
131b6344591STom N Harris        if (substr($buf,-1) == "\n") break;
132b6344591STom N Harris    }
133b6344591STom N Harris    if ($ln === '') return false;
134b6344591STom N Harris    if (substr($ln,-1) != "\n") $ln .= "\n";
135b6344591STom N Harris    return $ln;
136b6344591STom N Harris}
137b6344591STom N Harris
138b6344591STom N Harris/**
139b6344591STom N Harris * Write a line to an index file.
140b6344591STom N Harris *
141b6344591STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
142b6344591STom N Harris */
143b6344591STom N Harrisfunction idx_saveIndexLine($pre, $wlen, $idx, $line){
144b6344591STom N Harris    global $conf;
145b6344591STom N Harris    if(substr($line,-1) != "\n") $line .= "\n";
146b6344591STom N Harris    $fn = $conf['indexdir'].'/'.$pre.$wlen;
147b6344591STom N Harris    $fh = @fopen($fn.'.tmp','w');
148b6344591STom N Harris    if(!$fh) return false;
149b6344591STom N Harris    $ih = @fopen($fn.'.idx','r');
150b6344591STom N Harris    if ($ih) {
151b6344591STom N Harris        $ln = -1;
152037b5573SMichael Hamann        while (($curline = fgets($ih)) !== false) {
153b6344591STom N Harris            if (++$ln == $idx) {
154b6344591STom N Harris                fwrite($fh, $line);
155b6344591STom N Harris            } else {
156b6344591STom N Harris                fwrite($fh, $curline);
157b6344591STom N Harris            }
158b6344591STom N Harris        }
159b6344591STom N Harris        if ($idx > $ln) {
160b6344591STom N Harris            fwrite($fh,$line);
161b6344591STom N Harris        }
162b6344591STom N Harris        fclose($ih);
163b6344591STom N Harris    } else {
164b6344591STom N Harris        fwrite($fh,$line);
165b6344591STom N Harris    }
166b6344591STom N Harris    fclose($fh);
167b6344591STom N Harris    if($conf['fperm']) chmod($fn.'.tmp', $conf['fperm']);
168b6344591STom N Harris    io_rename($fn.'.tmp', $fn.'.idx');
169b6344591STom N Harris    return true;
170b6344591STom N Harris}
171b6344591STom N Harris
172b6344591STom N Harris/**
173b6344591STom N Harris * Read a single line from an index (if it exists).
174b6344591STom N Harris *
175b6344591STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
176b6344591STom N Harris */
177b6344591STom N Harrisfunction idx_getIndexLine($pre, $wlen, $idx){
178b6344591STom N Harris    global $conf;
179b6344591STom N Harris    $fn = $conf['indexdir'].'/'.$pre.$wlen.'.idx';
180b6344591STom N Harris    if(!@file_exists($fn)) return '';
181b6344591STom N Harris    $fh = @fopen($fn,'r');
182b6344591STom N Harris    if(!$fh) return '';
183b6344591STom N Harris    $ln = -1;
184037b5573SMichael Hamann    while (($line = fgets($fh)) !== false) {
185b6344591STom N Harris        if (++$ln == $idx) break;
186b6344591STom N Harris    }
187b6344591STom N Harris    fclose($fh);
188b6344591STom N Harris    return "$line";
189b6344591STom N Harris}
190b6344591STom N Harris
191b6344591STom N Harris/**
19244ca0adfSAndreas Gohr * Split a page into words
19344ca0adfSAndreas Gohr *
194c9db30f9SAndreas Gohr * Returns an array of word counts, false if an error occurred.
195579b0f7eSTNHarris * Array is keyed on the word length, then the word index.
19644ca0adfSAndreas Gohr *
19744ca0adfSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
19817f42b01SChris Smith * @author Christopher Smith <chris@jalakai.co.uk>
199b4ce25e9SAndreas Gohr */
20044ca0adfSAndreas Gohrfunction idx_getPageWords($page){
20144ca0adfSAndreas Gohr    global $conf;
2027367b368SAndreas Gohr    $swfile   = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt';
2037367b368SAndreas Gohr    if(@file_exists($swfile)){
2047367b368SAndreas Gohr        $stopwords = file($swfile);
2057367b368SAndreas Gohr    }else{
2067367b368SAndreas Gohr        $stopwords = array();
2077367b368SAndreas Gohr    }
20844ca0adfSAndreas Gohr
209a6a30c1aSEsther Brunner    $body = '';
21015018435SAndreas Gohr    $data = array($page, $body);
21115018435SAndreas Gohr    $evt = new Doku_Event('INDEXER_PAGE_ADD', $data);
21215018435SAndreas Gohr    if ($evt->advise_before()) $data[1] .= rawWiki($page);
213a6a30c1aSEsther Brunner    $evt->advise_after();
214a6a30c1aSEsther Brunner    unset($evt);
215a6a30c1aSEsther Brunner
21615018435SAndreas Gohr    list($page,$body) = $data;
21715018435SAndreas Gohr
21817f42b01SChris Smith    $body   = strtr($body, "\r\n\t", '   ');
21917f42b01SChris Smith    $tokens = explode(' ', $body);
22017f42b01SChris Smith    $tokens = array_count_values($tokens);   // count the frequency of each token
22117f42b01SChris Smith
2226b06b652Schris    // ensure the deaccented or romanised page names of internal links are added to the token array
2236b06b652Schris    // (this is necessary for the backlink function -- there maybe a better way!)
2246b06b652Schris    if ($conf['deaccent']) {
2256b06b652Schris        $links = p_get_metadata($page,'relation references');
2266b06b652Schris
2273fc667cfSchris        if (!empty($links)) {
2286b06b652Schris            $tmp = join(' ',array_keys($links));                // make a single string
2296b06b652Schris            $tmp = strtr($tmp, ':', ' ');                       // replace namespace separator with a space
2306b06b652Schris            $link_tokens = array_unique(explode(' ', $tmp));    // break into tokens
2316b06b652Schris
2326b06b652Schris            foreach ($link_tokens as $link_token) {
2336b06b652Schris                if (isset($tokens[$link_token])) continue;
2346b06b652Schris                $tokens[$link_token] = 1;
2356b06b652Schris            }
2366b06b652Schris        }
2373fc667cfSchris    }
2386b06b652Schris
23917f42b01SChris Smith    $words = array();
24017f42b01SChris Smith    foreach ($tokens as $word => $count) {
241579b0f7eSTNHarris        $arr = idx_tokenizer($word,$stopwords);
24217f42b01SChris Smith        $arr = array_count_values($arr);
24317f42b01SChris Smith        foreach ($arr as $w => $c) {
244d5b23302STom N Harris            $l = wordlen($w);
245579b0f7eSTNHarris            if(isset($words[$l])){
246b2bc63f0SAndreas Gohr                $words[$l][$w] = $c * $count + (isset($words[$l][$w]) ? $words[$l][$w] : 0);
24717f42b01SChris Smith            }else{
248579b0f7eSTNHarris                $words[$l] = array($w => $c * $count);
249579b0f7eSTNHarris            }
25017f42b01SChris Smith        }
25117f42b01SChris Smith    }
25217f42b01SChris Smith
253579b0f7eSTNHarris    // arrive here with $words = array(wordlen => array(word => frequency))
254b4ce25e9SAndreas Gohr
255*e5e50383SMichael Hamann    $word_idx_modified = false;
256*e5e50383SMichael Hamann
257b4ce25e9SAndreas Gohr    $index = array(); //resulting index
258579b0f7eSTNHarris    foreach (array_keys($words) as $wlen){
259579b0f7eSTNHarris        $word_idx = idx_getIndex('w',$wlen);
260579b0f7eSTNHarris        foreach ($words[$wlen] as $word => $freq) {
26144ca0adfSAndreas Gohr            $wid = array_search("$word\n",$word_idx);
26244ca0adfSAndreas Gohr            if(!is_int($wid)){
263d5b23302STom N Harris                $wid = count($word_idx);
26444ca0adfSAndreas Gohr                $word_idx[] = "$word\n";
265*e5e50383SMichael Hamann                $word_idx_modified = true;
266b4ce25e9SAndreas Gohr            }
267579b0f7eSTNHarris            if(!isset($index[$wlen]))
268579b0f7eSTNHarris                $index[$wlen] = array();
269579b0f7eSTNHarris            $index[$wlen][$wid] = $freq;
27044ca0adfSAndreas Gohr        }
27144ca0adfSAndreas Gohr
27244ca0adfSAndreas Gohr        // save back word index
273*e5e50383SMichael Hamann        if($word_idx_modified && !idx_saveIndex('w',$wlen,$word_idx)){
274579b0f7eSTNHarris            trigger_error("Failed to write word index", E_USER_ERROR);
27544ca0adfSAndreas Gohr            return false;
27644ca0adfSAndreas Gohr        }
277579b0f7eSTNHarris    }
278b4ce25e9SAndreas Gohr
279b4ce25e9SAndreas Gohr    return $index;
280b4ce25e9SAndreas Gohr}
281b4ce25e9SAndreas Gohr
28244ca0adfSAndreas Gohr/**
28344ca0adfSAndreas Gohr * Adds/updates the search for the given page
28444ca0adfSAndreas Gohr *
28544ca0adfSAndreas Gohr * This is the core function of the indexer which does most
28644ca0adfSAndreas Gohr * of the work. This function needs to be called with proper
28744ca0adfSAndreas Gohr * locking!
28844ca0adfSAndreas Gohr *
28944ca0adfSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
29044ca0adfSAndreas Gohr */
29144ca0adfSAndreas Gohrfunction idx_addPage($page){
29244ca0adfSAndreas Gohr    global $conf;
293b4ce25e9SAndreas Gohr
294488dd6ceSAndreas Gohr    // load known documents
295579b0f7eSTNHarris    $page_idx = idx_getIndex('page','');
29644ca0adfSAndreas Gohr
29744ca0adfSAndreas Gohr    // get page id (this is the linenumber in page.idx)
29844ca0adfSAndreas Gohr    $pid = array_search("$page\n",$page_idx);
29944ca0adfSAndreas Gohr    if(!is_int($pid)){
300c5418046SAndreas Gohr        $pid = count($page_idx);
30144ca0adfSAndreas Gohr        // page was new - write back
302dd35e9c9SAndreas Gohr        if (!idx_appendIndex('page','',"$page\n")){
303d5b23302STom N Harris            trigger_error("Failed to write page index", E_USER_ERROR);
304579b0f7eSTNHarris            return false;
30544ca0adfSAndreas Gohr        }
306d5b23302STom N Harris    }
307dd35e9c9SAndreas Gohr    unset($page_idx); // free memory
30844ca0adfSAndreas Gohr
30980423ab6SAdrian Lang    idx_saveIndexLine('title', '', $pid, p_get_first_heading($page, false));
31080423ab6SAdrian Lang
311a0c5c349STom N Harris    $pagewords = array();
31244ca0adfSAndreas Gohr    // get word usage in page
31344ca0adfSAndreas Gohr    $words = idx_getPageWords($page);
31444ca0adfSAndreas Gohr    if($words === false) return false;
31544ca0adfSAndreas Gohr
316a0c5c349STom N Harris    if(!empty($words)) {
317579b0f7eSTNHarris        foreach(array_keys($words) as $wlen){
318d5b23302STom N Harris            $index = idx_getIndex('i',$wlen);
319d5b23302STom N Harris            foreach($words[$wlen] as $wid => $freq){
320d5b23302STom N Harris                if($wid<count($index)){
321d5b23302STom N Harris                    $index[$wid] = idx_updateIndexLine($index[$wid],$pid,$freq);
322d5b23302STom N Harris                }else{
323d5b23302STom N Harris                    // New words **should** have been added in increasing order
324d5b23302STom N Harris                    // starting with the first unassigned index.
325d5b23302STom N Harris                    // If someone can show how this isn't true, then I'll need to sort
326d5b23302STom N Harris                    // or do something special.
327d5b23302STom N Harris                    $index[$wid] = idx_updateIndexLine('',$pid,$freq);
328d5b23302STom N Harris                }
329a0c5c349STom N Harris                $pagewords[] = "$wlen*$wid";
330d5b23302STom N Harris            }
331d5b23302STom N Harris            // save back word index
332d5b23302STom N Harris            if(!idx_saveIndex('i',$wlen,$index)){
333d5b23302STom N Harris                trigger_error("Failed to write index", E_USER_ERROR);
33444ca0adfSAndreas Gohr                return false;
33544ca0adfSAndreas Gohr            }
336579b0f7eSTNHarris        }
337a0c5c349STom N Harris    }
338a0c5c349STom N Harris
339a0c5c349STom N Harris    // Remove obsolete index entries
340b6344591STom N Harris    $pageword_idx = trim(idx_getIndexLine('pageword','',$pid));
341b6344591STom N Harris    if ($pageword_idx !== '') {
342b6344591STom N Harris        $oldwords = explode(':',$pageword_idx);
343a0c5c349STom N Harris        $delwords = array_diff($oldwords, $pagewords);
344b6344591STom N Harris        $upwords = array();
345a0c5c349STom N Harris        foreach ($delwords as $word) {
346a0c5c349STom N Harris            if($word=='') continue;
347a0c5c349STom N Harris            list($wlen,$wid) = explode('*',$word);
348a0c5c349STom N Harris            $wid = (int)$wid;
349b6344591STom N Harris            $upwords[$wlen][] = $wid;
350b6344591STom N Harris        }
351b6344591STom N Harris        foreach ($upwords as $wlen => $widx) {
352a0c5c349STom N Harris            $index = idx_getIndex('i',$wlen);
353b6344591STom N Harris            foreach ($widx as $wid) {
354a0c5c349STom N Harris                $index[$wid] = idx_updateIndexLine($index[$wid],$pid,0);
355b6344591STom N Harris            }
356a0c5c349STom N Harris            idx_saveIndex('i',$wlen,$index);
357a0c5c349STom N Harris        }
358b6344591STom N Harris    }
359a0c5c349STom N Harris    // Save the reverse index
360b6344591STom N Harris    $pageword_idx = join(':',$pagewords)."\n";
361b6344591STom N Harris    if(!idx_saveIndexLine('pageword','',$pid,$pageword_idx)){
362a0c5c349STom N Harris        trigger_error("Failed to write word index", E_USER_ERROR);
363a0c5c349STom N Harris        return false;
364a0c5c349STom N Harris    }
365579b0f7eSTNHarris
366579b0f7eSTNHarris    return true;
36744ca0adfSAndreas Gohr}
36844ca0adfSAndreas Gohr
36944ca0adfSAndreas Gohr/**
37044ca0adfSAndreas Gohr * Write a new index line to the filehandle
37144ca0adfSAndreas Gohr *
37244ca0adfSAndreas Gohr * This function writes an line for the index file to the
37344ca0adfSAndreas Gohr * given filehandle. It removes the given document from
37444ca0adfSAndreas Gohr * the given line and readds it when $count is >0.
37544ca0adfSAndreas Gohr *
376d5b23302STom N Harris * @deprecated - see idx_updateIndexLine
37744ca0adfSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
37844ca0adfSAndreas Gohr */
37944ca0adfSAndreas Gohrfunction idx_writeIndexLine($fh,$line,$pid,$count){
380d5b23302STom N Harris    fwrite($fh,idx_updateIndexLine($line,$pid,$count));
381d5b23302STom N Harris}
38244ca0adfSAndreas Gohr
383d5b23302STom N Harris/**
384d5b23302STom N Harris * Modify an index line with new information
385d5b23302STom N Harris *
386d5b23302STom N Harris * This returns a line of the index. It removes the
387d5b23302STom N Harris * given document from the line and readds it if
388d5b23302STom N Harris * $count is >0.
389d5b23302STom N Harris *
390d5b23302STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
391d5b23302STom N Harris * @author Andreas Gohr <andi@splitbrain.org>
392d5b23302STom N Harris */
393d5b23302STom N Harrisfunction idx_updateIndexLine($line,$pid,$count){
394d5b23302STom N Harris    $line = trim($line);
395d5b23302STom N Harris    $updated = array();
39644ca0adfSAndreas Gohr    if($line != ''){
39744ca0adfSAndreas Gohr        $parts = explode(':',$line);
39844ca0adfSAndreas Gohr        // remove doc from given line
39944ca0adfSAndreas Gohr        foreach($parts as $part){
40044ca0adfSAndreas Gohr            if($part == '') continue;
40144ca0adfSAndreas Gohr            list($doc,$cnt) = explode('*',$part);
40244ca0adfSAndreas Gohr            if($doc != $pid){
403d5b23302STom N Harris                $updated[] = $part;
40444ca0adfSAndreas Gohr            }
40544ca0adfSAndreas Gohr        }
40644ca0adfSAndreas Gohr    }
40744ca0adfSAndreas Gohr
40844ca0adfSAndreas Gohr    // add doc
40944ca0adfSAndreas Gohr    if ($count){
410d5b23302STom N Harris        $updated[] = "$pid*$count";
41144ca0adfSAndreas Gohr    }
41244ca0adfSAndreas Gohr
413d5b23302STom N Harris    return join(':',$updated)."\n";
41444ca0adfSAndreas Gohr}
415b4ce25e9SAndreas Gohr
416488dd6ceSAndreas Gohr/**
41722952965SYoBoY * Get the list of lenghts indexed in the wiki
41822952965SYoBoY *
41922952965SYoBoY * Read the index directory or a cache file and returns
42022952965SYoBoY * a sorted array of lengths of the words used in the wiki.
42122952965SYoBoY *
42222952965SYoBoY * @author YoBoY <yoboy.leguesh@gmail.com>
42322952965SYoBoY */
42422952965SYoBoYfunction idx_listIndexLengths() {
42522952965SYoBoY    global $conf;
42622952965SYoBoY    // testing what we have to do, create a cache file or not.
42722952965SYoBoY    if ($conf['readdircache'] == 0) {
42822952965SYoBoY        $docache = false;
42922952965SYoBoY    } else {
43022952965SYoBoY        clearstatcache();
43122952965SYoBoY        if (@file_exists($conf['indexdir'].'/lengths.idx') and (time() < @filemtime($conf['indexdir'].'/lengths.idx') + $conf['readdircache'])) {
43222952965SYoBoY            if (($lengths = @file($conf['indexdir'].'/lengths.idx', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES) ) !== false) {
43322952965SYoBoY                $idx = array();
43422952965SYoBoY                foreach ( $lengths as $length) {
43522952965SYoBoY                    $idx[] = (int)$length;
43622952965SYoBoY                }
43722952965SYoBoY                return $idx;
43822952965SYoBoY            }
43922952965SYoBoY        }
44022952965SYoBoY        $docache = true;
44122952965SYoBoY    }
44222952965SYoBoY
44322952965SYoBoY    if ($conf['readdircache'] == 0 or $docache ) {
44422952965SYoBoY        $dir = @opendir($conf['indexdir']);
44522952965SYoBoY        if($dir===false)
44622952965SYoBoY            return array();
44722952965SYoBoY        $idx[] = array();
44822952965SYoBoY        while (($f = readdir($dir)) !== false) {
44922952965SYoBoY            if (substr($f,0,1) == 'i' && substr($f,-4) == '.idx'){
45022952965SYoBoY                $i = substr($f,1,-4);
45122952965SYoBoY                if (is_numeric($i))
45222952965SYoBoY                    $idx[] = (int)$i;
45322952965SYoBoY            }
45422952965SYoBoY        }
45522952965SYoBoY        closedir($dir);
45622952965SYoBoY        sort($idx);
45722952965SYoBoY        // we save this in a file.
45822952965SYoBoY        if ($docache === true) {
45922952965SYoBoY            $handle = @fopen($conf['indexdir'].'/lengths.idx','w');
46022952965SYoBoY            @fwrite($handle, implode("\n",$idx));
46122952965SYoBoY            @fclose($handle);
46222952965SYoBoY        }
46322952965SYoBoY        return $idx;
46422952965SYoBoY    }
46522952965SYoBoY
46622952965SYoBoY    return array();
46722952965SYoBoY}
46822952965SYoBoY
46922952965SYoBoY/**
470579b0f7eSTNHarris * Get the word lengths that have been indexed.
471579b0f7eSTNHarris *
472579b0f7eSTNHarris * Reads the index directory and returns an array of lengths
473579b0f7eSTNHarris * that there are indices for.
474579b0f7eSTNHarris *
47522952965SYoBoY * @author YoBoY <yoboy.leguesh@gmail.com>
476579b0f7eSTNHarris */
477d5b23302STom N Harrisfunction idx_indexLengths(&$filter){
478579b0f7eSTNHarris    global $conf;
479579b0f7eSTNHarris    $idx = array();
480d5b23302STom N Harris    if (is_array($filter)){
48122952965SYoBoY        // testing if index files exists only
48222952965SYoBoY        foreach ($filter as $key => $value) {
48322952965SYoBoY            if (@file_exists($conf['indexdir']."/i$key.idx")) {
48422952965SYoBoY                $idx[] = $key;
485d5b23302STom N Harris            }
486d5b23302STom N Harris        }
487d5b23302STom N Harris    } else {
48822952965SYoBoY        $lengths = idx_listIndexLengths();
48922952965SYoBoY        foreach ( $lengths as $key => $length) {
49022952965SYoBoY            // we keep all the values equal or superior
49122952965SYoBoY            if ((int)$length >= (int)$filter) {
49222952965SYoBoY                $idx[] = $length;
493d5b23302STom N Harris            }
494579b0f7eSTNHarris        }
495579b0f7eSTNHarris    }
496579b0f7eSTNHarris    return $idx;
497579b0f7eSTNHarris}
498579b0f7eSTNHarris
499579b0f7eSTNHarris/**
500d5b23302STom N Harris * Find the the index number of each search term.
501d5b23302STom N Harris *
502adb16d4fSAndreas Gohr * This will group together words that appear in the same index.
503d5b23302STom N Harris * So it should perform better, because it only opens each index once.
504d5b23302STom N Harris * Actually, it's not that great. (in my experience) Probably because of the disk cache.
505d5b23302STom N Harris * And the sorted function does more work, making it slightly slower in some cases.
506d5b23302STom N Harris *
507d5b23302STom N Harris * @param array    $words   The query terms. Words should only contain valid characters,
508d5b23302STom N Harris *                          with a '*' at either the beginning or end of the word (or both)
509d5b23302STom N Harris * @param arrayref $result  Set to word => array("length*id" ...), use this to merge the
510d5b23302STom N Harris *                          index locations with the appropriate query term.
511d5b23302STom N Harris * @return array            Set to length => array(id ...)
512d5b23302STom N Harris *
513d5b23302STom N Harris * @author Tom N Harris <tnharris@whoopdedo.org>
514d5b23302STom N Harris */
515d5b23302STom N Harrisfunction idx_getIndexWordsSorted($words,&$result){
516d5b23302STom N Harris    // parse and sort tokens
517d5b23302STom N Harris    $tokens = array();
518d5b23302STom N Harris    $tokenlength = array();
519d5b23302STom N Harris    $tokenwild = array();
520d5b23302STom N Harris    foreach($words as $word){
521d5b23302STom N Harris        $result[$word] = array();
522d5b23302STom N Harris        $wild = 0;
523d5b23302STom N Harris        $xword = $word;
524d5b23302STom N Harris        $wlen = wordlen($word);
525d5b23302STom N Harris
526d5b23302STom N Harris        // check for wildcards
527d5b23302STom N Harris        if(substr($xword,0,1) == '*'){
528d5b23302STom N Harris            $xword = substr($xword,1);
529d5b23302STom N Harris            $wild |= 1;
530d5b23302STom N Harris            $wlen -= 1;
531d5b23302STom N Harris        }
532d5b23302STom N Harris        if(substr($xword,-1,1) == '*'){
533d5b23302STom N Harris            $xword = substr($xword,0,-1);
534d5b23302STom N Harris            $wild |= 2;
535d5b23302STom N Harris            $wlen -= 1;
536d5b23302STom N Harris        }
53733815ce2SChris Smith        if ($wlen < IDX_MINWORDLENGTH && $wild == 0 && !is_numeric($xword)) continue;
538d5b23302STom N Harris        if(!isset($tokens[$xword])){
539d5b23302STom N Harris            $tokenlength[$wlen][] = $xword;
540d5b23302STom N Harris        }
541d5b23302STom N Harris        if($wild){
542d5b23302STom N Harris            $ptn = preg_quote($xword,'/');
543d5b23302STom N Harris            if(($wild&1) == 0) $ptn = '^'.$ptn;
544d5b23302STom N Harris            if(($wild&2) == 0) $ptn = $ptn.'$';
545d5b23302STom N Harris            $tokens[$xword][] = array($word, '/'.$ptn.'/');
546d5b23302STom N Harris            if(!isset($tokenwild[$xword])) $tokenwild[$xword] = $wlen;
547d5b23302STom N Harris        }else
548d5b23302STom N Harris            $tokens[$xword][] = array($word, null);
549d5b23302STom N Harris    }
550d5b23302STom N Harris    asort($tokenwild);
551d5b23302STom N Harris    // $tokens = array( base word => array( [ query word , grep pattern ] ... ) ... )
552d5b23302STom N Harris    // $tokenlength = array( base word length => base word ... )
553d5b23302STom N Harris    // $tokenwild = array( base word => base word length ... )
554d5b23302STom N Harris
555d5b23302STom N Harris    $length_filter = empty($tokenwild) ? $tokenlength : min(array_keys($tokenlength));
556d5b23302STom N Harris    $indexes_known = idx_indexLengths($length_filter);
557d5b23302STom N Harris    if(!empty($tokenwild)) sort($indexes_known);
558d5b23302STom N Harris    // get word IDs
559d5b23302STom N Harris    $wids = array();
560d5b23302STom N Harris    foreach($indexes_known as $ixlen){
561d5b23302STom N Harris        $word_idx = idx_getIndex('w',$ixlen);
562d5b23302STom N Harris        // handle exact search
563d5b23302STom N Harris        if(isset($tokenlength[$ixlen])){
564d5b23302STom N Harris            foreach($tokenlength[$ixlen] as $xword){
565d5b23302STom N Harris                $wid = array_search("$xword\n",$word_idx);
566d5b23302STom N Harris                if(is_int($wid)){
567d5b23302STom N Harris                    $wids[$ixlen][] = $wid;
568d5b23302STom N Harris                    foreach($tokens[$xword] as $w)
569d5b23302STom N Harris                        $result[$w[0]][] = "$ixlen*$wid";
570d5b23302STom N Harris                }
571d5b23302STom N Harris            }
572d5b23302STom N Harris        }
573d5b23302STom N Harris        // handle wildcard search
574d5b23302STom N Harris        foreach($tokenwild as $xword => $wlen){
575d5b23302STom N Harris            if($wlen >= $ixlen) break;
576d5b23302STom N Harris            foreach($tokens[$xword] as $w){
577d5b23302STom N Harris                if(is_null($w[1])) continue;
578d5b23302STom N Harris                foreach(array_keys(preg_grep($w[1],$word_idx)) as $wid){
579d5b23302STom N Harris                    $wids[$ixlen][] = $wid;
580d5b23302STom N Harris                    $result[$w[0]][] = "$ixlen*$wid";
581d5b23302STom N Harris                }
582d5b23302STom N Harris            }
583d5b23302STom N Harris        }
584d5b23302STom N Harris    }
585d5b23302STom N Harris    return $wids;
586d5b23302STom N Harris}
587d5b23302STom N Harris
588d5b23302STom N Harris/**
589488dd6ceSAndreas Gohr * Lookup words in index
590488dd6ceSAndreas Gohr *
591488dd6ceSAndreas Gohr * Takes an array of word and will return a list of matching
592488dd6ceSAndreas Gohr * documents for each one.
593488dd6ceSAndreas Gohr *
59463773904SAndreas Gohr * Important: No ACL checking is done here! All results are
59563773904SAndreas Gohr *            returned, regardless of permissions
59663773904SAndreas Gohr *
597488dd6ceSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
598488dd6ceSAndreas Gohr */
599488dd6ceSAndreas Gohrfunction idx_lookup($words){
600488dd6ceSAndreas Gohr    global $conf;
601488dd6ceSAndreas Gohr
602488dd6ceSAndreas Gohr    $result = array();
603488dd6ceSAndreas Gohr
604d5b23302STom N Harris    $wids = idx_getIndexWordsSorted($words, $result);
605d5b23302STom N Harris    if(empty($wids)) return array();
606d5b23302STom N Harris
607488dd6ceSAndreas Gohr    // load known words and documents
608579b0f7eSTNHarris    $page_idx = idx_getIndex('page','');
609488dd6ceSAndreas Gohr
610579b0f7eSTNHarris    $docs = array();                          // hold docs found
611579b0f7eSTNHarris    foreach(array_keys($wids) as $wlen){
612579b0f7eSTNHarris        $wids[$wlen] = array_unique($wids[$wlen]);
613d5b23302STom N Harris        $index = idx_getIndex('i',$wlen);
614d5b23302STom N Harris        foreach($wids[$wlen] as $ixid){
615d5b23302STom N Harris            if($ixid < count($index))
616d5b23302STom N Harris                $docs["$wlen*$ixid"] = idx_parseIndexLine($page_idx,$index[$ixid]);
617488dd6ceSAndreas Gohr        }
618488dd6ceSAndreas Gohr    }
619488dd6ceSAndreas Gohr
620ad81d431SAndreas Gohr    // merge found pages into final result array
621ad81d431SAndreas Gohr    $final = array();
622c66972f2SAdrian Lang    foreach($result as $word => $res){
623ad81d431SAndreas Gohr        $final[$word] = array();
624c66972f2SAdrian Lang        foreach($res as $wid){
625ad81d431SAndreas Gohr            $hits = &$docs[$wid];
626ad81d431SAndreas Gohr            foreach ($hits as $hitkey => $hitcnt) {
627c66972f2SAdrian Lang                if (!isset($final[$word][$hitkey])) {
628c66972f2SAdrian Lang                    $final[$word][$hitkey] = $hitcnt;
629c66972f2SAdrian Lang                } else {
630c66972f2SAdrian Lang                    $final[$word][$hitkey] += $hitcnt;
631c66972f2SAdrian Lang                }
632ad81d431SAndreas Gohr            }
633ad81d431SAndreas Gohr        }
634ad81d431SAndreas Gohr    }
635ad81d431SAndreas Gohr    return $final;
636488dd6ceSAndreas Gohr}
637488dd6ceSAndreas Gohr
638488dd6ceSAndreas Gohr/**
639488dd6ceSAndreas Gohr * Returns a list of documents and counts from a index line
640488dd6ceSAndreas Gohr *
641488dd6ceSAndreas Gohr * It omits docs with a count of 0 and pages that no longer
642488dd6ceSAndreas Gohr * exist.
643488dd6ceSAndreas Gohr *
644488dd6ceSAndreas Gohr * @param  array  $page_idx The list of known pages
645488dd6ceSAndreas Gohr * @param  string $line     A line from the main index
646488dd6ceSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
647488dd6ceSAndreas Gohr */
648488dd6ceSAndreas Gohrfunction idx_parseIndexLine(&$page_idx,$line){
649488dd6ceSAndreas Gohr    $result = array();
650488dd6ceSAndreas Gohr
651488dd6ceSAndreas Gohr    $line = trim($line);
652f5eb7cf0SAndreas Gohr    if($line == '') return $result;
653488dd6ceSAndreas Gohr
654488dd6ceSAndreas Gohr    $parts = explode(':',$line);
655488dd6ceSAndreas Gohr    foreach($parts as $part){
656488dd6ceSAndreas Gohr        if($part == '') continue;
657488dd6ceSAndreas Gohr        list($doc,$cnt) = explode('*',$part);
658488dd6ceSAndreas Gohr        if(!$cnt) continue;
659488dd6ceSAndreas Gohr        $doc = trim($page_idx[$doc]);
660488dd6ceSAndreas Gohr        if(!$doc) continue;
661488dd6ceSAndreas Gohr        // make sure the document still exists
662103c256aSChris Smith        if(!page_exists($doc,'',false)) continue;
663488dd6ceSAndreas Gohr
664488dd6ceSAndreas Gohr        $result[$doc] = $cnt;
665488dd6ceSAndreas Gohr    }
666488dd6ceSAndreas Gohr    return $result;
667488dd6ceSAndreas Gohr}
668488dd6ceSAndreas Gohr
669f5eb7cf0SAndreas Gohr/**
670f5eb7cf0SAndreas Gohr * Tokenizes a string into an array of search words
671f5eb7cf0SAndreas Gohr *
672f5eb7cf0SAndreas Gohr * Uses the same algorithm as idx_getPageWords()
673f5eb7cf0SAndreas Gohr *
674ad81d431SAndreas Gohr * @param string   $string     the query as given by the user
675ad81d431SAndreas Gohr * @param arrayref $stopwords  array of stopwords
676ad81d431SAndreas Gohr * @param boolean  $wc         are wildcards allowed?
677f5eb7cf0SAndreas Gohr */
678ad81d431SAndreas Gohrfunction idx_tokenizer($string,&$stopwords,$wc=false){
679f5eb7cf0SAndreas Gohr    $words = array();
6804efb9a42SAndreas Gohr    $wc = ($wc) ? '' : $wc = '\*';
681f5eb7cf0SAndreas Gohr
682f5eb7cf0SAndreas Gohr    if(preg_match('/[^0-9A-Za-z]/u', $string)){
68391bb5faaSAndreas Gohr        // handle asian chars as single words (may fail on older PHP version)
68460c15d7dSAndreas Gohr        $asia = @preg_replace('/('.IDX_ASIAN.')/u',' \1 ',$string);
68591bb5faaSAndreas Gohr        if(!is_null($asia)) $string = $asia; //recover from regexp failure
68693a60ad2SAndreas Gohr
6874efb9a42SAndreas Gohr        $arr = explode(' ', utf8_stripspecials($string,' ','\._\-:'.$wc));
688f5eb7cf0SAndreas Gohr        foreach ($arr as $w) {
68933815ce2SChris Smith            if (!is_numeric($w) && strlen($w) < IDX_MINWORDLENGTH) continue;
690f5eb7cf0SAndreas Gohr            $w = utf8_strtolower($w);
6913cbaa9a4SAndreas Gohr            if($stopwords && is_int(array_search("$w\n",$stopwords))) continue;
692f5eb7cf0SAndreas Gohr            $words[] = $w;
693f5eb7cf0SAndreas Gohr        }
694f5eb7cf0SAndreas Gohr    }else{
695f5eb7cf0SAndreas Gohr        $w = $string;
69633815ce2SChris Smith        if (!is_numeric($w) && strlen($w) < IDX_MINWORDLENGTH) return $words;
697f5eb7cf0SAndreas Gohr        $w = strtolower($w);
698f5eb7cf0SAndreas Gohr        if(is_int(array_search("$w\n",$stopwords))) return $words;
699f5eb7cf0SAndreas Gohr        $words[] = $w;
700f5eb7cf0SAndreas Gohr    }
701f5eb7cf0SAndreas Gohr
702f5eb7cf0SAndreas Gohr    return $words;
703f5eb7cf0SAndreas Gohr}
704f5eb7cf0SAndreas Gohr
705b4ce25e9SAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 :
706