3 +---------------------------------------------------------------------------------+
4 | Copyright (c) 2010 ActiveMongo |
5 +---------------------------------------------------------------------------------+
6 | Redistribution and use in source and binary forms, with or without |
7 | modification, are permitted provided that the following conditions are met: |
8 | 1. Redistributions of source code must retain the above copyright |
9 | notice, this list of conditions and the following disclaimer. |
11 | 2. Redistributions in binary form must reproduce the above copyright |
12 | notice, this list of conditions and the following disclaimer in the |
13 | documentation and/or other materials provided with the distribution. |
15 | 3. All advertising materials mentioning features or use of this software |
16 | must display the following acknowledgement: |
17 | This product includes software developed by César D. Rodas. |
19 | 4. Neither the name of the César D. Rodas nor the |
20 | names of its contributors may be used to endorse or promote products |
21 | derived from this software without specific prior written permission. |
23 | THIS SOFTWARE IS PROVIDED BY CÉSAR D. RODAS ''AS IS'' AND ANY |
24 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
25 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
26 | DISCLAIMED. IN NO EVENT SHALL CÉSAR D. RODAS BE LIABLE FOR ANY |
27 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
28 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
29 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
30 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
31 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
32 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE |
33 +---------------------------------------------------------------------------------+
34 | Authors: César Rodas <crodas@php.net> |
35 +---------------------------------------------------------------------------------+
38 // array get_document_vars(stdobj $obj) {{{
40 * Simple hack to avoid get private and protected variables
43 * @param bool $include_id
47 function get_document_vars($obj, $include_id=true)
49 $document = get_object_vars($obj);
50 if ($include_id && $obj->getID()) {
51 $document['_id'] = $obj->getID();
60 * Simple ActiveRecord pattern built on top of MongoDB. This class
61 * aims to provide easy iteration, data validation before update,
62 * and efficient update.
64 * @author César D. Rodas <crodas@php.net>
65 * @license PHP License
66 * @package ActiveMongo
70 abstract class ActiveMongo
implements Iterator
, Countable
, ArrayAccess
75 * Current databases objects
81 * Current collections objects
85 private static $_collections;
87 * Current connection to MongoDB
89 * @type MongoConnection
91 private static $_conn;
99 * List of events handlers
103 static private $_events = array();
105 * List of global events handlers
109 static private $_super_events = array();
115 private static $_host;
121 private $_current = array();
127 private $_cursor = null;
129 /* {{{ Silly but useful query abstraction */
130 private $_query = null;
131 private $_sort = null;
134 private $_properties = null;
138 * Current document ID
145 * Tell if the current object
150 private $_cloned = false;
153 // GET CONNECTION CONFIG {{{
155 // string getCollectionName() {{{
157 * Get Collection Name, by default the class name,
158 * but you it can be override at the class itself to give
161 * @return string Collection Name
163 protected function getCollectionName()
165 return strtolower(get_class($this));
169 // string getDatabaseName() {{{
171 * Get Database Name, by default it is used
172 * the db name set by ActiveMong::connect()
174 * @return string DB Name
176 protected function getDatabaseName()
178 if (is_null(self
::$_db)) {
179 throw new MongoException("There is no information about the default DB name");
185 // void install() {{{
189 * This static method iterate over the classes lists,
190 * and execute the setup() method on every ActiveMongo
191 * subclass. You should do this just once.
194 final public static function install()
196 $classes = array_reverse(get_declared_classes());
197 foreach ($classes as $class)
199 if ($class == __CLASS__
) {
202 if (is_subclass_of($class, __CLASS__
)) {
210 // void connection($db, $host) {{{
214 * This method setup parameters to connect to a MongoDB
215 * database. The connection is done when it is needed.
217 * @param string $db Database name
218 * @param string $host Host to connect
222 final public static function connect($db, $host='localhost')
224 self
::$_host = $host;
229 // MongoConnection _getConnection() {{{
233 * Get a valid database connection
235 * @return MongoConnection
237 final protected function _getConnection()
239 if (is_null(self
::$_conn)) {
240 if (is_null(self
::$_host)) {
241 self
::$_host = 'localhost';
243 self
::$_conn = new Mongo(self
::$_host);
245 $dbname = $this->getDatabaseName();
246 if (!isSet(self
::$_dbs[$dbname])) {
247 self
::$_dbs[$dbname] = self
::$_conn->selectDB($dbname);
249 return self
::$_dbs[$dbname];
253 // MongoCollection _getCollection() {{{
257 * Get a collection connection.
259 * @return MongoCollection
261 final protected function _getCollection()
263 $colName = $this->getCollectionName();
264 if (!isset(self
::$_collections[$colName])) {
265 self
::$_collections[$colName] = self
::_getConnection()->selectCollection($colName);
267 return self
::$_collections[$colName];
273 // GET DOCUMENT TO SAVE OR UPDATE {{{
275 // bool getCurrentSubDocument(array &$document, string $parent_key, array $values, array $past_values) {{{
277 * Generate Sub-document
279 * This method build the difference between the current sub-document,
280 * and the origin one. If there is no difference, it would do nothing,
281 * otherwise it would build a document containing the differences.
283 * @param array &$document Document target
284 * @param string $parent_key Parent key name
285 * @param array $values Current values
286 * @param array $past_values Original values
290 final function getCurrentSubDocument(&$document, $parent_key, Array $values, Array $past_values)
293 * The current property is a embedded-document,
294 * now we're looking for differences with the
295 * previous value (because we're on an update).
297 * It behaves exactly as getCurrentDocument,
298 * but this is simples (it doesn't support
301 foreach ($values as $key => $value) {
302 $super_key = "{$parent_key}.{$key}";
303 if (is_array($value)) {
305 * Inner document detected
307 if (!isset($past_values[$key]) ||
!is_array($past_values[$key])) {
309 * We're lucky, it is a new sub-document,
312 $document['$set'][$super_key] = $value;
315 * This is a document like this, we need
316 * to find out the differences to avoid
319 if (!$this->getCurrentSubDocument($document, $super_key, $value, $past_values[$key])) {
324 } else if (!isset($past_values[$key]) ||
$past_values[$key] != $value) {
325 $document['$set'][$super_key] = $value;
329 foreach (array_diff(array_keys($past_values), array_keys($values)) as $key) {
330 $super_key = "{$parent_key}.{$key}";
331 $document['$unset'][$super_key] = 1;
338 // array getCurrentDocument(bool $update) {{{
340 * Get Current Document
342 * Based on this object properties a new document (Array)
343 * is returned. If we're modifying an document, just the modified
344 * properties are included in this document, which uses $set,
345 * $unset, $pushAll and $pullAll.
348 * @param bool $update
352 final protected function getCurrentDocument($update=false, $current=false)
355 $object = get_document_vars($this);
358 $current = (array)$this->_current
;
362 $this->findReferences($object);
364 $this->triggerEvent('before_validate_'.($update?
'update':'creation'), array(&$object));
365 $this->triggerEvent('before_validate', array(&$object));
367 foreach ($object as $key => $value) {
372 if (is_array($value) && isset($current[$key])) {
374 * If the Field to update is an array, it has a different
375 * behaviour other than $set and $unset. Fist, we need
376 * need to check if it is an array or document, because
377 * they can't be mixed.
380 if (!is_array($current[$key])) {
382 * We're lucky, the field wasn't
383 * an array previously.
385 $this->runFilter($key, $value, $current[$key]);
386 $document['$set'][$key] = $value;
390 if (!$this->getCurrentSubDocument($document, $key, $value, $current[$key])) {
391 throw new Exception("{$key}: Array and documents are not compatible");
393 } else if(!isset($current[$key]) ||
$value !== $current[$key]) {
395 * It is 'linear' field that has changed, or
398 $past_value = isset($current[$key]) ?
$current[$key] : null;
399 $this->runFilter($key, $value, $past_value);
400 $document['$set'][$key] = $value;
404 * It is a document insertation, so we
405 * create the document.
407 $this->runFilter($key, $value, null);
408 $document[$key] = $value;
412 /* Updated behaves in a diff. way */
414 foreach (array_diff(array_keys($this->_current
), array_keys($object)) as $property) {
415 if ($property == '_id') {
418 $document['$unset'][$property] = 1;
422 if (count($document) == 0) {
426 $this->triggerEvent('after_validate_'.($update?
'update':'creation'), array(&$object));
427 $this->triggerEvent('after_validate', array(&$document));
435 // EVENT HANDLERS {{{
437 // addEvent($action, $callback) {{{
442 final static function addEvent($action, $callback)
444 if (!is_callable($callback)) {
445 throw new Exception("Invalid callback");
448 $class = get_called_class();
449 if ($class == __CLASS__
) {
450 $events = & self
::$_super_events;
452 $events = & self
::$_events[$class];
454 if (!isset($events[$action])) {
455 $events[$action] = array();
457 $events[$action][] = $callback;
462 // triggerEvent(string $event, Array $events_params) {{{
463 final function triggerEvent($event, Array $events_params = array())
465 $events = & self
::$_events[get_class($this)][$event];
466 $sevents = & self
::$_super_events[$event];
468 if (!is_array($events_params)) {
472 /* Super-Events handler receives the ActiveMongo class name as first param */
473 $sevents_params = array_merge(array(get_class($this)), $events_params);
475 foreach (array('events', 'sevents') as $event_type) {
476 if (count($
$event_type) > 0) {
477 $params = "{$event_type}_params";
478 foreach ($
$event_type as $fnc) {
479 call_user_func_array($fnc, $
$params);
484 /* Some natives events are allowed to be called
485 * as methods, if they exists
488 case 'before_create':
489 case 'before_update':
490 case 'before_validate':
491 case 'before_delete':
494 case 'after_validate':
496 $fnc = array($this, $event);
497 $params = "events_params";
498 if (is_callable($fnc)) {
499 call_user_func_array($fnc, $
$params);
506 // void runFilter(string $key, mixed &$value, mixed $past_value) {{{
510 * This method check if the current document property has
511 * a filter method, if so, call it.
513 * If the filter returns false, throw an Exception.
517 protected function runFilter($key, &$value, $past_value)
519 $filter = array($this, "{$key}_filter");
520 if (is_callable($filter)) {
521 $filter = call_user_func_array($filter, array(&$value, $past_value));
522 if ($filter===false) {
523 throw new ActiveMongo_FilterException("{$key} filter failed");
525 $this->$key = $value;
532 // void setCursor(MongoCursor $obj) {{{
536 * This method receive a MongoCursor and make
539 * @param MongoCursor $obj
543 final protected function setCursor(MongoCursor
$obj)
545 $this->_cursor
= $obj;
546 $this->setResult($obj->getNext());
550 // void setResult(Array $obj) {{{
554 * This method takes an document and copy it
555 * as properties in this object.
561 final protected function setResult($obj)
563 /* Unsetting previous results, if any */
564 foreach (array_keys(get_document_vars($this, false)) as $key) {
569 /* Add our current resultset as our object's property */
570 foreach ((array)$obj as $key => $value) {
571 if ($key[0] == '$') {
574 $this->$key = $value;
577 /* Save our record */
578 $this->_current
= $obj;
582 // this find([$_id]) {{{
586 * Really simple find, which uses this object properties
589 * @return object this
591 final function find($_id = null)
593 $vars = get_document_vars($this);
594 foreach ($vars as $key => $value) {
598 $parent_class = __CLASS__
;
599 if ($value InstanceOf $parent_class) {
600 $this->getColumnDeference($vars, $key, $value);
601 unset($vars[$key]); /* delete old value */
605 if (is_array($_id)) {
606 $vars['_id'] = array('$in' => $_id);
611 $res = $this->_getCollection()->find($vars);
612 $this->setCursor($res);
617 // void save(bool $async) {{{
621 * This method save the current document in MongoDB. If
622 * we're modifying a document, a update is performed, otherwise
623 * the document is inserted.
625 * On updates, special operations such as $set, $pushAll, $pullAll
626 * and $unset in order to perform efficient updates
632 final function save($async=true)
634 $update = isset($this->_id
) && $this->_id
InstanceOf MongoID
;
635 $conn = $this->_getCollection();
636 $document = $this->getCurrentDocument($update);
637 $object = get_document_vars($this);
638 if (count($document) == 0) {
639 return; /*nothing to do */
643 $this->triggerEvent('before_'.($update ?
'update' : 'create'), array(&$document, $object));
646 $conn->update(array('_id' => $this->_id
), $document, array('safe' => $async));
647 foreach ($document as $key => $value) {
648 if ($key[0] == '$') {
651 $this->_current
[$key] = $value;
654 $conn->insert($document, $async);
655 $this->_id
= $document['_id'];
656 $this->_current
= $document;
659 $this->triggerEvent('after_'.($update ?
'update' : 'create'), array($document, $object));
665 * Delete the current document
669 final function delete()
671 if ($this->valid()) {
672 $document = array('_id' => $this->_id
);
673 $this->triggerEvent('before_delete', array($document));
674 $result = $this->_getCollection()->remove($document);
675 $this->triggerEvent('after_delete', array($document));
684 * Delete the current colleciton and all its documents
688 final static function drop()
690 $class = get_called_class();
691 if ($class == __CLASS__
) {
695 return $obj->_getCollection()->drop();
701 * Return the number of documents in the actual request. If
702 * we're not in a request, it will return 0.
706 final function count()
708 if ($this->valid()) {
709 return $this->_cursor
->count();
717 * This method should contain all the indexes, and shard keys
718 * needed by the current collection. This try to make
719 * installation on development environments easier.
726 // bool addIndex(array $columns, array $options) {{{
730 * Create an Index in the current collection.
732 * @param array $columns L ist of columns
733 * @param array $options Options
737 final function addIndex($columns, $options=array())
739 $default_options = array(
743 foreach ($default_options as $option => $value) {
744 if (!isset($options[$option])) {
745 $options[$option] = $value;
749 $collection = $this->_getCollection();
751 return $collection->ensureIndex($columns, $options);
755 // string __toString() {{{
759 * If this object is treated as a string,
760 * it would return its ID.
764 final function __toString()
766 return (string)$this->getID();
770 // array sendCmd(array $cmd) {{{
772 * This method sends a command to the current
775 * @param array $cmd Current command
779 final protected function sendCmd($cmd)
781 return $this->_getConnection()->command($cmd);
789 * Reset our Object, delete the current cursor if any, and reset
794 final function reset()
796 $this->_properties
= null;
797 $this->_cursor
= null;
798 $this->_query
= null;
802 $this->setResult(array());
810 * Return if we're on an iteration and if it is still valid
814 final function valid()
816 if (!$this->_cursor
InstanceOf MongoCursor
) {
819 return $this->_cursor
InstanceOf MongoCursor
&& $this->_cursor
->valid();
825 * Move to the next document
829 final function next()
831 if ($this->_cloned
) {
832 throw new MongoException("Cloned objects can't iterate");
834 return $this->_cursor
->next();
838 // this current() {{{
840 * Return the current object, and load the current document
841 * as this object property
845 final function current()
847 $this->setResult($this->_cursor
->current());
854 * Go to the first document
856 final function rewind()
858 if (!$this->_cursor
InstanceOf MongoCursor
) {
861 return $this->_cursor
->rewind();
868 final function offsetExists($offset)
870 return isset($this->$offset);
873 final function offsetGet($offset)
875 return $this->$offset;
878 final function offsetSet($offset, $value)
880 $this->$offset = $value;
883 final function offsetUnset($offset)
885 unset($this->$offset);
891 // array getReference() {{{
893 * ActiveMongo extended the Mongo references, adding
894 * the concept of 'dynamic' requests, saving in the database
895 * the current query with its options (sort, limit, etc).
897 * This is useful to associate a document with a given
898 * request. To undestand this better please see the 'reference'
903 final function getReference($dynamic=false)
905 if (!$this->getID() && !$dynamic) {
910 '$ref' => $this->getCollectionName(),
911 '$id' => $this->getID(),
912 '$db' => $this->getDatabaseName(),
913 'class' => get_class($this),
916 if ($dynamic && $this->_cursor
InstanceOf MongoCursor
) {
917 $cursor = $this->_cursor
;
918 if (!is_callable(array($cursor, "Info"))) {
919 throw new Exception("Please upgrade your PECL/Mongo module to use this feature");
921 $document['dynamic'] = array();
922 $query = $cursor->Info();
923 foreach ($query as $type => $value) {
924 $document['dynamic'][$type] = $value;
931 // void getDocumentReferences($document, &$refs) {{{
933 * Get Current References
935 * Inspect the current document trying to get any references,
938 * @param array $document Current document
939 * @param array &$refs References found in the document.
940 * @param array $parent_key Parent key
944 final protected function getDocumentReferences($document, &$refs, $parent_key=null)
946 foreach ($document as $key => $value) {
947 if (is_array($value)) {
948 if (MongoDBRef
::isRef($value)) {
951 $refs[] = array('ref' => $value, 'key' => $pkey);
953 $parent_key[] = $key;
954 $this->getDocumentReferences($value, $refs, $parent_key);
961 // object _deferencingCreateObject(string $class) {{{
963 * Called at deferencig time
965 * Check if the given string is a class, and it is a sub class
966 * of ActiveMongo, if it is instance and return the object.
968 * @param string $class
972 private function _deferencingCreateObject($class)
974 if (!is_subclass_of($class, __CLASS__
)) {
975 throw new MongoException("Fatal Error, imposible to create ActiveMongo object of {$class}");
981 // void _deferencingRestoreProperty(array &$document, array $keys, mixed $req) {{{
983 * Called at deferencig time
985 * This method iterates $document until it could match $keys path, and
986 * replace its value by $req.
988 * @param array &$document Document to replace
989 * @param array $keys Path of property to change
990 * @param mixed $req Value to replace.
994 private function _deferencingRestoreProperty(&$document, $keys, $req)
998 /* find the $req proper spot */
999 foreach ($keys as $key) {
1000 $obj = & $obj[$key];
1005 /* Delete reference variable */
1010 // object _deferencingQuery($request) {{{
1012 * Called at deferencig time
1014 * This method takes a dynamic reference and request
1017 * @param array $request Dynamic reference
1021 private function _deferencingQuery($request)
1023 $collection = $this->_getCollection();
1024 $cursor = $collection->find($request['query'], $request['fields']);
1025 if ($request['limit'] > 0) {
1026 $cursor->limit($request['limit']);
1028 if ($request['skip'] > 0) {
1029 $cursor->limit($request['limit']);
1032 $this->setCursor($cursor);
1038 // void doDeferencing() {{{
1040 * Perform a deferencing in the current document, if there is
1043 * ActiveMongo will do its best to group references queries as much
1044 * as possible, in order to perform as less request as possible.
1046 * ActiveMongo doesn't rely on MongoDB references, but it can support
1047 * it, but it is prefered to use our referencing.
1051 final function doDeferencing($refs=array())
1053 /* Get current document */
1054 $document = get_document_vars($this);
1056 if (count($refs)==0) {
1057 /* Inspect the whole document */
1058 $this->getDocumentReferences($document, $refs);
1061 $db = $this->_getConnection();
1063 /* Gather information about ActiveMongo Objects
1064 * that we need to create
1067 foreach ($refs as $ref) {
1068 if (!isset($ref['ref']['class'])) {
1070 /* Support MongoDBRef, we do our best to be compatible {{{ */
1071 /* MongoDB 'normal' reference */
1073 $obj = MongoDBRef
::get($db, $ref['ref']);
1075 /* Offset the current document to the right spot */
1076 /* Very inefficient, never use it, instead use ActiveMongo References */
1078 $this->_deferencingRestoreProperty($document, $ref['key'], clone $req);
1080 /* Dirty hack, override our current document
1081 * property with the value itself, in order to
1082 * avoid replace a MongoDB reference by its content
1084 $this->_deferencingRestoreProperty($this->_current
, $ref['key'], clone $req);
1090 if (isset($ref['ref']['dynamic'])) {
1091 /* ActiveMongo Dynamic Reference */
1093 /* Create ActiveMongo object */
1094 $req = $this->_deferencingCreateObject($ref['ref']['class']);
1096 /* Restore saved query */
1097 $req->_deferencingQuery($ref['ref']['dynamic']);
1101 /* Add the result set */
1102 foreach ($req as $result) {
1103 $results[] = clone $result;
1106 /* add information about the current reference */
1107 foreach ($ref['ref'] as $key => $value) {
1108 $results[$key] = $value;
1111 $this->_deferencingRestoreProperty($document, $ref['key'], $results);
1114 /* ActiveMongo Reference FTW! */
1115 $classes[$ref['ref']['class']][] = $ref;
1120 /* {{{ Create needed objects to query MongoDB and replace
1121 * our references by its objects documents.
1123 foreach ($classes as $class => $refs) {
1124 $req = $this->_deferencingCreateObject($class);
1126 /* Load list of IDs */
1128 foreach ($refs as $ref) {
1129 $ids[] = $ref['ref']['$id'];
1132 /* Search to MongoDB once for all IDs found */
1135 if ($req->count() != count($refs)) {
1136 $total = $req->count();
1137 $expected = count($refs);
1138 throw new MongoException("Dereferencing error, MongoDB replied {$total} objects, we expected {$expected}");
1141 /* Replace our references by its objects */
1142 foreach ($refs as $ref) {
1143 $id = $ref['ref']['$id'];
1144 $place = $ref['key'];
1146 while ($req->getID() != $id && $req->next());
1148 assert($req->getID() == $id);
1150 $this->_deferencingRestoreProperty($document, $place, clone $req);
1155 /* Release request, remember we
1162 /* Replace the current document by the new deferenced objects */
1163 foreach ($document as $key => $value) {
1164 $this->$key = $value;
1169 // void getColumnDeference(&$document, $propety, ActiveMongo Obj) {{{
1171 * Prepare a "selector" document to search treaing the property
1172 * as a reference to the given ActiveMongo object.
1175 final function getColumnDeference(&$document, $property, ActiveMongo
$obj)
1177 $document["{$property}.\$id"] = $obj->getID();
1181 // void findReferences(&$document) {{{
1183 * Check if in the current document to insert or update
1184 * exists any references to other ActiveMongo Objects.
1188 final function findReferences(&$document)
1190 if (!is_array($document)) {
1193 foreach($document as &$value) {
1194 $parent_class = __CLASS__
;
1195 if (is_array($value)) {
1196 if (MongoDBRef
::isRef($value)) {
1197 /* If the property we're inspecting is a reference,
1198 * we need to remove the values, restoring the valid
1202 '$ref'=>1, '$id'=>1, '$db'=>1, 'class'=>1, 'dynamic'=>1
1204 foreach (array_keys($value) as $key) {
1205 if (!isset($arr[$key])) {
1206 unset($value[$key]);
1210 $this->findReferences($value);
1212 } else if ($value InstanceOf $parent_class) {
1213 $value = $value->getReference();
1216 /* trick: delete last var. reference */
1221 // void __clone() {{{
1223 * Cloned objects are rarely used, but ActiveMongo
1224 * uses it to create different objects per everyrecord,
1225 * which is used at deferencing. Therefore cloned object
1226 * do not contains the recordset, just the actual document,
1227 * so iterations are not allowed.
1230 final function __clone()
1232 unset($this->_cursor
);
1233 $this->_cloned
= true;
1239 // GET DOCUMENT ID {{{
1243 * Return the current document ID. If there is
1244 * no document it would return false.
1246 * @return object|false
1248 final public function getID()
1250 if ($this->_id
instanceof MongoID
) {
1259 * Return the current key
1263 final function key()
1265 return $this->getID();
1271 // Fancy (and silly) query abstraction {{{
1273 // _assertNotInQuery() {{{
1275 * Check if we can modify the query or not. We cannot modify
1276 * the query if we already asked to MongoDB, in this case the
1277 * object must be reset.
1281 final private function _assertNotInQuery()
1283 if ($this->_cursor
InstanceOf MongoCursor
) {
1284 throw new ActiveMongo_Exception("You cannot modify the query, please reset the object");
1291 * Build the current request and send it to MongoDB.
1295 final function doQuery()
1297 $this->_assertNotInQuery();
1299 $col = $this->_getCollection();
1300 if (count($this->_properties
) > 0) {
1301 $cursor = $col->find((array)$this->_query
['query'], $this->_properties
);
1303 $cursor = $col->find((array)$this->_query
['query']);
1305 if (is_array($this->_sort
)) {
1306 $cursor->sort($this->_sort
);
1308 if ($this->_limit
> 0) {
1309 $cursor->limit($this->_limit
);
1311 if ($this->_skip
> 0) {
1312 $cursor->skip($this->_skip
);
1315 /* Our cursor must be sent to ActiveMongo */
1316 $this->setCursor($cursor);
1322 // properties($props) {{{
1324 * Select 'properties' or 'columns' to be included in the document,
1325 * by default all properties are included.
1327 * @param array $props
1331 final function properties($props)
1333 $this->_assertNotInQuery();
1335 if (!is_array($props) && !is_string($props)) {
1339 if (is_string($props)) {
1340 $props = explode(",", $props);
1343 foreach ($props as $id => $name) {
1344 $props[trim($name)] = 1;
1348 $this->_properties
= $props;
1353 final function columns($properties)
1355 return $this->properties($properties);
1359 // where($property, $value) {{{
1361 * Where abstraction.
1364 final function where($property_str, $value=null)
1366 $this->_assertNotInQuery();
1368 if (is_array($property_str)) {
1369 if ($value != null) {
1370 throw new ActiveMongo_Expception("Invalid parameters");
1372 foreach ($property_str as $property => $value) {
1373 if (is_numeric($property)) {
1377 $this->where($property, $value);
1382 $column = explode(" ", trim($property_str));
1383 if (count($column) != 1 && count($column) != 2) {
1384 throw new ActiveMongo_Exception("Failed while parsing '{$property_str}'");
1385 } else if (count($column) == 2) {
1388 switch (strtolower($column[1])) {
1412 if (is_array($value)) {
1414 $exp_scalar = false;
1423 if (is_array($value)) {
1425 $exp_scalar = false;
1446 $value = new MongoRegex($value);
1453 $exp_scalar = false;
1459 $exp_scalar = false;
1464 /* geo operations */
1468 $exp_scalar = false;
1472 throw new ActiveMongo_Exception("Failed to parse '{$column[1]}'");
1475 if ($exp_scalar && is_array($value)) {
1476 throw new ActiveMongo_Exception("Cannot use comparing operations with Array");
1477 } else if (!$exp_scalar && !is_array($value)) {
1478 throw new ActiveMongo_Exception("The operation {$column[1]} expected an Array");
1482 $value = array($op => $value);
1484 } else if (is_array($value)) {
1485 $value = array('$in' => $value);
1488 $spot = & $this->_query
['query'][$column[0]];
1489 if (is_array($value)) {
1490 $spot[key($value)] = current($value);
1492 /* simulate AND among same properties if
1493 * multiple values is passed for same property
1496 if (is_array($spot)) {
1497 $spot['$all'][] = $value;
1499 $spot = array('$all' => array($spot, $value));
1510 // sort($sort_str) {{{
1512 * Abstract the documents sorting.
1514 * @param string $sort_str List of properties to use as sorting
1518 final function sort($sort_str)
1520 $this->_assertNotInQuery();
1522 $this->_sort
= array();
1523 foreach ((array)explode(",", $sort_str) as $sort_part_str) {
1524 $sort_part = explode(" ", trim($sort_part_str), 2);
1525 switch(count($sort_part)) {
1527 $sort_part[1] = 'ASC';
1532 throw new ActiveMongo_Exception("Don't know how to parse {$sort_part_str}");
1535 switch (strtoupper($sort_part[1])) {
1543 throw new ActiveMongo_Exception("Invalid sorting direction `{$sort_part[1]}`");
1545 $this->_sort
[ $sort_part[0] ] = $sort_part[1];
1552 // limit($limit, $skip) {{{
1554 * Abstract the limitation and pagination of documents.
1556 * @param int $limit Number of max. documents to retrieve
1557 * @param int $skip Number of documents to skip
1561 final function limit($limit=0, $skip=0)
1563 $this->_assertNotInQuery();
1565 if ($limit < 0 ||
$skip < 0) {
1568 $this->_limit
= $limit;
1569 $this->_skip
= $skip;
1579 require_once dirname(__FILE__
)."/Validators.php";
1580 require_once dirname(__FILE__
)."/Exceptions.php";
1587 * vim600: sw=4 ts=4 fdm=marker
1588 * vim<600: sw=4 ts=4