MongoQuery.php
14.7 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
<?php
/**
* Created by PhpStorm.
* User: Zip
* Date: 15/6/10
* Time: 下午11:51
*/
namespace Hood\Dao\MongoDb;
class MongoQuery
{
/**
* Enter description here...
*
* @var MongoDB
*/
private $_db;
private $_dbName;
/**
* Enter description here...
*
* @var MongoCollection
*/
private $_collection;
private $_collectionName;
private $_attrs = array();//field1 => array(..), field2 => array(...) ...
private $_results = array();//field => [1|0]
private $_sort = array();//field => [1|-1]
private $_offset = -1;
private $_limit = 0;
private $_conds = array();//field1 => array( '$lt' => value1, .. )
private $_noPk = false;
private $_hints = array();
/**
* 构造查询
*
* @param Mongo $mongo MongoDB连接
* @param string $db 数据库
* @param string $collection 集合
*/
function __construct(Mongo $mongo, $db, $collection)
{
$this->_dbName = $db;
$this->_collectionName = $collection;
$this->_db = $mongo->selectDB($this->_dbName);
$this->_collection = $mongo->selectCollection($this->_dbName, $this->_collectionName);
}
/**
* 指定属性值
*
* @param string|array $nameOrAttrs 属性名或一组属性值
* @param string $value 属性值
* @return $this
*/
function attr($nameOrAttrs, $value = null)
{
if (!is_array($nameOrAttrs)) {
$nameOrAttrs = array($nameOrAttrs => $value);
}
foreach ($nameOrAttrs as $attr => $value) {
if ($attr == "_id" && (!is_object($value) || !($value instanceof \MongoId)) && strlen($attr) == 24) {
$value = new \MongoId($value);
}
if (!isset($this->_attrs[$attr])) {
$this->_attrs[$attr] = array();
}
if (is_array($value)) {
$this->_attrs[$attr] = array_merge($this->_attrs[$attr], array($value));
} else {
$this->_attrs[$attr][] = $value;
}
}
return $this;
}
/**
* 指定返回的结果属性。在当前的mongo版本中(<1.4.x),不能混合使用result()和exclude()
*
* @param string $attr1 第一个属性
* @param ...
* @return $this
*/
function result($attr1 = null)
{
foreach (func_get_args() as $arg) {
if ($arg) {
if (is_array($arg)) {
foreach ($arg as $v) {
$this->_results[$v] = 1;
}
} else if (strstr($arg, ",")) {
foreach (preg_split("/\s*,\s*/", $arg) as $attr) {
$this->_results[$attr] = 1;
}
} else {
$this->_results[$arg] = 1;
}
}
}
return $this;
}
/**
* 指定返回的结果中要排除的属性
*
* @param string $attr1 第一个属性
* @param ...
* @return $this
*/
function exclude($attr1 = null)
{
foreach (func_get_args() as $arg) {
if ($arg) {
if (strstr($arg, ",")) {
foreach (preg_split("/\s*,\s*/", $arg) as $attr) {
$this->_results[$attr] = 0;
}
} else {
$this->_results[$arg] = 0;
}
}
}
return $this;
}
/**
* 设置正排序条件
*
* @param string $attr 需要排序的属性
* @return $this
*/
function asc($attr = "_id")
{
$this->_sort[$attr] = 1;
return $this;
}
/**
* 设置倒排序条件
*
* @param string $attr 需要排序的属性
* @return $this
*/
function desc($attr = "_id")
{
$this->_sort[$attr] = -1;
return $this;
}
/**
* 设置记录开始的位置
*
* @param integer $offset 开始位置
* @return $this
*/
/**
* @param $offset
* @return $this
*/
function offset($offset)
{
$this->_offset = intval($offset);
return $this;
}
/**
* 设置需要查询的记录行数
*
* @param integer $size 行数
* @return $this
*/
function limit($size)
{
$this->_limit = intval($size);
return $this;
}
/**
* 增加查询条件
*
* @param array $cond 查询条件
* @return $this
*/
function cond(array $cond)
{
foreach ($cond as $key => $value) {
$this->_conds[$key] = $value;
}
return $this;
}
/**
* 添加操作符
*
* @param string $attr 属性名
* @param string $operator 操作符,比如$gt, $lt ...
* @param mixed $value 操作符对应的值
* @return $this
*/
function operator($attr, $operator, $value)
{
if (!isset($this->_conds[$attr])) {
$this->_conds[$attr] = array();
}
$this->_conds[$attr][$operator] = $value;
return $this;
}
function gt($attr, $value)
{
return $this->operator($attr, '$gt', $value);
}
function lt($attr, $value)
{
return $this->operator($attr, '$lt', $value);
}
function gte($attr, $value)
{
return $this->operator($attr, '$gte', $value);
}
function lte($attr, $value)
{
return $this->operator($attr, '$lte', $value);
}
/**
* 设置不等于(!=)条件
*
* @param string $attr 属性名
* @param mixed $value 和属性比较的值
* @return $this
*/
function ne($attr, $value)
{
return $this->operator($attr, '$ne', $value);
}
function in($attr, array $values)
{
return $this->operator($attr, '$in', $values);
}
function nin($attr, array $values)
{
return $this->operator($attr, '$nin', $values);
}
function mod($attr, $value)
{
return $this->operator($attr, '$mod', $value);
}
function all($attr, $value)
{
return $this->operator($attr, '$all', $value);
}
function contains($attr, $value)
{
return $this->all($attr, '$all', $value);
}
/**
* 限定集合属性的尺寸
*
* @param string $attr 属性名
* @param integer $size 限制的尺寸
* @return $this
*/
function size($attr, $size)
{
return $this->operator($attr, '$size', intval($size));
}
function exists($attr, $bool = true)
{
return $this->operator($attr, '$exists', $bool);
}
function type($attr, $type)
{
return $this->operator($attr, '$type', intval($type));
}
function match($attr, $regexp)
{
return $this->attr($attr, new MongoRegex($regexp));
}
/**
* 分割一个是集合(相当于PHP中的索引数组)的属性值
*
* @param string $attr 属性名
* @param integer $subOffset 开始位置
* @param integer $subLimit 要取出的条数
* @return $this
*/
function slice($attr, $subOffset, $subLimit)
{
$this->_results[$attr]['$slice'] = array(intval($subOffset), intval($subLimit));
return $this;
}
/**
* 使用函数。如果数据较多话,将会非常慢。
*
* @param string $func Javascript函数
* @return $this
*/
function func($func)
{
$this->_conds['$where'] = $func;
return $this;
}
/**
* 设置否是不返回主键(_id)
*
* @param unknown_type $returnPk
* @return $this
*/
function noPk($noPk = true)
{
$this->_noPk = $noPk;
return $this;
}
/**
* 设置查询的主键值
*
* @param string $pk1 主键1
* @param string ...
* @return $this
*/
function id($pk1)
{
foreach (func_get_args() as $arg) {
$this->attr("_id", $arg);
}
return $this;
}
function copy()
{
exit(__METHOD__ . "() to be implemented");
}
/**
* 现有查询条件的组合
*
* @return array
*/
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;
}
/**
* add hints for query
*
* @param unknown_type $hint
* @return $this
*/
function hint($hint)
{
$this->_hints[] = $hint;
return $this;
}
/**
* 取得当前查询的游标
*
* @return \MongoCursor
*/
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;
}
/**
* 查找一行数据,并以一个对象的形式返回
*
* @param string $id 主键_id值
* @return MongoObject
*/
function find($id = null)
{
if (!is_null($id)) {
$this->id($id);
}
$row = $this->findOne();
if (empty($row)) {
return null;
}
$obj = new MongoObject();
$obj->setSource($row);
$obj->setCollection($this->_collection);
$obj->setId($row["_id"]);
return $obj;
}
/**
* 查找一行数据,以数组的形式返回
*
* @param string $id 主键_id值
* @return array
*/
function findOne($id = null)
{
if (!is_null($id)) {
$this->id($id);
}
$this->limit(1);
$all = $this->findAll();
return empty($all) ? array() : $all[0];
}
/**
* 查找一行数据,但只返回ID数据
*
* @param string $id 主键_id值
* @return MongoObject
*/
function findId($id = null)
{
if (!is_null($id)) {
$this->id($id);
}
$this->_results = array();
$this->_results["_id"] = 1;
return $this->find();
}
/**
* 根据请求的参数查询数据
*
* @param string $requestPkName 值为主键值的请求参数
* @return MongoObject
*/
function findx($requestPkName = "id")
{
return $this->find($requestPkName);
}
/**
* 取出所有记录
*
* @param boolean $keepId 是否保留ID的原始状态
* @return array
*/
function findAll($keepId = true)
{
$rets = array();
foreach ($this->cursor() as $value) {
if ($this->_noPk) {
unset($value["_id"]);
} else {
if (!$keepId && isset($value["_id"]) && ($value["_id"] instanceof \MongoId)) {
$value["_id"] = $value["_id"]->__toString();
}
}
$rets[] = $value;
}
return $rets;
}
/**
* 分页
*
* @param array $params 分页参数
* @param string $style 分页样式
* @return RPage
*/
function page(array $params = array(), $style = null)
{
$page = MongoPage::pageWithStyle($style, $params);
$this->offset($page->offset());
$this->limit($page->size());
$page->setRows($this->findAll());
return $page;
}
/**
* 计算符合条件的行数
*
* @param boolean $withLimit limit()/offset()方法是否有效
* @return integer
*/
function count($withLimit = false)
{
return $this->cursor()->count($withLimit);
}
/**
* Insert new record
*
* @param array $attrs attributes of new record
* @param boolean $safe check result
* @return boolean
*/
function insert(array $attrs, $safe = false)
{
$bool = $this->_collection->insert($attrs, array("safe" => $safe));
if ($bool) {
if ($attrs["_id"] instanceof \MongoId) {
Mongo::setLastInsertId($attrs["_id"]->__toString());
} else {
Mongo::setLastInsertId($attrs["_id"]);
}
}
return $bool;
}
/**
* 插入新的行,_id是上一行的ID加1
*
* @param array $attrs 新行的属性集
* @return boolean
*/
function insertNext(array $attrs)
{
$response = $this->_db->execute('function insertObject(o, myCollection) {
var x = db.getCollection(myCollection);
while( 1 ) {
// determine next _id value to try
var c = x.find({},{_id:1}).sort({_id:-1}).limit(1);
var i = c.hasNext() ? c.next()._id + 1 : 1;
o._id = i;
x.insert(o);
var err = db.getLastErrorObj();
if( err && err.code ) {
if( err.code == 11000 /* dup key */ )
continue;
else
print("unexpected error inserting data: " + tojson(err));
}
break;
}
return o._id;
}', array($attrs, $this->_collectionName));
if ($response["ok"]) {
Mongo::setLastInsertId($response["retval"]);
}
return $response["ok"];
}
/**
* 删除符合条件的记录
*
* @return boolean
*/
function delete()
{
return $this->_collection->remove($this->criteria());
}
/**
* 更改或插入新的对象
*
* 在当前驱动下不能正常工作
*
* @param array $obj 新的对象
* @return boolean
*/
function upsert(array $obj)
{
return $this->_collection->update($this->criteria(), $obj, array("upsert" => true, "multiple" => true));
}
/**
* 批量插入一组新的数据
*
* @param array $array 每一个元素包含一个要插入的行
* @return boolean
*/
function batchInsert(array $array)
{
return $this->_collection->batchInsert($array);
}
/**
* 当前操作的集合
*
* @return MongoCollection
*/
function collection()
{
return $this->_collection;
}
/**
* 当前操作的数据库
*
* @return MongoDB
*/
function db()
{
return $this->_db;
}
}