File: IndexStore.php

package info (click to toggle)
bamboo 1.2-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 580 kB
  • ctags: 1,338
  • sloc: php: 4,061; makefile: 44; sh: 36
file content (59 lines) | stat: -rw-r--r-- 1,471 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php

#########################################################
# IndexFactory

class IndexFactory {
	function create($configstr) {
		$directory = dirname(__FILE__) . "/indexstores";
		$args = explode(',',$configstr);
		$class = ucfirst($args[0]) . "IndexStore";
		$file = "$directory/$class.php";
		if (!is_file($file))
			die(_("Could not find user storage backend") . ": " . $args[0]);
		require_once($file);
		return new $class(trim($args[1]));
	}
}

#########################################################
# Index

class IndexStore {

	// return true if initialization was successful
	function init() {}
	
	// mode one of 'r' or 'w' for read or write.
	function open($mode) {}
	function close() {}
	
	// these return a list of paths matching the criteria
	function getByKeyword($keyword) {}
	function getByContent($str) {}
	function getByModTime($timestamp) {}
	
	// sets the index info for a page 
	// destroys previous indexes for the page
	function setContent($path, $content) {} 
	function setKeywords($path, $keywords) {} 
	function setModTime($path, $timestamp) {}
	
	// returns the timestamp when a particular page was indexed.
	// returns 0 if not set.
	function getIndexedTime($patb) {}

	// updates the timestamp when we index a page.
	function setIndexedTime($path,$timestamp) {}
	
	// removes all index entries which refer to $path
	function remove($path) {}
	
	// renames $pathold to $pathnew
	function rename($pathold, $pathnew) {}
	
}


return;
?>