blob: 870f93bc6d96f59ba87a35ede89a39313b1c5c8b [file] [log] [blame]
function AsterixSDK() {
// Asterix SDK => send
// Posts a message containing an API endpoint, json data,
// and a UI callback function.
//
// @param handler [Asterix REST Controller], a handler object
// that provides REST request information.
//
// Anticipated Usage:
//
// var a = AsterixSDK();
// var e = Expression;
// var h = AsterixRestController.bind(e);
// a.send(h);
myThis = this;
this.callbacks = {
"sync" : function() { alert("default sync"); },
"async" : function() {}
};
this.send = function(handler, cb) {
myThis.callbacks = cb;
this.handler = handler;
this.extras = handler["extras"];
this.xhr.post(
handler["endpoint"],
handler["apiData"],
this.branch
);
};
this.branch = function(response) {
if (response && response["error-code"]) {
alert("Error [Code" + response["error-code"][0] + "]: " + response["error-code"][1]);
} else if (response && response["results"]) {
var fn_callback = myThis.callbacks["sync"];
fn_callback(response, myThis.extras);
} else if (response["handle"]) {
var fn_callback = this.callbacks["async"];
fn_callback(response, extra);
} else if (response["status"]) {
var fn_callback = this.callbacks["sync"];
fn_callback(response, extra);
}
}
// Asterix SDK => bindingHandler
// AsterixExpression form handler where a new REST API point is bound. Takes as input any
// AsterixExpression, each of which is bindable.
this.bindingHandler = new AsterixExpression();
this.bind = this.bindingHandler.bind;
}
function AsterixExpression() {
this.init();
return this;
}
AsterixExpression.prototype.init = function () {
this.dataverse = ""; // TODO This shouldn't make it to send
this.boundTo = {};
this.clauses = [];
this.ui_callback_on_success = function() {};
this.ui_callback_on_success_async = function() {};
};
AsterixExpression.prototype.bind = function(expression) {
// If expression is an AsterixExpression, it becomes base
if (expression instanceof AsterixExpression) {
this.boundTo = expression;
} else if (expression instanceof AsterixClause) {
this.clauses.push(expression.val());
}
return this;
};
AsterixExpression.prototype.send = function(arc) {
// Hackiest of hacks
var g = new AsterixSDK();
g.send(arc, arc["callback"]);
};
AsterixExpression.prototype.clear = function() {
this.clauses.length = 0;
return this;
};
AsterixExpression.prototype.val = function() {
return this.clauses.join("\n");
};
AsterixExpression.prototype.success = function(fn, isSync) {
if (isSync) {
this.ui_callback_on_success = fn;
} else {
this.ui_callback_on_success_async = fn;
}
return this;
};
AsterixExpression.prototype.set = function(statements_arr) {
for (var i = 0; i < statements_arr.length; i++) {
this.clauses.push(statements_arr[i]);
}
return this;
};
AsterixExpression.prototype.use_dataverse = function(dv) {
this.dataverse = dv;
this.clauses.push("use dataverse " + dv + ";");
return this;
};
AsterixExpression.prototype.return = function(return_object) {
var components = [];
for (var key in return_object) {
components.push('"' + key + '" : ' + return_object[key]);
}
var return_expression = 'return { ' + components.join(', ') + ' }';
this.clauses.push(return_expression);
return this;
};
// Functions that can be used to call core expressions/clauses more cleanly
function AFLWOGR () {
}
function AClause () {
}
function ALetClause () {
}
function AWhereClause () {
}
function AOrderbyClause () {
}
function AGroupClause () {
}
function ALimitClause () {
}
function ADistinctClause () {
}
function AVariable () {
}
// Temporary AsterixExpression Placeholder
function AExpression () {
this._properties = {};
this._success = function() {};
return this;
}
AExpression.prototype.bind = function(options) {
var options = options || {};
if (options.hasOwnProperty("dataverse")) {
this._properties["dataverse"] = options["dataverse"];
}
if (options.hasOwnProperty("success")) {
this._success = options["success"];
}
if (options.hasOwnProperty("return")) {
this._properties["return"] = " return " + options["return"].val();
}
};
AExpression.prototype.run = function() {
var success_fn = this._success;
$.ajax({
type : 'GET',
url : "http://localhost:19101/query",
data : {"query" : this.val()},
dataType : "json",
success : function(data) {
success_fn(data);
}
});
return this;
};
AExpression.prototype.val = function() {
var value = "";
// If there is a dataverse defined, provide it.
if (this._properties.hasOwnProperty("dataverse")) {
value += "use dataverse " + this._properties["dataverse"] + ";\n";
};
if (this._properties.hasOwnProperty("value")) {
value += this._properties["value"];
}
return value;
};
// @param expressionValue [String]
AExpression.prototype.set = function(expressionValue) {
this._properties["value"] = expressionValue;
return this;
};
AExpression.prototype.error = function(msg) {
return "Asterix FunctionExpression Error: " + msg;
};
// FunctionExpression
// Parent: AsterixExpression
//
// @param options [Various],
// @key function [String], a function to be applid to the expression
// @key expression [AsterixExpression or AsterixClause] an AsterixExpression/Clause to which the fn will be applied
function FunctionExpression(options) {
// Initialize superclass
AExpression.call(this);
// Possible to initialize a function epxression without inputs, or with them
this.bind(options);
// Return object
return this;
}
FunctionExpression.prototype = Object.create(AExpression.prototype);
FunctionExpression.prototype.constructor = FunctionExpression;
FunctionExpression.prototype.bind = function(options) {
AExpression.prototype.bind.call(this, options);
var options = options || {};
if (options.hasOwnProperty("function")) {
this._properties["function"] = options["function"];
}
if (options.hasOwnProperty("expression")) {
this._properties["expression"] = options["expression"];
}
return this;
};
FunctionExpression.prototype.val = function () {
return this._properties["function"] + "(" + this._properties["expression"].val() + ")";
};
// FLWOGR ::= ( ForClause | LetClause ) ( Clause )* "return" Expression
// Clause ::= ForClause | LetClause | WhereClause | OrderbyClause | GroupClause | LimitClause | DistinctClause
//
// WhereClause ::= "where" Expression
// OrderbyClause ::= "order" "by" Expression ( ( "asc" ) | ( "desc" ) )? ( "," Expression ( ( "asc" ) | ( "desc" ) )? )*
//
// GroupClause ::= "group" "by" ( Variable ":=" )? Expression ( "," ( Variable ":=" )? Expression )* ( "decor" Variable ":=" Expression ( "," "decor" Variable ":=" Expression )* )? "with" VariableRef ( "," VariableRef )*
// LimitClause ::= "limit" Expression ( "offset" Expression )?
// DistinctClause ::= "distinct" "by" Expression ( "," Expression )*
// FLWOGRExpression
//
// FLWOGRExpression ::= ( ForClause | LetClause ) ( Clause )* "return" Expression
function FLWOGRExpression (options) {
// Initialize superclass
AExpression.call(this);
this._properties["clauses"] = [];
// Bind options and return
this.bind(options);
return this;
}
FLWOGRExpression.prototype = Object.create(AExpression.prototype);
FLWOGRExpression.prototype.constructor = FLWOGRExpression;
FLWOGRExpression.prototype.bind = function(options) {
AExpression.prototype.bind.call(this, options);
var options = options || {};
if (this._properties["clauses"].length == 0) {
// Needs to start with for or let clause
if (options instanceof ForClause || options instanceof LetClause) {
this._properties["clauses"].push(options);
}
} else {
if (options instanceof AQLClause) {
this._properties["clauses"].push(options);
}
}
return this;
};
FLWOGRExpression.prototype.val = function() {
var value = AExpression.prototype.val.call(this);
var clauseValues = [];
for (var c in this._properties["clauses"]) {
clauseValues.push(this._properties["clauses"][c].val());
}
return value + clauseValues.join("\n") + ";";
};
// AQLClause
//
// Base Clause ::= ForClause | LetClause | WhereClause | OrderbyClause | GroupClause | LimitClause | DistinctClause
function AQLClause() {
this._properties = {};
this._properties["clause"] = "";
}
AQLClause.prototype.val = function() {
var value = this._properties["clause"];
if (this._properties.hasOwnProperty("return")) {
value += " return " + this._properties["return"].val();
}
return value;
};
AQLClause.prototype.bind = function(options) {
var options = options || {};
if (options.hasOwnProperty("return")) {
this._properties["return"] = options["return"];
}
return this;
};
AQLClause.prototype.set = function(value) {
this._properties["clause"] = value;
return this;
};
// ForClause
//
// Grammar:
// "for" Variable ( "at" Variable )? "in" ( Expression )
//
// @param for_variable [String], REQUIRED, first variable in clause
// @param at_variable [String], NOT REQUIRED, first variable in clause
// @param expression [AsterixExpression], REQUIRED, expression to evaluate
//
// TODO Error Checking
function ForClause(for_variable, at_variable, expression) {
AQLClause.call(this);
// at_variable is optional, check if defined
var at = typeof at_variable ? at_variable : null;
// Prepare clause
this._properties["clause"] = "for $" + for_variable;
if (at != null) {
this._properties["clause"] += " at $" + at_variable;
}
this._properties["clause"] += " in " + expression.val();
return this;
}
ForClause.prototype = Object.create(AQLClause.prototype);
ForClause.prototype.constructor = ForClause;
// LetClause
//
// Grammar:
// LetClause ::= "let" Variable ":=" Expression
//
// @param let_variable [String]
// @param expression [AExpression]
//
// TODO Vigorous error checking
function LetClause(let_variable, expression) {
AQLClause.call(this);
this._properties["clause"] = "let $" + let_variable + " := ";
this._properties["clause"] += expression.val();
return this;
}
LetClause.prototype = Object.create(AQLClause.prototype);
LetClause.prototype.constructor = LetClause;
// ReturnClause
//
// Grammar:
// return [AQLExpression]
function ReturnClause(expression) {
AQLClause.call(this);
this._properties["clause"] = "return ";
if (expression instanceof AExpression) {
this._properties["clause"] += expression.val();
} else if ( Object.getPrototypeOf( expression ) === Object.prototype ) {
this._properties["clause"] += "{";
var returnStatements = [];
for (returnValue in expression) {
if (expression[returnValue] instanceof AExpression) {
returnStatements.push('"' + returnValue + '" ' + " : " + expression[returnValue].val());
} else if (typeof expression[returnValue] == "string") {
returnStatements.push('"' + returnValue + '" ' + " : " + expression[returnValue]);
}
}
this._properties["clause"] += returnStatements.join(",\n");
this._properties["clause"] += "}";
} else {
this._properties["clause"] += new AsterixExpression().set([expression]).val();
}
return this;
}
ReturnClause.prototype = Object.create(AQLClause.prototype);
ReturnClause.prototype.constructor = ReturnClause;
ReturnClause.prototype.val = function () {
return this._properties["clause"];
};
// WhereClause
//
// Grammar:
// ::= "where" Expression
//
// @param expression [BooleanExpression], pushes this expression onto the stack
function WhereClause(expression) {
AQLClause.call(this);
this._properties["stack"] = [];
this.bind(expression);
return this;
}
WhereClause.prototype = Object.create(AQLClause.prototype);
WhereClause.prototype.constructor = WhereClause;
WhereClause.prototype.bind = function(expression) {
if (expression instanceof BooleanExpression) {
this._properties["stack"].push(expression);
}
};
WhereClause.prototype.val = function() {
var value = "where ";
var count = this._properties["stack"].length - 1;
while (count >= 0) {
value += this._properties["stack"][count].val() + " ";
count -= 1;
}
return value;
}
// LimitClause
// Grammar:
// LimitClause ::= "limit" Expression ( "offset" Expression )?
//
// @param limitExpression [REQUIRED, AQLExpression]
// @param offsetExpression [OPTIONAL, AQLExpression]
function LimitClause(limitExpression, offsetExpression) {
AQLClause.call(this);
// limitExpression required
this._properties["clause"] = "limit " + limitExpression.val();
// Optional: Offset
var offset = typeof offsetExpression ? offsetExpression : null;
if (offset != null) {
this._properties["clause"] += " offset " + offsetExpression.val();
}
return this;
}
LimitClause.prototype = Object.create(AQLClause.prototype);
LimitClause.prototype.constructor = LimitClause;
// OrderbyClause
//
// Grammar:
// OrderbyClause ::= "order" "by" Expression ( ( "asc" ) | ( "desc" ) )? ( "," Expression ( ( "asc" ) | ( "desc" ) )? )*
//
// @params AQLExpressions and asc/desc strings, in any quantity. At least one required.
function OrderbyClause() {
AQLClause.call(this);
// At least one argument expression is required, and first should be expression
if (arguments.length == 0 || !(arguments[0] instanceof AExpression)) {
// TODO Not sure which error to throw for an empty OrderBy but this should fail.
alert("Order By Error");
this._properties["clause"] = null;
return this;
}
var expc = 0;
var expressions = [];
while (expc < arguments.length) {
var expression = "";
if (arguments[expc] instanceof AExpression) {
expression += arguments[expc].val();
}
var next = expc + 1;
if (next < arguments.length && (arguments[next] == "asc" || arguments[next] == "desc")) {
expc++;
expression += " " + arguments[expc];
}
expressions.push(expression);
expc++;
}
this._properties["clause"] = "order by " + expressions.join(", ");
return this;
}
OrderbyClause.prototype = Object.create(AQLClause.prototype);
OrderbyClause.prototype.constructor = OrderbyClause;
// GroupClause
//
// Grammar:
// GroupClause ::= "group" "by" ( Variable ":=" )? Expression ( "," ( Variable ":=" )? Expression )* ( "decor" Variable ":=" Expression ( "," "decor" Variable ":=" Expression )* )? "with" VariableRef ( "," VariableRef )*
function GroupClause() {
AQLClause.call(this);
if (arguments.length == 0) {
// TODO Not sure which error to throw for an empty GroupBy but this should fail.
alert("Group Error");
this._properties["clause"] = null;
return this;
}
var expc = 0;
var expressions = [];
var variableRefs = [];
var isDecor = false;
while (expc < arguments.length) {
if (arguments[expc] instanceof AExpression) {
isDecor = false;
expressions.push(arguments[expc].val());
} else if (typeof arguments[expc] == "string") {
// Special keywords, decor & with
if (arguments[expc] == "decor") {
isDecor = true;
} else if (arguments[expc] == "with") {
isDecor = false;
expc++;
while (expc < arguments.length) {
variableRefs.push("$" + arguments[expc]);
expc++;
}
// Variables and variable refs
} else {
var nextc = expc + 1;
var expression = "";
if (isDecor) {
expression += "decor ";
isDecor = false;
}
expression += "$" + arguments[expc] + " := " + arguments[nextc].val();
expressions.push(expression);
expc++;
}
}
expc++;
}
this._properties["clause"] = "group by " + expressions.join(", ") + " with " + variableRefs.join(", ");
return this;
}
GroupClause.prototype = Object.create(AQLClause.prototype);
GroupClause.prototype.constructor = GroupClause;
// BooleanExpression
//
// TODO
function BooleanExpression(expression) {
this.value = expression;
alert("Debugging Bool: " + arguments.length + " " + expression);
}
BooleanExpression.prototype.val = function() {
return this.value;
}