cursor.js 14.6 KB
Newer Older
1
const ref = require('ref');
S
StoneT2000 已提交
2
require('./globalfunc.js')
3 4
const CTaosInterface = require('./cinterface')
const errors = require ('./error')
5
const TaosQuery = require('./taosquery')
S
StoneT2000 已提交
6
const { PerformanceObserver, performance } = require('perf_hooks');
7 8
module.exports = TDengineCursor;

9
/**
S
StoneT2000 已提交
10 11 12 13 14
 * @typedef {Object} Buffer - A Node.JS buffer. Please refer to {@link https://nodejs.org/api/buffer.html} for more details
 * @global
 */

/**
15
 * @class TDengineCursor
S
StoneT2000 已提交
16 17 18 19
 * @classdesc  The TDengine Cursor works directly with the C Interface which works with TDengine. It refrains from
 * returning parsed data and majority of functions return the raw data such as cursor.fetchall() as compared to the TaosQuery class which
 * has functions that "prettify" the data and add more functionality and can be used through cursor.query("your query"). Instead of
 * promises, the class and its functions use callbacks.
20 21
 * @param {TDengineConnection} - The TDengine Connection this cursor uses to interact with TDengine
 * @property {data} - Latest retrieved data from query execution. It is an empty array by default
S
StoneT2000 已提交
22 23
 * @property {fields} - Array of the field objects in order from left to right of the latest data retrieved
 * @since 1.0.0
24
 */
25
function TDengineCursor(connection=null) {
26
  //All parameters are store for sync queries only.
27 28 29 30 31
  this._description = null;
  this._rowcount = -1;
  this._connection = null;
  this._result = null;
  this._fields = null;
32
  this.data = [];
S
StoneT2000 已提交
33
  this.fields = null;
34
  this._chandle = new CTaosInterface(null, true); //pass through, just need library loaded.
35 36 37 38 39
  if (connection != null) {
    this._connection = connection
  }

}
40 41
/**
 * Get the description of the latest query
S
StoneT2000 已提交
42
 * @since 1.0.0
43 44
 * @return {string} Description
 */
45 46 47
TDengineCursor.prototype.description = function description() {
  return this._description;
}
48 49
/**
 * Get the row counts of the latest query
S
StoneT2000 已提交
50
 * @since 1.0.0
51 52
 * @return {number} Rowcount
 */
53 54 55 56 57 58
TDengineCursor.prototype.rowcount = function rowcount() {
  return this._rowcount;
}
TDengineCursor.prototype.callproc = function callproc() {
  return;
}
59 60 61
/**
 * Close the cursor by setting its connection to null and freeing results from the connection and resetting the results it has stored
 * @return {boolean} Whether or not the cursor was succesfully closed
S
StoneT2000 已提交
62
 * @since 1.0.0
63
 */
64 65 66 67
TDengineCursor.prototype.close = function close() {
  if (this._connection == null) {
    return false;
  }
68
  this._connection._clearResultSet();
69 70 71 72
  this._reset_result();
  this._connection = null;
  return true;
}
73
/**
S
StoneT2000 已提交
74 75 76 77 78 79 80 81
 * Create a TaosQuery object to perform a query to TDengine and retrieve data.
 * @param {string} operation - The operation string to perform a query on
 * @param {boolean} execute - Whether or not to immedietely perform the query. Default is false.
 * @return {TaosQuery | Promise<TaosResult>} A TaosQuery object
 * @example
 * var query = cursor.query("select count(*) from meterinfo.meters");
 * query.execute();
 * @since 1.0.6
82
 */
S
StoneT2000 已提交
83 84
TDengineCursor.prototype.query = function query(operation, execute = false) {
  return new TaosQuery(operation, this, execute);
85 86 87
}

/**
S
StoneT2000 已提交
88 89 90 91 92 93 94 95
 * Execute a query. Also stores all the field meta data returned from the query into cursor.fields. It is preferable to use cursor.query() to create
 * queries and execute them instead of using the cursor object directly.
 * @param {string} operation - The query operation to execute in the taos shell
 * @param {Object} options - Execution options object. quiet : true turns off logging from queries
 * @param {boolean} options.quiet - True if you want to surpress logging such as "Query OK, 1 row(s) ..."
 * @param {function} callback - A callback function to execute after the query is made to TDengine
 * @return {number | Buffer} Number of affected rows or a Buffer that points to the results of the query
 * @since 1.0.0
96
 */
