1 function ManifoldQuery(action, subject, timestamp, filters, params, fields, unique, query_uuid, aq, sq) {
2 // get, update, delete, create
4 // slice, user, network...
6 // timestamp, now, latest(cache) : date of the results queried
8 // key(field),op(=<>),value
14 // 0,1 : list of element of an object or single object
16 // query_uuid : unique identifier of a query
18 // Query : root query (no sub-Query)
20 // {} : Assoc Table of sub-queries ["resources"->subQ1, "users"->subQ2]
23 /*-------------------------------------------------------------
24 Query properties are SQL like :
25 ---------------------------------------------------------------
26 SELECT fields FROM subject WHERE filter;
27 UPDATE subject SET field=value WHERE filter; / returns SELECT
28 DELETE FROM subject WHERE filter
29 INSERT INTO subject VALUES(field=value)
30 -------------------------------------------------------------*/
32 this.__repr = function () {
33 res = "ManyfoldQuery ";
34 res += " id=" + this.query_uuid;
35 res += " a=" + this.action;
36 res += " s=" + this.subject;
37 res += " ts=" + this.timestamp;
38 res += " flts=" + this.filters;
39 res += " flds=" + this.fields;
40 res += " prms=" + this.params;
44 this.clone = function() {
45 q = new ManifoldQuery();
46 return jQuery.extend(true, q, this);
48 this.add_filter = function(key, op, value) {
49 this.filters.push(new Array(key, op, value));
51 this.update_filter = function(key, op, value) {
52 // Need to be improved...
53 // remove all occurrences of key if operation is not defined
55 this.filters = jQuery.grep(this.filters, function(val, i) {
58 // Else remove the key+op filters
60 this.filters = jQuery.grep(this.filters, function(val, i) {return (val[0] != key || val[1] != op);});
62 this.filters.push(new Array(key, op, value));
65 this.remove_filter = function (key,op,value) {
66 // if operator is null then remove all occurences of this key
68 this.filters = jQuery.grep(this.filters, function(val, i) {
72 this.filters = jQuery.grep(this.filters, function(val, i) {return (val[0] != key || val[1] != op);});
76 // FIXME These functions computing diff's between queries are meant to be shared
77 this.diff_fields = function (otherQuery) {
79 var f2 = otherQuery.fields;
81 /* added elements are the ones in f2 not in f1 */
82 var added = jQuery.grep(f2, function (x) { return jQuery.inArray(x, f1) == -1 });
83 /* removed elements are the ones in f1 not in f2 */
84 var removed = jQuery.grep(f1, function (x) { return jQuery.inArray(x, f2) == -1 });
86 return {'added':added, 'removed':removed};
89 // FIXME Modify filter to filters
90 this.diff_filter = function (otherQuery) {
91 var f1 = this.filters;
92 var f2 = otherQuery.filters;
94 /* added elements are the ones in f2 not in f1 */
95 var added = jQuery.grep(f2, function (x) { return !arrayInArray(x, f1)});
96 /* removed elements are the ones in f1 not in f2 */
97 var removed = jQuery.grep(f1, function (x) { return !arrayInArray(x, f2)});
99 return {'added':added, 'removed':removed};
101 // we send queries as a json string now
102 // this.as_POST = function() {
103 // return {'action': this.action, 'subject': this.subject, 'timestamp': this.timestamp,
104 // 'filters': this.filters, 'params': this.params, 'fields': this.fields};
106 this.analyze_subqueries = function() {
107 /* adapted from the PHP function in com_tophat/includes/query.php */
108 var q = new ManifoldQuery();
109 q.query_uuid = this.query_uuid;
110 q.action = this.action;
111 q.subject = this.subject;
112 q.timestamp = this.timestamp;
115 jQuery.each(this.filters, function(i, filter) {
119 var pos = k.indexOf('.');
121 var subject = k.substr(0, pos);
122 var field = k.substr(pos+1);
123 if (jQuery.inArray(this.subject, q.subqueries) == -1) {
124 q.subqueries[this.subject] = new ManifoldQuery();
125 q.subqueries[this.subject].action = this.action;
126 q.subqueries[this.subject].subject = this.subject;
127 q.subqueries[this.subject].timestamp = this.timestamp;
129 q.subqueries[this.subject].filters.push(Array(field, op, v));
131 q.filters.push(this.filter);
136 jQuery.each(this.params, function(param, value) {
137 var pos = param.indexOf('.');
139 var subject = param.substr(0, pos);
140 var field = param.substr(pos+1);
141 if (jQuery.inArray(this.subject, q.subqueries) == -1) {
142 q.subqueries[this.subject] = new ManifoldQuery();
143 q.subqueries[this.subject].action = this.action;
144 q.subqueries[this.subject].subject = this.subject;
145 q.subqueries[this.subject].timestamp = this.timestamp;
147 q.subqueries[this.subject].params[field] = value;
149 q.params[field] = value;
154 jQuery.each(this.fields, function(i, v) {
155 var pos = v.indexOf('.');
157 var subject = v.substr(0, pos);
158 var field = v.substr(pos+1);
159 if (jQuery.inArray(this.subject, q.subqueries) == -1) {
160 q.subqueries[this.subject] = new ManifoldQuery();
161 q.subqueries[this.subject].action = this.action;
162 q.subqueries[this.subject].subject = this.subject;
163 q.subqueries[this.subject].timestamp = this.timestamp;
165 q.subqueries[this.subject].fields.push(field);
170 this.analyzed_query = q;
174 this.action = action;
175 this.subject = subject;
176 this.timestamp = timestamp;
177 this.filters = filters;
178 this.params = params;
179 this.fields = fields;
180 this.unique = unique;
181 this.query_uuid = query_uuid;
182 this.analyzed_query = aq;
183 this.subqueries = sq;