-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathhdb.js
514 lines (465 loc) · 15.3 KB
/
hdb.js
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
const { Readable, Stream, promises: { pipeline } } = require('stream')
const { StringDecoder } = require('string_decoder')
const { text } = require('stream/consumers')
const cds = require('@sap/cds')
const hdb = require('hdb')
const iconv = require('iconv-lite')
const { driver, prom, handleLevel } = require('./base')
const { isDynatraceEnabled: dt_sdk_is_present, dynatraceClient: wrap_client } = require('./dynatrace')
if (cds.env.features.sql_simple_queries) {
// Make hdb return true / false
const Reader = require('hdb/lib/protocol/Reader.js')
Reader.prototype._readTinyInt = Reader.prototype.readTinyInt
Reader.prototype.readTinyInt = function () {
const ret = this._readTinyInt()
return ret == null ? ret : !!ret
}
}
const credentialMappings = [
{ old: 'certificate', new: 'ca' },
{ old: 'encrypt', new: 'useTLS' },
{ old: 'sslValidateCertificate', new: 'rejectUnauthorized' },
{ old: 'validate_certificate', new: 'rejectUnauthorized' },
]
class HDBDriver extends driver {
/**
* Instantiates the HDBDriver class
* @param {import('./base').Credentials} creds The credentials for the HDBDriver instance
*/
constructor(creds) {
creds = {
fetchSize: 1 << 16, // V8 default memory page size
...creds,
}
// Retain hana credential mappings to hdb / node credential mapping
for (const m of credentialMappings) {
if (m.old in creds && !(m.new in creds)) creds[m.new] = creds[m.old]
}
super(creds)
this._native = hdb.createClient(creds)
if (dt_sdk_is_present()) this._native = wrap_client(this._native, creds, creds.tenant)
this._native.setAutoCommit(false)
this._native.on('close', () => this.destroy?.())
this.connected = false
}
set(variables) {
const clientInfo = this._native._connection.getClientInfo()
for (const key in variables) {
clientInfo.setProperty(key, variables[key])
}
}
async validate() {
return this._native.readyState === 'connected'
}
/**
* Connects the driver using the provided credentials
* @returns {Promise<any>}
*/
async connect() {
this.connected = prom(this._native, 'connect')(this._creds)
return this.connected.then(async () => {
const [version] = await Promise.all([
prom(this._native, 'exec')('SELECT VERSION FROM "SYS"."M_DATABASE"'),
this._creds.schema && prom(this._native, 'exec')(`SET SCHEMA ${this._creds.schema}`),
])
const split = version[0].VERSION.split('.')
this.server = {
major: split[0],
minor: split[2],
patch: split[3],
}
})
}
async prepare(sql, hasBlobs) {
const ret = await super.prepare(sql)
if (hasBlobs) {
ret.all = async (values) => {
const stmt = await ret._prep
// Create result set
const rs = await prom(stmt, 'execute')(values)
const cols = rs.metadata.map(b => b.columnName)
const stream = rs.createReadStream()
const result = []
for await (const row of stream) {
const obj = {}
for (let i = 0; i < cols.length; i++) {
const col = cols[i]
// hdb returns large strings as streams sometimes
if (col === '_json_' && typeof row[col] === 'object') {
obj[col] = await text(row[col].createReadStream())
continue
}
obj[col] = i > 3
? row[col] === null
? null
: (
row[col].createReadStream?.()
|| row[col]
)
: row[col]
}
result.push(obj)
}
return result
}
}
ret.proc = async (data, outParameters) => {
const rows = await ret.all(data)
return this._getResultForProcedure(rows, outParameters)
}
ret.stream = async (values, one) => {
const stmt = await ret._prep
const rs = await prom(stmt, 'execute')(values || [])
const cols = rs.metadata
// If the query only returns a single row with a single blob it is the final stream
if (cols.length === 1 && cols[0].length === -1) {
const rowStream = rs.createObjectStream()
const { done, value } = await rowStream[Symbol.asyncIterator]().next()
if (done || !value[cols[0].columnName]) return null
const blobStream = value[cols[0].columnName].createReadStream()
blobStream.on('close', () => {
rowStream.end()
rs.close()
})
return blobStream
}
// Create ResultSet stream from ResultSet iterator
return Readable.from(rsIterator(rs, one))
}
return ret
}
_getResultForProcedure(rows, outParameters) {
// on hdb, rows already contains results for scalar params
const isArray = Array.isArray(rows)
const result = isArray ? { ...rows[0] } : { ...rows }
// merge table output params into scalar params
const args = isArray ? rows.slice(1) : []
if (args && args.length && outParameters) {
const params = outParameters.filter(md => !(md.PARAMETER_NAME in (isArray ? rows[0] : rows)))
for (let i = 0; i < params.length; i++) {
result[params[i].PARAMETER_NAME] = args[i]
}
}
return result
}
_extractStreams(values) {
// Removes all streams from the values and replaces them with a placeholder
if (!Array.isArray(values)) return { values: [], streams: [] }
const streams = []
values = values.map((v, i) => {
if (v instanceof Stream) {
if (this._creds.useCesu8 !== false && v.type === 'json') {
const encode = iconv.encodeStream('cesu8')
v.setEncoding('utf-8')
// hdb will react to the stream error no need to handle it twice
pipeline(v, encode).catch(() => { })
return encode
}
streams[i] = v
const iterator = v[Symbol.asyncIterator]()
return Readable.from(iterator, { objectMode: false })
}
return v
})
return {
values,
streams,
}
}
}
async function* rsIterator(rs, one) {
// Raw binary data stream unparsed
const raw = rs.createBinaryStream()[Symbol.asyncIterator]()
const nativeBlobs = rs.metadata.slice(4).map(b => b.columnName)
const levels = [
{
index: 0,
suffix: one ? '' : ']',
path: '$[',
expands: {},
},
]
const state = {
rs,
levels,
reading: 0,
writing: 0,
buffer: Buffer.allocUnsafe(0),
yields: [],
done() {
// Validate whether the current buffer is finished reading
if (this.buffer.byteLength <= this.reading) {
return raw.next().then(next => {
if (next.done || next.value.byteLength === 0) {
return true
}
this.yields.push(this.buffer.slice(0, this.writing))
// Update state
this.buffer = next.value
this.reading = 0
this.writing = 0
})
.catch(() => {
// TODO: check whether the error is early close
return true
})
}
},
ensure(size) {
const totalSize = this.reading + size
if (this.buffer.byteLength >= totalSize) {
return
}
return raw.next().then(next => {
if (next.done) {
throw new Error('Trying to read more bytes than are available')
}
// Write processed buffer to stream
if (this.writing) this.yields.push(this.buffer.slice(0, this.writing))
// Keep unread buffer and prepend to new buffer
const leftover = this.buffer.slice(this.reading)
// Update state
this.buffer = Buffer.concat([leftover, next.value])
this.reading = 0
this.writing = 0
})
},
read(nr) {
this.reading += nr
},
write(length, encoding) {
const bytesLeft = this.buffer.byteLength - this.reading
if (bytesLeft < length) {
// Copy leftover bytes
if (encoding) {
let slice = Buffer.from(iconv.decode(this.buffer.slice(this.reading), 'cesu8'), 'binary')
this.prefetchDecodedSize = slice.byteLength
const encoded = Buffer.from(encoding.write(slice))
if (this.writing + encoded.byteLength > this.buffer.byteLength) {
this.yields.push(this.buffer.slice(0, this.writing))
this.yields.push(encoded)
} else {
this.buffer.copy(encoded, this.writing)
this.writing += encoded.byteLength
this.yields.push(this.buffer.slice(0, this.writing))
}
} else {
this.buffer.copyWithin(this.writing, this.reading)
this.writing += bytesLeft
this.yields.push(this.buffer.slice(0, this.writing))
}
return raw.next().then(next => {
length = length - bytesLeft
if (next.done) {
throw new Error('Trying to read more byte then are available')
}
// Update state
this.buffer = next.value
this.reading = 0
this.writing = 0
return this.write(length, encoding)
})
}
if (encoding) {
let slice = Buffer.from(iconv.decode(this.buffer.slice(this.reading, this.reading + length), 'cesu8'), 'binary')
this.prefetchDecodedSize = slice.byteLength
const encoded = Buffer.from(encoding.write(slice))
const nextWriting = this.writing + encoded.byteLength
const nextReading = this.reading + length
if (nextWriting > this.buffer.byteLength || nextWriting > nextReading) {
this.yields.push(this.buffer.slice(0, this.writing))
this.yields.push(encoded)
this.buffer = this.buffer.slice(nextReading)
this.reading = 0
this.writing = 0
} else {
this.buffer.copy(encoded, this.writing)
this.writing += encoded.byteLength
this.reading += length
}
} else {
this.buffer.copyWithin(this.writing, this.reading, this.reading + length)
this.writing += length
this.reading += length
}
},
inject(str) {
str = Buffer.from(str)
if (this.writing + str.byteLength > this.reading) {
this.yields.push(this.buffer.slice(0, this.writing))
this.yields.push(str)
this.buffer = this.buffer.slice(this.reading)
this.writing = 0
this.reading = 0
return
}
str.copy(this.buffer, this.writing)
this.writing += str.byteLength
},
slice(length) {
const ens = this.ensure(length)
if (ens) return ens.then(() => this.slice(length))
const ret = this.buffer.slice(this.reading, this.reading + length)
this.reading += length
return ret
},
}
if (!one) {
state.inject('[')
}
let isDone = state.done()
if (isDone) {
isDone = await isDone
}
while (!isDone) {
// Made all functions possible promises giving a 5x speed up
const _path = readString(state)
const path = (typeof _path === 'string' ? _path : await _path).toString('utf-8')
const _blobs = readString(state)
const blobs = JSON.parse(typeof _blobs === 'string' ? _blobs : await _blobs)
const _expands = readString(state)
const expands = JSON.parse(typeof _expands === 'string' ? _expands : await _expands)
state.inject(handleLevel(levels, path, expands))
// REVISIT: allow streaming with both NVARCHAR and NCLOB
// Read and write JSON blob data
const jsonLength = readString(state, true)
let hasProperties = (typeof jsonLength === 'number' ? jsonLength : await jsonLength) > 2
for (const blobColumn of nativeBlobs) {
// Skip all blobs that are not part of this row
if (!(blobColumn in blobs)) {
state.read(2)
continue
}
if (hasProperties) state.inject(',')
hasProperties = true
state.inject(`${JSON.stringify(blobColumn)}:`)
const blobLength = readBlob(state, new StringDecoder('base64'))
if (typeof blobLength !== 'number') await blobLength
}
const level = levels[levels.length - 1]
level.hasProperties = hasProperties
for (const y of state.yields) {
if (y.byteLength) {
yield y
}
}
state.yields = []
isDone = state.done()
if (isDone) {
isDone = await isDone
}
}
state.inject(
levels
.reverse()
.map(l => l.suffix)
.join(''),
)
if (state.writing) {
state.yields.push(state.buffer.slice(0, state.writing))
}
for (const y of state.yields) {
if (y.byteLength) {
yield y
}
}
rs.close()
}
const readString = function (state, isJson = false) {
let ens = state.ensure(1)
if (ens) return ens.then(() => readString(state, isJson))
let length = state.buffer[state.reading]
let offset = 1
switch (length) {
case 0xff:
throw new Error('Missing stream metadata')
case 0xf6:
ens = state.ensure(2)
if (ens) return ens.then(() => readString(state, isJson))
length = state.buffer.readInt16LE(state.reading + offset)
offset += 2
break
case 0xf7:
ens = state.ensure(4)
if (ens) return ens.then(() => readString(state, isJson))
length = state.buffer.readInt32LE(state.reading + offset)
offset += 4
break
default:
}
// Read the string value
state.read(offset)
if (isJson) {
state.write(length - 1)
state.read(1)
return length
}
return state.slice(length)
}
const { readInt64LE } = require('hdb/lib/util/bignum.js')
const readBlob = function (state, encoding) {
// Check if the blob is null
let ens = state.ensure(2)
if (ens) return ens.then(() => readBlob(state, encoding))
if (state.buffer[state.reading + 1] & 1) {
state.read(2)
state.inject('null')
return null
}
// Read actual chunk size
ens = state.ensure(32)
if (ens) return ens.then(() => readBlob(state, encoding))
// const charLength = readInt64LE(state.buffer, state.reading + 4)
const byteLength = readInt64LE(state.buffer, state.reading + 12)
const locatorId = Buffer.from(state.buffer.slice(state.reading + 20, state.reading + 28).toString('hex'), 'hex')
const length = state.buffer.readInt32LE(state.reading + 28)
state.read(32)
if (encoding) {
state.inject('"')
}
let hasMore = length < byteLength
const skipLast = !encoding && !hasMore
const preFetchRead = skipLast ? length - 1 : length
state.prefetchDecodedSize = length
const write = state.write(preFetchRead, encoding)
if (skipLast) {
state.read(1)
}
const after = () => {
if (encoding) {
state.inject(encoding.end())
state.inject('"')
}
return byteLength
}
const next = () => {
if (hasMore) {
return new Promise((resolve, reject) => {
state.rs._connection.readLob(
{
locatorId: locatorId,
// REVISIT: identify why large binaries are a byte to long
offset: state.prefetchDecodedSize + 1 || length,
length: 1 << 16,
},
(err, data) => {
if (err) return reject(err)
const isLast = data.readLobReply.isLast
let chunk = isLast && !encoding ? data.readLobReply.chunk.slice(0, -1) : data.readLobReply.chunk
state.inject(encoding ? encoding.write(chunk) : chunk)
if (isLast) {
hasMore = false
}
resolve()
},
)
}).then(next)
}
return after()
}
if (write?.then) {
return write.then(next)
}
return next()
}
module.exports.driver = HDBDriver