S
StoneT2000 已提交
97
TDengineCursor.prototype.execute = function execute(operation, options, callback) {
98
  if (operation == undefined) {
99
    throw new errors.ProgrammingError('No operation passed as argument');
100 101
    return null;
  }
S
StoneT2000 已提交
102 103 104 105 106

  if (typeof options == 'function')  {
    callback = options;
  }
  if (typeof options != 'object') options = {}
107 108 109
  if (this._connection == null) {
    throw new errors.ProgrammingError('Cursor is not connected');
  }
110
  this._connection._clearResultSet();
111 112 113
  this._reset_result();

  let stmt = operation;
S
StoneT2000 已提交
114 115 116 117 118 119 120
  let time = 0;
  const obs = new PerformanceObserver((items) => {
    time = items.getEntries()[0].duration;
    performance.clearMarks();
  });
  obs.observe({ entryTypes: ['measure'] });
  performance.mark('A');
121
  res = this._chandle.query(this._connection._conn, stmt);
122
  performance.mark('B');
S
StoneT2000 已提交
123 124
  performance.measure('query', 'A', 'B');

125
  if (res == 0) {
126
    let fieldCount = this._chandle.fieldsCount(this._connection._conn);
127
    if (fieldCount == 0) {
S
StoneT2000 已提交
128 129 130 131 132 133 134
      let affectedRowCount = this._chandle.affectedRows(this._connection._conn);
      let response = this._createAffectedResponse(affectedRowCount, time)
      if (options['quiet'] != true) {
        console.log(response);
      }
      wrapCB(callback);
      return affectedRowCount; //return num of affected rows, common with insert, use statements
135 136
    }
    else {
137
      let resAndField = this._chandle.useResult(this._connection._conn, fieldCount)
138 139
      this._result = resAndField.result;
      this._fields = resAndField.fields;
S
StoneT2000 已提交
140 141
      this.fields = resAndField.fields;
      wrapCB(callback);
142
      return this._handle_result(); //return a pointer to the result
143 144 145
    }
  }
  else {
146
    throw new errors.ProgrammingError(this._chandle.errStr(this._connection._conn))
147 148 149
  }

}
S
StoneT2000 已提交
150 151 152 153 154 155
TDengineCursor.prototype._createAffectedResponse = function (num, time) {
  return "Query OK, " + num  + " row(s) affected (" + (time * 0.001).toFixed(8) + "s)";
}
TDengineCursor.prototype._createSetResponse = function (num, time) {
  return "Query OK, " + num  + " row(s) in set (" + (time * 0.001).toFixed(8) + "s)";
}
156 157 158 159 160 161 162 163 164
TDengineCursor.prototype.executemany = function executemany() {

}
TDengineCursor.prototype.fetchone = function fetchone() {

}
TDengineCursor.prototype.fetchmany = function fetchmany() {

}
165
/**
S
StoneT2000 已提交
166 167 168 169
 * Fetches all results from a query and also stores results into cursor.data. It is preferable to use cursor.query() to create
 * queries and execute them instead of using the cursor object directly.
 * @param {function} callback - callback function executing on the complete fetched data
 * @return {Array<Array>} The resultant array, with entries corresponding to each retreived row from the query results, sorted in
170
 * order by the field name ordering in the table.
S
StoneT2000 已提交
171
 * @since 1.0.0
172 173
 * @example
 * cursor.execute('select * from db.table');
S
StoneT2000 已提交
174 175 176
 * var data = cursor.fetchall(function(results) {
 *   results.forEach(row => console.log(row));
 * })
177
 */
