summaryrefslogtreecommitdiff
path: root/trunk/reprap/web/part-lister/framework/collection.php
blob: 65e8ea96c19cbe8f4dd2e2183ce44d1cad855fbd (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?
	class Collection
	{
		private $query;
		private $obj_types;
		private $expiration;
		private $key;
		private $map;
	
		public function __construct($query, $obj_types, $expiration = 0, $key = null)
		{
			$this->query = $query;
			$this->obj_types = $obj_types;
			$this->expiration = $expiration;
		
			if ($key === null)
				$this->key = sha1($query);
			else
				$this->key = $key;
	
			$this->map = db()->getArray($this->query, "{$key}.collection", $expiration);
		}
	
		/**
		* @TODO: fix this to make it work
		*/
		public function implodeMap($type)
		{		 
			if (is_array($this->map))
				return implode(', ', $this->getMap($type));

			return '';
		}
	
		/**
		* @TODO: make this work as well
		*/
		public function getMap($type = null)
		{
			return $this->map;
		}
		
		public function count() 
		{
			if (is_array($this->map))
				return count($this->map);
			else
				return 0;
		}
	
		public function getAll() 
		{
			return $this->buildObjectArray();
		}
	
		public function getRange($start, $end) 
		{
			if (is_array($this->map))
				return $this->buildObjectArray(array_slice($this->map, $start, $end, false));
			else
				return array();
		}
	
		private function buildObjectArray($map = null) 
		{
			if ($map === null)
				$map = $this->map;
			
			if (!is_array($map))
				return array();

			//very simple load...  should be made more advanced.
			$data = array();
			foreach ($map AS $key => $row){
				foreach ($this->obj_types AS $type => $id){
					$data[$key][$type] = new $type($row[$id]);
				}
			}	

			return $data;
		}
	}
?>