Skip to content

ACMESDS/_dsvar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

/** @class DSVAR SourceForge github geointapps gitlab

DSVAR

DSVAR provides a JS-agnosticator to a (default MySQL-Cluster) database:

var DSVAR = require("dsvar");

DSVAR.thread( function (sql) {
	sql.context( {ds1:ATTRIBUTES, ds2:ATTRIBUTES, ... }, function (ctx) {

		var ds1 = ctx.ds1, ds2 = ctx.ds2, ...;

	});
});

where dsN are datasets, sql in a MySQL connector, and dataset ATTRIBUTES = {key:value, ... } are described below. Alternatively, a lone dataset can be created thusly:

var DSVAR = require("dsvar");

DSVAR.thread( function (sql) {
	var ds = new DSVAR.DS(sql, ATTRIBUTES);
})

The following JS-agnosticated CRUD queries can then be performed:

ds.rec = { FIELD:VALUE, ... }		// update matched record(s) 
ds.rec = [ {...}, {...}, ... ]		// insert record(s)
ds.rec = null 		// delete matched record(s)
ds.rec = function CB(recs,me) {...}			// select matched record(s)

with callback to a response CB method when the query completes. Alternatively, queries can be issued like this:

ds.res = callback() { ... }
ds.data = [ ... ]
ds.rec = CRUDE

or in record-locked mode using:

ds.rec = "lock." + CRUDE

where CRUDE = "select" | "delete" | "update" | "insert" | "execute".

Dataset ATTRIBUTES = { key: value, ... } provide SQL agnostication:

table: 	DB.TABLE || TABLE
where: 	[ FIELD, FIELD, ... ] | { CLAUSE:null, nlp:PATTERN, bin:PATTERN, qex:PATTERN, has:PATTERN, like:PATTERN, FIELD:VALUE, FIELD:[MIN,MAX], ...} | CLAUSE
res: 	function CB(ds) {...}
having: [ FIELD, VALUE ] | [ FIELD, MIN, MAX ] | {FIELD:VALUE, CLAUSE:null, FIELD:[MIN,MAX], ...} | CLAUSE
order: 	[ {FIELD:ORDER, ...}, {property:FIELD, direction:ORDER}, FIELD, ...] | "FIELD, ..."
group: 	[ FIELD, ...] | "FIELD, ..."
limit: 	[ START, COUNT ] | {start:START, count:COUNT} | "START,COUNT"
index:	[ FIELD, ... ] | "FIELD, ... " | { has:PATTERN, nlp:PATTERN, bin:PATTERN, qex:PATTERN, browse:"FIELD,...", pivot: "FIELD,..." }

In addition, update journalling, search tracking, query broadcasting, and auto field conversion is supported using these ATTRIBUTES:

unsafeok: 	[true] | false 		// allow potentially unsafe queries
trace: [true] | false			// trace queries
journal: true | [false] 		// enable table journalling
search: "field,field,..." 		// define fulltext search fields
track: true | [false] 		// enable search tracking
ag: "..." 		// aggregate where/having with least(?,1), greatest(?,0), sum(?), ...

The select query will callback the CB=each/all/clone/trace handler with each/all record(s) matched by .where, indexed by .index, ordered by .order ordering, grouped by .group, filtered by .having and limited by .limit ATTRIBUTES. Select will search for PATTERN using its index.nlp (natural language parse), index.bin (binary mode), index.qex (query expansion), or group recording according to its index.browse (file navigation) or index.pivot (joint statistics).

Non-select queries will broadcast a change to all clients if a where.ID is presented (and an emiitter was configured), and willjournal the change when jounalling is enabled.

DSVAR will also add other useful methods to the standard sql connector.

Databases

openv.attrs Defines default ATTRIBUTES on startup.
openv.hawks Queried for moderaters when journalling a dataset. openv.journal Updated with changes when journalling enabled. openv.tracks Updated when search tracking enabled. openv.locks Updated when record locks used (e.g. using forms). app.X Scanned for tables that possess fulltext searchable fields.

Use

DSVAR is configured and started like this:

var TOTEM = require("../dsvar").config({
		key: value, 						// set key
		"key.key": value, 					// indexed set
		"key.key.": value,					// indexed append
		OBJECT: [ function (){}, ... ], 	// add OBJECT prototypes 
		Function: function () {} 			// add chained initializer callback
		:
		:
	}, function (err) {
	console.log( err ? "something evil happended" : "Im running");
});

where its configuration keys follow the ENUM copy() conventions and are described in its PRM.

Require and config DSVAR:

var DSVAR = require("dsvar").config({ 

	dbtx: {		// table translator
		X: "DB.Y", ...
	},
	
	emit:  (crude,parms) => {  // method to bradcast changes to other socket.io clients
	}, 
	
	mysql : {	// 	database connection parms
		host: ...
		user: ...
		pass: ...
	}

});

Its default DS generator and thread() method can be overridden if the default MySQL-Cluster support does not suffice.

Create dataset on a new sql thread

DSVAR.thread( function (sql) {

	var ds = new DSVAR.DS(sql,{table:"test.x",trace:1,rec:res});
	
});

Create dataset and access each record

var ds = new DSVAR.DS(sql,{table:"test.x",trace:1,limit:[0,1],rec:function each(rec) {console.log(rec)}});
var ds = new DSVAR.DS(sql,{table:"test.x",trace:1,where:['x','%ll%'],rec:function each(rec) {console.log(rec)}});
var ds = new DSVAR.DS(sql,{table:"test.x",trace:1,where:['a',0,5],rec:function each(rec) {console.log(rec)}});
var ds = new DSVAR.DS(sql,{table:"test.x",trace:1,where:"a<30",rec:function each(rec) {console.log(rec)}});		

Create dataset and access all records

var ds = new DSVAR.DS(sql,{table:"test.x",trace:1,where:{"a<30":null,"b!=0":null,"x like '%ll%'":null,ID:5},rec:function (recs) {console.log(recs)}});
var ds = new DSVAR.DS(sql,{table:"test.x",trace:1,order:[{property:"a",direction:"asc"}],rec:function (recs) {console.log(recs)}});
var ds = new DSVAR.DS(sql,{table:"test.x",trace:1,index:{pivot:"root"},group:"a,b",rec:function (recs) {console.log(recs)}});

Select ds record(s) matched by ds.where

ds.where = [1,2];
ds.rec = function (rec) {
	console.log(rec);
}

Delete ds record(s) matched by ds.where

ds.where = {ID:2}
ds.rec = null

Update ds record(s) matched by ds.where

ds.where = null
ds.rec = [{a:1,b:2,ds:"hello"},{a:10,b:20,x:"there"}]
ds.where = {ID:3}
ds.rec = {a:100} 

Installation

Clone from one of the repos. You will typically want to redirect the following to your project

ln -s PROJECT/totem/test.js test.js
ln -s PROJECT/totem/maint.sh maint.sh

License

MIT

*/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published