S
StoneT2000 已提交
178
TDengineCursor.prototype.fetchall = function fetchall(options, callback) {
179
  if (this._result == null || this._fields == null) {
S
StoneT2000 已提交
180
    throw new errors.OperationalError("Invalid use of fetchall, either result or fields from query are null. First execute a query first");
181
  }
S
StoneT2000 已提交
182

183 184
  let data = [];
  this._rowcount = 0;
S
StoneT2000 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198
  //let nodetime = 0;
  let time = 0;
  const obs = new PerformanceObserver((items) => {
    time += items.getEntries()[0].duration;
    performance.clearMarks();
  });
  /*
  const obs2 = new PerformanceObserver((items) => {
    nodetime += items.getEntries()[0].duration;
    performance.clearMarks();
  });
  obs2.observe({ entryTypes: ['measure'] });
  performance.mark('nodea');
  */
199 200
  obs.observe({ entryTypes: ['measure'] });
  performance.mark('A');
201
  while(true) {
202

203
    let blockAndRows = this._chandle.fetchBlock(this._result, this._fields);
204

205 206 207 208 209 210 211 212 213
    let block = blockAndRows.blocks;
    let num_of_rows = blockAndRows.num_of_rows;

    if (num_of_rows == 0) {
      break;
    }
    this._rowcount += num_of_rows;
    for (let i = 0; i < num_of_rows; i++) {
      data.push([]);
S
StoneT2000 已提交
214
      let rowBlock = new Array(this._fields.length);
215
      for (let j = 0; j < this._fields.length; j++) {
S
StoneT2000 已提交
216
        rowBlock[j] = block[j][i];
217
      }
S
StoneT2000 已提交
218
      data[data.length-1] = (rowBlock);
219
    }
220

221
  }
222 223
  performance.mark('B');
  performance.measure('query', 'A', 'B');
S
StoneT2000 已提交
224 225 226
  let response = this._createSetResponse(this._rowcount, time)
  console.log(response);

227
  this._connection._clearResultSet();
S
StoneT2000 已提交
228 229
  let fields = this.fields;
  this._reset_result();
230
  this.data = data;
S
StoneT2000 已提交
231
  this.fields = fields;
232

S
StoneT2000 已提交
233 234
  wrapCB(callback, data);

235
  return data;
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
/**
 * Asynchrnously execute a query to TDengine. NOTE, insertion requests must be done in sync if on the same table.
 * @param {string} operation - The query operation to execute in the taos shell
 * @param {Object} options - Execution options object. quiet : true turns off logging from queries
 * @param {boolean} options.quiet - True if you want to surpress logging such as "Query OK, 1 row(s) ..."
 * @param {function} callback - A callback function to execute after the query is made to TDengine
 * @return {number | Buffer} Number of affected rows or a Buffer that points to the results of the query
 * @since 1.0.0
 */
TDengineCursor.prototype.execute_a = function execute_a (operation, options, callback, param) {
  if (operation == undefined) {
    throw new errors.ProgrammingError('No operation passed as argument');
    return null;
  }
  if (typeof options == 'function')  {
    //we expect the parameter after callback to be param
    param = callback;
    callback = options;
  }
  if (typeof options != 'object') options = {}
  if (this._connection == null) {
    throw new errors.ProgrammingError('Cursor is not connected');
  }
  if (typeof callback != 'function') {
    throw new errors.ProgrammingError("No callback function passed to execute_a function");
  }
  // Async wrapper for callback;
  var cr = this;

  let asyncCallbackWrapper = function (param2, res2, resCode) {
    if (typeof callback == 'function') {
      callback(param2, res2, resCode);
    }

    if (resCode >= 0) {
      let fieldCount = cr._chandle.numFields(res2);
      if (fieldCount == 0) {
        //get affect fields count
        cr._chandle.freeResult(res2); //result will no longer be needed
      }
      else {
        return res2;
      }

    }
    else {
      //new errors.ProgrammingError(this._chandle.errStr(this._connection._conn))
      //how to get error by result handle?
      throw new errors.ProgrammingError("Error occuring with use of execute_a async function. Status code was returned with failure");
    }
  }
  this._connection._clearResultSet();
  let stmt = operation;
  let time = 0;

  // Use ref module to write to buffer in cursor.js instead of taosquery to maintain a difference in levels. Have taosquery stay high level
  // through letting it pass an object as param
  var buf = ref.alloc('Object');
  ref.writeObject(buf, 0, param);
  const obs = new PerformanceObserver((items) => {
    time = items.getEntries()[0].duration;
    performance.clearMarks();
  });
  obs.observe({ entryTypes: ['measure'] });
  performance.mark('A');
  this._chandle.query_a(this._connection._conn, stmt, asyncCallbackWrapper, buf);
  performance.mark('B');
  performance.measure('query', 'A', 'B');
  return param;


}
/**
 * Fetches all results from an async query. It is preferable to use cursor.query_a() to create
 * async queries and execute them instead of using the cursor object directly.
 * @param {Object} options - An options object containing options for this function
 * @param {function} callback - callback function that is callbacked on the COMPLETE fetched data (it is calledback only once!).
 * Must be of form function (param, result, rowCount, rowData)
 * @param {Object} param - A parameter that is also passed to the main callback function. Important! Param must be an object, and the key "data" cannot be used
 * @return {{param:Object, result:buffer}} An object with the passed parameters object and the buffer instance that is a pointer to the result handle.
 * @since 1.2.0
 * @example
 * cursor.execute('select * from db.table');
 * var data = cursor.fetchall(function(results) {
 *   results.forEach(row => console.log(row));
 * })
 */
TDengineCursor.prototype.fetchall_a = function fetchall_a(result, options, callback, param = {}) {
  if (typeof options == 'function')  {
    //we expect the parameter after callback to be param
    param = callback;
    callback = options;
  }
  if (typeof options != 'object') options = {}
  if (this._connection == null) {
    throw new errors.ProgrammingError('Cursor is not connected');
  }
  if (typeof callback != 'function') {
    throw new errors.ProgrammingError('No callback function passed to fetchall_a function')
  }
  if (param.data) {
    throw new errors.ProgrammingError("You aren't allowed to set the key 'data' for the parameters object");
  }
  let buf = ref.alloc('Object');
  param.data = [];
  var cr = this;

  // This callback wrapper accumulates the data from the fetch_rows_a function from the cinterface. It is accumulated by passing the param2
  // object which holds accumulated data in the data key.
  let asyncCallbackWrapper = function asyncCallbackWrapper(param2, result2, numOfRows2, rowData) {
    param2 = ref.readObject(param2); //return the object back from the pointer
    // Keep fetching until now rows left.
    if (numOfRows2 > 0) {
      let buf2 = ref.alloc('Object');
      param2.data.push(rowData);
      ref.writeObject(buf2, 0, param2);
      cr._chandle.fetch_rows_a(result2, asyncCallbackWrapper, buf2);
    }
    else {

      let finalData = param2.data;
      let fields = cr._chandle.fetchFields_a(result2);
      let data = [];
      for (let i = 0; i < finalData.length; i++) {
        let num_of_rows = finalData[i][0].length; //fetched block number i;
        let block = finalData[i];
        for (let j = 0; j < num_of_rows; j++) {
          data.push([]);
          let rowBlock = new Array(fields.length);
          for (let k = 0; k < fields.length; k++) {
            rowBlock[k] = block[k][j];
          }
          data[data.length-1] = rowBlock;
        }
      }
      cr._chandle.freeResult(result2); // free result, avoid seg faults and mem leaks!
      callback(param2, result2, numOfRows2, {data:data,fields:fields});
    }
  }
  ref.writeObject(buf, 0, param);
  param = this._chandle.fetch_rows_a(result, asyncCallbackWrapper, buf); //returned param
  return {param:param,result:result};
}
380 381 382 383 384 385 386 387 388 389 390 391 392 393
TDengineCursor.prototype.nextset = function nextset() {
  return;
}
TDengineCursor.prototype.setinputsize = function setinputsize() {
  return;
}
TDengineCursor.prototype.setoutputsize = function setoutputsize(size, column=null) {
  return;
}
TDengineCursor.prototype._reset_result = function _reset_result() {
  this._description = null;
  this._rowcount = -1;
  this._result = null;
  this._fields = null;
394
  this.data = [];
S
StoneT2000 已提交
395
  this.fields = null;
396 397 398 399
}
TDengineCursor.prototype._handle_result = function _handle_result() {
  this._description = [];
  for (let field of this._fields) {
S
StoneT2000 已提交
400
    this._description.push([field.name, field.type]);
401 402 403
  }
  return this._result;
}