Cursor.php
2.69 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
/**
* Created by PhpStorm.
* User: Zip
* Date: 15/6/13
* Time: 下午4:51
*/
namespace Hood\Dao\MongoDB;
class Cursor
{
/**
* @var \MongoCursor
*/
protected $_cursor;
/**
* @var \MongoCollection
*/
protected $_collection;
/**
* 条件
* @var array
*/
protected $_attrs = array();
protected $_conds = array();
protected $_offset = -1;
protected $_limit = 0;
protected $_sort = array();
protected $_hints = array();
protected $_results = array();
protected function _cursor()
{
$cursor = $this->_collection->find($this->criteria(), $this->_results);
if ($this->_offset >= 0) {
$cursor->skip($this->_offset);
}
if ($this->_limit > 0) {
$cursor->limit($this->_limit);
}
if ($this->_sort) {
$cursor->sort($this->_sort);
}
if (!empty($this->_hints)) {
foreach ($this->_hints as $hint) {
$cursor->hint($hint);
}
}
return $cursor;
}
/**
* 组合查询条件
* @return array
*/
private function criteria()
{
$attrs = $this->_attrs;
foreach ($this->_attrs as $attr => $values) {
if (!empty($values)) {
if (count($values) == 1) {
$attrs[$attr] = $values[0];
} else {
$attrs[$attr]['$in'] = $values;
}
}
}
foreach ($this->_conds as $key => $value) {
$attrs[$key] = $value;
}
return $attrs;
}
public function offset($num)
{
$this->_offset = (int)$num;
return $this;
}
public function limit($num)
{
$this->_limit = (int)$num;
return $this;
}
public function skip($num)
{
$this->_offset = (int)$num;
return $this;
}
public function sort(array $fields)
{
foreach ($fields as $key => $val) {
if (is_string($key)) {
$this->_sort[$key] = $val;
}
}
return $this;
}
/**
* 设置正排序条件
*
* @param string $attr 需要排序的属性
* @return $this
*/
public function asc($attr = "_id")
{
$this->_sort[$attr] = 1;
return $this;
}
/**
* 设置倒排序条件
*
* @param string $attr 需要排序的属性
* @return $this
*/
public function desc($attr = "_id")
{
$this->_sort[$attr] = -1;
return $this;
}
public function hint($hint)
{
$this->_hints[] = $hint;
return $this;
}
}