Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
3e744b73
Commit
3e744b73
authored
Dec 03, 2013
by
Paul Klimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mongo Collection "findAll" method removed.
Logging and profiling for Mongo Query added.
parent
1a9d5a11
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
87 additions
and
42 deletions
+87
-42
ActiveQuery.php
extensions/mongo/ActiveQuery.php
+1
-4
Collection.php
extensions/mongo/Collection.php
+6
-18
Query.php
extensions/mongo/Query.php
+53
-16
CollectionTest.php
tests/unit/extensions/mongo/CollectionTest.php
+9
-4
MongoTestCase.php
tests/unit/extensions/mongo/MongoTestCase.php
+18
-0
No files found.
extensions/mongo/ActiveQuery.php
View file @
3e744b73
...
@@ -29,10 +29,7 @@ class ActiveQuery extends Query implements ActiveQueryInterface
...
@@ -29,10 +29,7 @@ class ActiveQuery extends Query implements ActiveQueryInterface
public
function
all
(
$db
=
null
)
public
function
all
(
$db
=
null
)
{
{
$cursor
=
$this
->
buildCursor
(
$db
);
$cursor
=
$this
->
buildCursor
(
$db
);
$rows
=
[];
$rows
=
$this
->
fetchRows
(
$cursor
);
foreach
(
$cursor
as
$row
)
{
$rows
[]
=
$row
;
}
if
(
!
empty
(
$rows
))
{
if
(
!
empty
(
$rows
))
{
$models
=
$this
->
createModels
(
$rows
);
$models
=
$this
->
createModels
(
$rows
);
if
(
!
empty
(
$this
->
with
))
{
if
(
!
empty
(
$this
->
with
))
{
...
...
extensions/mongo/Collection.php
View file @
3e744b73
...
@@ -173,9 +173,12 @@ class Collection extends Object
...
@@ -173,9 +173,12 @@ class Collection extends Object
}
}
/**
/**
* @param array $condition
* Returns a cursor for the search results.
* @param array $fields
* In order to perform "find" queries use [[Query]] class.
* @return \MongoCursor
* @param array $condition query condition
* @param array $fields fields to be selected
* @return \MongoCursor cursor for the search results
* @see Query
*/
*/
public
function
find
(
$condition
=
[],
$fields
=
[])
public
function
find
(
$condition
=
[],
$fields
=
[])
{
{
...
@@ -183,21 +186,6 @@ class Collection extends Object
...
@@ -183,21 +186,6 @@ class Collection extends Object
}
}
/**
/**
* @param array $condition
* @param array $fields
* @return array
*/
public
function
findAll
(
$condition
=
[],
$fields
=
[])
{
$cursor
=
$this
->
find
(
$condition
,
$fields
);
$result
=
[];
foreach
(
$cursor
as
$data
)
{
$result
[]
=
$data
;
}
return
$result
;
}
/**
* Inserts new data into collection.
* Inserts new data into collection.
* @param array|object $data data to be inserted.
* @param array|object $data data to be inserted.
* @param array $options list of options in format: optionName => optionValue.
* @param array $options list of options in format: optionName => optionValue.
...
...
extensions/mongo/Query.php
View file @
3e744b73
...
@@ -10,6 +10,7 @@ namespace yii\mongo;
...
@@ -10,6 +10,7 @@ namespace yii\mongo;
use
yii\base\Component
;
use
yii\base\Component
;
use
yii\db\QueryInterface
;
use
yii\db\QueryInterface
;
use
yii\db\QueryTrait
;
use
yii\db\QueryTrait
;
use
yii\helpers\Json
;
use
Yii
;
use
Yii
;
/**
/**
...
@@ -104,28 +105,57 @@ class Query extends Component implements QueryInterface
...
@@ -104,28 +105,57 @@ class Query extends Component implements QueryInterface
}
}
/**
/**
* Executes the query and returns all results as an array.
* @param \MongoCursor $cursor Mongo cursor instance to fetch data from.
* @param Connection $db the Mongo connection used to execute the query.
* @param boolean $all whether to fetch all rows or only first one.
* If this parameter is not given, the `mongo` application component will be used.
* @param string|callable $indexBy
* @return array the query results. If the query results in nothing, an empty array will be returned.
* @throws Exception
* @return array|boolean
*/
*/
p
ublic
function
all
(
$db
=
null
)
p
rotected
function
fetchRows
(
\MongoCursor
$cursor
,
$all
=
true
,
$indexBy
=
null
)
{
{
$cursor
=
$this
->
buildCursor
(
$db
);
$token
=
'Querying: '
.
Json
::
encode
(
$cursor
->
info
());
Yii
::
info
(
$token
,
__METHOD__
);
try
{
Yii
::
beginProfile
(
$token
,
__METHOD__
);
$result
=
[];
$result
=
[];
if
(
$all
)
{
foreach
(
$cursor
as
$row
)
{
foreach
(
$cursor
as
$row
)
{
if
(
$this
->
indexBy
!==
null
)
{
if
(
$
indexBy
!==
null
)
{
if
(
is_string
(
$this
->
indexBy
))
{
if
(
is_string
(
$
indexBy
))
{
$key
=
$row
[
$this
->
indexBy
];
$key
=
$row
[
$
indexBy
];
}
else
{
}
else
{
$key
=
call_user_func
(
$this
->
indexBy
,
$row
);
$key
=
call_user_func
(
$
indexBy
,
$row
);
}
}
$result
[
$key
]
=
$row
;
$result
[
$key
]
=
$row
;
}
else
{
}
else
{
$result
[]
=
$row
;
$result
[]
=
$row
;
}
}
}
}
}
else
{
if
(
$cursor
->
hasNext
())
{
$result
=
$cursor
->
getNext
();
}
else
{
$result
=
false
;
}
}
Yii
::
endProfile
(
$token
,
__METHOD__
);
return
$result
;
return
$result
;
}
catch
(
\Exception
$e
)
{
Yii
::
endProfile
(
$token
,
__METHOD__
);
throw
new
Exception
(
$e
->
getMessage
(),
(
int
)
$e
->
getCode
(),
$e
);
}
}
/**
* Executes the query and returns all results as an array.
* @param Connection $db the Mongo connection used to execute the query.
* If this parameter is not given, the `mongo` application component will be used.
* @return array the query results. If the query results in nothing, an empty array will be returned.
*/
public
function
all
(
$db
=
null
)
{
$cursor
=
$this
->
buildCursor
(
$db
);
return
$this
->
fetchRows
(
$cursor
,
true
,
$this
->
indexBy
);
}
}
/**
/**
...
@@ -138,11 +168,7 @@ class Query extends Component implements QueryInterface
...
@@ -138,11 +168,7 @@ class Query extends Component implements QueryInterface
public
function
one
(
$db
=
null
)
public
function
one
(
$db
=
null
)
{
{
$cursor
=
$this
->
buildCursor
(
$db
);
$cursor
=
$this
->
buildCursor
(
$db
);
if
(
$cursor
->
hasNext
())
{
return
$this
->
fetchRows
(
$cursor
,
false
);
return
$cursor
->
getNext
();
}
else
{
return
false
;
}
}
}
/**
/**
...
@@ -151,11 +177,22 @@ class Query extends Component implements QueryInterface
...
@@ -151,11 +177,22 @@ class Query extends Component implements QueryInterface
* @param Connection $db the Mongo connection used to execute the query.
* @param Connection $db the Mongo connection used to execute the query.
* If this parameter is not given, the `mongo` application component will be used.
* If this parameter is not given, the `mongo` application component will be used.
* @return integer number of records
* @return integer number of records
* @throws Exception on failure.
*/
*/
public
function
count
(
$q
=
'*'
,
$db
=
null
)
public
function
count
(
$q
=
'*'
,
$db
=
null
)
{
{
$cursor
=
$this
->
buildCursor
(
$db
);
$cursor
=
$this
->
buildCursor
(
$db
);
return
$cursor
->
count
();
$token
=
'Counting: '
.
Json
::
encode
(
$cursor
->
info
());
Yii
::
info
(
$token
,
__METHOD__
);
try
{
Yii
::
beginProfile
(
$token
,
__METHOD__
);
$result
=
$cursor
->
count
();
Yii
::
endProfile
(
$token
,
__METHOD__
);
return
$result
;
}
catch
(
\Exception
$e
)
{
Yii
::
endProfile
(
$token
,
__METHOD__
);
throw
new
Exception
(
$e
->
getMessage
(),
(
int
)
$e
->
getCode
(),
$e
);
}
}
}
/**
/**
...
...
tests/unit/extensions/mongo/CollectionTest.php
View file @
3e744b73
...
@@ -45,6 +45,7 @@ class CollectionTest extends MongoTestCase
...
@@ -45,6 +45,7 @@ class CollectionTest extends MongoTestCase
/**
/**
* @depends testInsert
* @depends testInsert
* @depends testFind
*/
*/
public
function
testFindAll
()
public
function
testFindAll
()
{
{
...
@@ -55,7 +56,11 @@ class CollectionTest extends MongoTestCase
...
@@ -55,7 +56,11 @@ class CollectionTest extends MongoTestCase
];
];
$id
=
$collection
->
insert
(
$data
);
$id
=
$collection
->
insert
(
$data
);
$rows
=
$collection
->
findAll
();
$cursor
=
$collection
->
find
();
$rows
=
[];
foreach
(
$cursor
as
$row
)
{
$rows
[]
=
$row
;
}
$this
->
assertEquals
(
1
,
count
(
$rows
));
$this
->
assertEquals
(
1
,
count
(
$rows
));
$this
->
assertEquals
(
$id
,
$rows
[
0
][
'_id'
]);
$this
->
assertEquals
(
$id
,
$rows
[
0
][
'_id'
]);
}
}
...
@@ -129,7 +134,7 @@ class CollectionTest extends MongoTestCase
...
@@ -129,7 +134,7 @@ class CollectionTest extends MongoTestCase
$count
=
$collection
->
remove
([
'_id'
=>
$id
]);
$count
=
$collection
->
remove
([
'_id'
=>
$id
]);
$this
->
assertEquals
(
1
,
$count
);
$this
->
assertEquals
(
1
,
$count
);
$rows
=
$
collection
->
findAll
(
);
$rows
=
$
this
->
findAll
(
$collection
);
$this
->
assertEquals
(
0
,
count
(
$rows
));
$this
->
assertEquals
(
0
,
count
(
$rows
));
}
}
...
@@ -151,7 +156,7 @@ class CollectionTest extends MongoTestCase
...
@@ -151,7 +156,7 @@ class CollectionTest extends MongoTestCase
$count
=
$collection
->
update
([
'_id'
=>
$id
],
$newData
);
$count
=
$collection
->
update
([
'_id'
=>
$id
],
$newData
);
$this
->
assertEquals
(
1
,
$count
);
$this
->
assertEquals
(
1
,
$count
);
list
(
$row
)
=
$
collection
->
findAll
(
);
list
(
$row
)
=
$
this
->
findAll
(
$collection
);
$this
->
assertEquals
(
$newData
[
'name'
],
$row
[
'name'
]);
$this
->
assertEquals
(
$newData
[
'name'
],
$row
[
'name'
]);
}
}
...
@@ -221,7 +226,7 @@ class CollectionTest extends MongoTestCase
...
@@ -221,7 +226,7 @@ class CollectionTest extends MongoTestCase
$this
->
assertEquals
(
'mapReduceOut'
,
$result
);
$this
->
assertEquals
(
'mapReduceOut'
,
$result
);
$outputCollection
=
$this
->
getConnection
()
->
getCollection
(
$result
);
$outputCollection
=
$this
->
getConnection
()
->
getCollection
(
$result
);
$rows
=
$
outputCollection
->
findAll
(
);
$rows
=
$
this
->
findAll
(
$outputCollection
);
$expectedRows
=
[
$expectedRows
=
[
[
[
'_id'
=>
1
,
'_id'
=>
1
,
...
...
tests/unit/extensions/mongo/MongoTestCase.php
View file @
3e744b73
...
@@ -103,4 +103,21 @@ class MongoTestCase extends TestCase
...
@@ -103,4 +103,21 @@ class MongoTestCase extends TestCase
}
}
}
}
}
}
/**
* Finds all records in collection.
* @param \yii\mongo\Collection $collection
* @param array $condition
* @param array $fields
* @return array rows
*/
protected
function
findAll
(
$collection
,
$condition
=
[],
$fields
=
[])
{
$cursor
=
$collection
->
find
(
$condition
,
$fields
);
$result
=
[];
foreach
(
$cursor
as
$data
)
{
$result
[]
=
$data
;
}
return
$result
;
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment