forked from fehmicansaglam/reactivemongo-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJsonDao.scala
164 lines (138 loc) · 5.57 KB
/
JsonDao.scala
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
// Copyright (C) 2014 the original author or authors.
// See the LICENCE.txt file distributed with this work for additional
// information regarding copyright ownership.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package reactivemongo.extensions.dao
import scala.util.Random
import scala.concurrent.{ Future, Await }
import scala.concurrent.duration._
import play.api.libs.json.{ Json, JsObject, Format, Writes }
import play.api.libs.json.Json.JsValueWrapper
import reactivemongo.bson.BSONObjectID
import reactivemongo.api.{ bulk, DB, QueryOpts }
import reactivemongo.api.indexes.Index
import reactivemongo.core.commands.{ LastError, GetLastError, Count }
import play.modules.reactivemongo.json.collection.JSONCollection
import play.modules.reactivemongo.json.ImplicitBSONHandlers.JsObjectWriter
import reactivemongo.extensions.dsl.functional.JsonDsl
import play.api.libs.iteratee.{ Iteratee, Enumerator }
abstract class JsonDao[T: Format, ID: Writes](db: () => DB, collectionName: String)
extends Dao[JSONCollection, JsObject, T, ID, Writes](db, collectionName)
with JsonDsl {
def ensureIndexes(): Future[Traversable[Boolean]] = Future sequence {
autoIndexes map { index =>
collection.indexesManager.ensure(index)
}
}
def listIndexes(): Future[List[Index]] = {
collection.indexesManager.list()
}
def findOne(selector: JsObject = Json.obj()): Future[Option[T]] = {
collection.find(selector).one[T]
}
def findById(id: ID): Future[Option[T]] = {
findOne($id(id))
}
def findByIds(ids: Traversable[ID]): Future[List[T]] = {
findAll("_id" $in ids)
}
/** @param page 1 based
*/
def find(selector: JsObject = Json.obj(),
sort: JsObject = Json.obj("_id" -> 1),
page: Int,
pageSize: Int): Future[List[T]] = {
val from = (page - 1) * pageSize
collection
.find(selector)
.sort(sort)
.options(QueryOpts(skipN = from, batchSizeN = pageSize))
.cursor[T]
.collect[List](pageSize)
}
def findAll(selector: JsObject = Json.obj(),
sort: JsObject = Json.obj("_id" -> 1)): Future[List[T]] = {
collection.find(selector).sort(sort).cursor[T].collect[List]()
}
def findRandom(selector: JsObject = Json.obj()): Future[Option[T]] = {
for {
count <- count(selector)
index = Random.nextInt(count)
random <- collection.find(selector).options(QueryOpts(skipN = index, batchSizeN = 1)).one[T]
} yield random
}
def insert(document: T, writeConcern: GetLastError = defaultWriteConcern): Future[LastError] = {
collection.insert(document, writeConcern)
}
def bulkInsert(documents: TraversableOnce[T],
bulkSize: Int = bulk.MaxDocs,
bulkByteSize: Int = bulk.MaxBulkSize): Future[Int] = {
val enumerator = Enumerator.enumerate(documents)
collection.bulkInsert(enumerator, bulkSize, bulkByteSize)
}
def update[U: Writes](selector: JsObject,
update: U,
writeConcern: GetLastError = defaultWriteConcern,
upsert: Boolean = false,
multi: Boolean = false): Future[LastError] = {
collection.update(selector, update, writeConcern, upsert, multi)
}
def updateById[U: Writes](id: ID,
update: U,
writeConcern: GetLastError = defaultWriteConcern): Future[LastError] = {
collection.update($id(id), update, writeConcern)
}
def save(document: T, writeConcern: GetLastError = GetLastError()): Future[LastError] = {
collection.save(document, writeConcern)
}
def count(selector: JsObject = Json.obj()): Future[Int] = {
collection.db.command(Count(collectionName, Some(JsObjectWriter.write(selector))))
}
def drop(): Future[Boolean] = {
collection.drop()
}
def dropSync(timeout: Duration = 10 seconds): Boolean = {
Await.result(drop(), timeout)
}
def removeById(id: ID, writeConcern: GetLastError = defaultWriteConcern): Future[LastError] = {
collection.remove($id(id), writeConcern = writeConcern)
}
def remove(query: JsObject,
writeConcern: GetLastError = defaultWriteConcern,
firstMatchOnly: Boolean = false): Future[LastError] = {
collection.remove(query, writeConcern, firstMatchOnly)
}
def removeAll(writeConcern: GetLastError = defaultWriteConcern): Future[LastError] = {
collection.remove(query = Json.obj(), writeConcern = writeConcern, firstMatchOnly = false)
}
// Iteratee releated APIs
/** Iteratee.foreach */
def foreach(selector: JsObject = Json.obj(),
sort: JsObject = Json.obj("_id" -> 1))(f: (T) => Unit): Future[Unit] = {
collection.find(selector).sort(sort).cursor[T]
.enumerate()
.apply(Iteratee.foreach(f))
.flatMap(i => i.run)
}
/** Iteratee.fold */
def fold[A](selector: JsObject = Json.obj(),
sort: JsObject = Json.obj("_id" -> 1),
state: A)(f: (A, T) => A): Future[A] = {
collection.find(selector).sort(sort).cursor[T]
.enumerate()
.apply(Iteratee.fold(state)(f))
.flatMap(i => i.run)
}
ensureIndexes()
}