Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
146 lines (136 loc) · 4.91 KB

File metadata and controls

146 lines (136 loc) · 4.91 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
* Copyright 2017 MarkLogic Corporation
*
* 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.
*/
'use strict';
const marklogic = require('../');
const testconfig = require('../etc/test-config');
const dbWriter = marklogic.createDatabaseClient(testconfig.restWriterConnection);
const dbReader = marklogic.createDatabaseClient(testconfig.restReaderConnection);
// TODO: remove temporary hack
const PlanBuilder = require('../lib/plan-builder');
const planBuilder = PlanBuilder.builder;
// TODO: remove temporary hack
const testlib = require('../etc/test-lib');
const rowMgrOld = testlib.createManager(dbReader);
const rowMgr = dbReader.rows;
const lit = planBuilder.fromLiterals({rowId:1});
function makeInput(values) {
if (values === void 0) {
return lit;
}
return lit.select(values.map((value, i) => planBuilder.as(String(i + 1), value)));
}
function makeTest(input, expression) {
return input.select(planBuilder.as('t', expression));
}
// TODO: delete temporary hack
function execPlanOld(query, bindings, output, accept) {
const rowOutput = (output === void 0 || output === null) ? 'object' : output;
const baseEndpoint = '/v1/rows?output='+rowOutput;
const endpoint = (bindings === void 0 || bindings === null) ? baseEndpoint :
baseEndpoint+Object.keys(bindings).map(key => {
const binding = bindings[key];
const isSimple = (typeof binding !== 'object' || (binding instanceof String) ||
(binding instanceof Number) || (binding instanceof Boolean) || binding === null);
const bindValue = isSimple ? binding : binding.value;
if (bindValue === void 0) {
throw new Error(`binding for ${key} without value: ${binding}`);
}
const type = isSimple ? (void 0) : binding.type;
const lang = isSimple ? (void 0) : binding.lang;
if (type !== void 0 && lang !== void 0) {
throw new Error(`binding for ${key} with type and lang: ${binding}`);
}
const name = encodeURIComponent(key);
const bindName =
(type !== void 0) ? name+':'+type :
(lang !== void 0) ? name+'@'+lang :
name;
return `&bind:${bindName}=${encodeURIComponent(bindValue)}`;
}).join('');
// console.log(JSON.stringify(query.export(),null,2));
// console.log(endpoint);
return rowMgrOld.post({
endpoint: endpoint,
headers: {
'content-type': 'application/json',
accept: (accept === void 0 || accept === null) ? 'application/json' : accept
},
body: query.export()
});
}
function execPlan(query, bindings, output) {
const plan = JSON.stringify(query.export());
// console.log(plan);
const rowOutput = (output === void 0 || output === null) ? 'object' : output;
if (bindings === void 0 || bindings === null) {
return rowMgr.query(plan, {format: 'json', output: rowOutput});
}
return rowMgr.query(plan, {format: 'json', output: rowOutput, bindings:bindings});
}
function explainPlan(query, format) {
const plan = JSON.stringify(query.export());
return rowMgr.explain(plan, {
format: (format === void 0 || format === null) ? 'json' : format
});
}
function testPlan(values, expression) {
return execPlan(makeTest(makeInput(values), expression));
}
function getResults(response) {
if (response.statusCode >= 500) {
const err = new Error(response.statusCode);
err.response = response;
throw err;
}
if (Array.isArray(response) && response.length > 0 && Array.isArray(response[0].columns)) {
return response.slice(1);
}
/*
const rows = response.rows;
if (rows === void 0) {
return response;
}
return rows;
*/
return response;
}
function getResult(response) {
return getResults(response)[0].t;
}
function makeSelectCall(list) {
return lit.select(list);
}
function makeSelectExport(list) {
return {$optic:{ns:'op', fn:'operators', args:[
{ns:'op', fn:'from-literals', args:[[{rowId:1}]]},
{ns:'op', fn:'select', args: Array.isArray(list) ? list : [list] }
]}};
}
module.exports = {
dbReader: dbReader,
dbWriter: dbWriter,
planBuilder: planBuilder,
execPlan: execPlan,
execPlanOld: execPlanOld, // TODO: delete temporary hack
explainPlan: explainPlan,
getResult: getResult,
getResults: getResults,
makeInput: makeInput,
makeSelectCall: makeSelectCall,
makeSelectExport: makeSelectExport,
makeTest: makeTest,
testPlan: testPlan
};
Morty Proxy This is a proxified and sanitized view of the page, visit original site.