pg-native
Version:
A slightly nicer interface to Postgres over node-libpq
79 lines (67 loc) • 1.95 kB
JavaScript
'use strict'
class Result {
constructor(types, arrayMode) {
this._types = types
this._arrayMode = arrayMode
this.command = undefined
this.rowCount = undefined
this.fields = []
this.rows = []
this._prebuiltEmptyResultObject = null
}
consumeCommand(pq) {
this.command = pq.cmdStatus().split(' ')[0]
this.rowCount = parseInt(pq.cmdTuples(), 10)
}
consumeFields(pq) {
const nfields = pq.nfields()
this.fields = new Array(nfields)
const row = {}
for (let x = 0; x < nfields; x++) {
const name = pq.fname(x)
row[name] = null
this.fields[x] = {
name: name,
dataTypeID: pq.ftype(x),
}
}
this._prebuiltEmptyResultObject = { ...row }
}
consumeRows(pq) {
const tupleCount = pq.ntuples()
this.rows = new Array(tupleCount)
for (let i = 0; i < tupleCount; i++) {
this.rows[i] = this._arrayMode ? this.consumeRowAsArray(pq, i) : this.consumeRowAsObject(pq, i)
}
}
consumeRowAsObject(pq, rowIndex) {
const row = { ...this._prebuiltEmptyResultObject }
for (let j = 0; j < this.fields.length; j++) {
row[this.fields[j].name] = this.readValue(pq, rowIndex, j)
}
return row
}
consumeRowAsArray(pq, rowIndex) {
const row = new Array(this.fields.length)
for (let j = 0; j < this.fields.length; j++) {
row[j] = this.readValue(pq, rowIndex, j)
}
return row
}
readValue(pq, rowIndex, colIndex) {
const rawValue = pq.getvalue(rowIndex, colIndex)
if (rawValue === '' && pq.getisnull(rowIndex, colIndex)) {
return null
}
const dataTypeId = this.fields[colIndex].dataTypeID
return this._types.getTypeParser(dataTypeId)(rawValue)
}
}
function buildResult(pq, types, arrayMode) {
const result = new Result(types, arrayMode)
result.consumeCommand(pq)
result.consumeFields(pq)
result.consumeRows(pq)
return result
}
module.exports = buildResult