forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.js
More file actions
364 lines (340 loc) · 10.3 KB
/
query.js
File metadata and controls
364 lines (340 loc) · 10.3 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
/*!
* Copyright 2014 Google Inc. All Rights Reserved.
*
* 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.
*/
/*!
* @module datastore/query
*/
'use strict';
var arrify = require('arrify');
/*! Developer Documentation
*
* @param {module:datastore|module:transaction} scope - The parent scope the
* query was created from.
*/
/**
* Build a Query object.
*
* **Queries are built with {module:datastore#createQuery} and
* {module:transaction#createQuery}.**
*
* @resource [Datastore Queries]{@link http://goo.gl/Cag0r6}
*
* @constructor
* @alias module:datastore/query
*
* @param {string=} namespace - Namespace to query entities from.
* @param {string} kind - Kind to query.
*
* @example
* var query = datastore.createQuery('AnimalNamespace', 'Lion');
*/
function Query(scope, namespace, kinds) {
if (!kinds) {
kinds = namespace;
namespace = null;
}
this.scope = scope;
this.namespace = namespace || null;
this.kinds = kinds;
this.filters = [];
this.orders = [];
this.groupByVal = [];
this.selectVal = [];
// pagination
this.startVal = null;
this.endVal = null;
this.limitVal = -1;
this.offsetVal = -1;
}
/**
* Datastore allows querying on properties. Supported comparison operators
* are `=`, `<`, `>`, `<=`, and `>=`. "Not equal" and `IN` operators are
* currently not supported.
*
* *To filter by ancestors, see {module:datastore/query#hasAncestor}.*
*
* @resource [Datastore Filters]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-property-filter-nodejs}
*
* @param {string} property - The field name.
* @param {string=} operator - Operator (=, <, >, <=, >=). Default: `=`
* @param {*} value - Value to compare property to.
* @return {module:datastore/query}
*
* @example
* //-
* // List all companies that are located in California.
* //-
* var caliQuery = query.filter('state', 'CA');
*
* //-
* // List all companies named Google that have less than 400 employees.
* //-
* var companyQuery = query
* .filter('name', 'Google')
* .filter('size', '<', 400);
*
* //-
* // To filter by key, use `__key__` for the property name. Filter on keys
* // stored as properties is not currently supported.
* //-
* var key = datastore.key(['Company', 'Google']);
* var keyQuery = query.filter('__key__', key);
*/
Query.prototype.filter = function(property, operator, value) {
if (arguments.length === 2) {
value = operator;
operator = '=';
}
// TODO: Add filter validation.
this.filters.push({
name: property.trim(),
op: operator.trim(),
val: value
});
return this;
};
/**
* Filter a query by ancestors.
*
* @resource [Datastore Ancestor Filters]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-ancestor-query-nodejs}
*
* @param {Key} key - Key object to filter by.
* @return {module:datastore/query}
*
* @example
* var ancestoryQuery = query.hasAncestor(datastore.key(['Parent', 123]));
*/
Query.prototype.hasAncestor = function(key) {
this.filters.push({ name: '__key__', op: 'HAS_ANCESTOR', val: key });
return this;
};
/**
* Sort the results by a property name in ascending or descending order. By
* default, an ascending sort order will be used.
*
* @resource [Datastore Sort Orders]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-ascending-sort-nodejs}
*
* @param {string} property - The property to order by.
* @param {object=} options - Options object.
* @param {boolean} options.descending - Sort the results by a property name
* in descending order. Default: `false`.
* @return {module:datastore/query}
*
* @example
* // Sort by size ascendingly.
* var companiesAscending = companyQuery.order('size');
*
* // Sort by size descendingly.
* var companiesDescending = companyQuery.order('size', {
* descending: true
* });
*/
Query.prototype.order = function(property, options) {
var sign = options && options.descending ? '-' : '+';
this.orders.push({ name: property, sign: sign });
return this;
};
/**
* Group query results by a list of properties.
*
* @param {array} properties - Properties to group by.
* @return {module:datastore/query}
*
* @example
* var groupedQuery = companyQuery.groupBy(['name', 'size']);
*/
Query.prototype.groupBy = function(fieldNames) {
this.groupByVal = arrify(fieldNames);
return this;
};
/**
* Retrieve only select properties from the matched entities.
*
* Queries that select a subset of properties are called Projection Queries.
*
* @resource [Projection Queries]{@link https://cloud.google.com/datastore/docs/concepts/projectionqueries}
*
* @param {string|string[]} fieldNames - Properties to return from the matched
* entities.
* @return {module:datastore/query}
*
* @example
* // Only retrieve the name property.
* var selectQuery = companyQuery.select('name');
*
* // Only retrieve the name and size properties.
* var selectQuery = companyQuery.select(['name', 'size']);
*/
Query.prototype.select = function(fieldNames) {
this.selectVal = arrify(fieldNames);
return this;
};
/**
* Set a starting cursor to a query.
*
* @resource [Query Cursors]{@link https://cloud.google.com/datastore/docs/concepts/queries#cursors_limits_and_offsets}
*
* @param {string} cursorToken - The starting cursor token.
* @return {module:datastore/query}
*
* @example
* var cursorToken = 'X';
*
* // Retrieve results starting from cursorToken.
* var startQuery = companyQuery.start(cursorToken);
*/
Query.prototype.start = function(start) {
this.startVal = start;
return this;
};
/**
* Set an ending cursor to a query.
*
* @resource [Query Cursors]{@link https://cloud.google.com/datastore/docs/concepts/queries#Datastore_Query_cursors}
*
* @param {string} cursorToken - The ending cursor token.
* @return {module:datastore/query}
*
* @example
* var cursorToken = 'X';
*
* // Retrieve results limited to the extent of cursorToken.
* var endQuery = companyQuery.end(cursorToken);
*/
Query.prototype.end = function(end) {
this.endVal = end;
return this;
};
/**
* Set a limit on a query.
*
* @resource [Query Limits]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-limit-nodejs}
*
* @param {number} n - The number of results to limit the query to.
* @return {module:datastore/query}
*
* @example
* // Limit the results to 10 entities.
* var limitQuery = companyQuery.limit(10);
*/
Query.prototype.limit = function(n) {
this.limitVal = n;
return this;
};
/**
* Set an offset on a query.
*
* @resource [Query Offsets]{@link https://cloud.google.com/datastore/docs/concepts/queries#datastore-limit-nodejs}
*
* @param {number} n - The offset to start from after the start cursor.
* @return {module:datastore/query}
*
* @example
* // Start from the 101st result.
* var offsetQuery = companyQuery.offset(100);
*/
Query.prototype.offset = function(n) {
this.offsetVal = n;
return this;
};
/**
* Run the query.
*
* @param {object=} options - Optional configuration.
* @param {string} options.consistency - Specify either `strong` or `eventual`.
* If not specified, default values are chosen by Datastore for the
* operation. Learn more about strong and eventual consistency
* [here](https://cloud.google.com/datastore/docs/articles/balancing-strong-and-eventual-consistency-with-google-cloud-datastore).
* @param {function=} callback - The callback function. If omitted, a readable
* stream instance is returned.
* @param {?error} callback.err - An error returned while making this request
* @param {object[]} callback.entities - A list of entities.
* @param {object} callback.info - An object useful for pagination.
* @param {?string} callback.info.endCursor - Use this in a follow-up query to
* begin from where these results ended.
* @param {string} callback.info.moreResults - Datastore responds with one of:
*
* - {module:datastore#MORE_RESULTS_AFTER_LIMIT}: There *may* be more
* results after the specified limit.
* - {module:datastore#MORE_RESULTS_AFTER_CURSOR}: There *may* be more
* results after the specified end cursor.
* - {module:datastore#NO_MORE_RESULTS}: There are no more results.
*
* @example
* query.run(function(err, entities, info) {
* // entities = An array of records.
*
* // Access the Key object for an entity.
* var firstEntityKey = entities[0][datastore.KEY];
* });
*
* //-
* // A keys-only query returns just the keys of the result entities instead of
* // the entities themselves, at lower latency and cost.
* //-
* query.select('__key__');
*
* query.run(function(err, entities) {
* var keys = entities.map(function(entity) {
* return entity[datastore.KEY];
* });
* });
*
* //-
* // If the callback is omitted, we'll return a Promise.
* //-
* query.run().then(function(data) {
* var entities = data[0];
* });
*/
Query.prototype.run = function() {
var query = this;
var args = [query].concat([].slice.call(arguments));
return this.scope.runQuery.apply(this.scope, args);
};
/**
* Run the query as a readable object stream.
*
* @param {object=} options - Optional configuration. See
* {module:datastore/query#run} for a complete list of options.
* @return {stream}
*
* @example
* query.runStream()
* .on('error', console.error)
* .on('data', function (entity) {
* // Access the Key object for this entity.
* var key = entity[datastore.KEY];
* })
* .on('info', function(info) {})
* .on('end', function() {
* // All entities retrieved.
* });
*
* //-
* // If you anticipate many results, you can end a stream early to prevent
* // unnecessary processing and API requests.
* //-
* query.runStream()
* .on('data', function (entity) {
* this.end();
* });
*/
Query.prototype.runStream = function() {
var query = this;
var args = [query].concat([].slice.call(arguments));
return this.scope.runQueryStream.apply(this.scope, args);
};
module.exports = Query;