-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstorage.js
300 lines (280 loc) · 8.88 KB
/
storage.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
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
function Storage(name, size) {
// default to 5MB, passing all params in case browsers start getting more stingy
size = size || 5 * 1024 * 1024;
if(navigator.userAgent.indexOf("webOS") != -1)
this.db = openDatabase(name + ".syncopate.db");
else
this.db = openDatabase(name + ".syncopate.db", "", "", size, function(){});
}
Storage.prototype = {
logging: false,
_log: function(obj) {
if(!this.logging)
return;
// branch the lazy definition of _log (jacked from JazzRecord)
if(typeof Titanium !== "undefined") {
this._log = function(obj) {
Titanium.API.debug(obj);
};
}
else if(typeof Mojo !== "undefined") {
this._log = function(obj) {
Mojo.Log.error(obj);
};
}
else if(typeof console !== "undefined" && typeof console.log === "function") {
this._log = function(obj) {
console.log(obj);
};
}
this._log(obj);
},
// copy all col data from read-only row object into new writable object
_buildRows: function(resultSet) {
var rows = [];
for(var i = 0, j = resultSet.rows.length; i < j; i++) {
var currentRow = resultSet.rows.item(i);
var usableRow = {};
for(var col in currentRow) {
usableRow[col] = currentRow[col];
}
rows.push(usableRow);
}
return rows;
},
_escapeString: function(str) {
return "'" + str.replace(/'/g, "''") + "'";
},
_buildConditionSql: function(conditions) {
var conditionSql = "",
sqlParts = [],
condition,
operator,
operand,
element;
if(!conditions)
return conditionSql;
for(colName in conditions) {
condition = conditions[colName];
if(typeof condition === "string") {
sqlParts.push(colName + " = " + this._escapeString(condition));
}
else if(condition.constructor === Array) {
operator = condition[0];
operand = condition[1];
if(typeof operand === "string") {
if(operator.toLowerCase() != "in")
operand = this._escapeString(operand);
}
else if(operand.constructor === Array) {
for(i = 0, j = operand.length; i < j; i++) {
element = operand[i];
if(typeof element === "string")
operand[i] = this._escapeString(element);
}
operand = "(" + operand.join(",") + ")";
}
sqlParts.push(colName + " " + operator + " " + operand);
}
else
sqlParts.push(colName + " = " + condition);
}
conditionSql = sqlParts.join(" AND ");
if(conditionSql)
conditionSql = " WHERE " + conditionSql;
return conditionSql;
},
_buildUpdateSql: function(table, data) {
var setSql = "";
for(colName in data) {
if(typeof data[colName] === "string")
setSql += colName + " = '" + data[colName].replace(/'/g, "''") + "', ";
else
setSql += colName + " = " + data[colName] + ", ";
}
setSql = setSql.slice(0, -2);
var sql = "UPDATE " + table + " SET " + setSql;
if(data.id)
sql += " WHERE id = " + data.id;
return sql;
},
// success always takes an array of row objects, failure takes an error string
run: function(sql, success, failure, transaction) {
this._log(sql);
if(success && transaction) {
var oldSuccess = success;
success = function(tx, resultSet) {
oldSuccess(resultSet);
};
}
if(transaction)
transaction.executeSql(sql, [], success, failure);
else {
this.db.transaction(function(tx) {
tx.executeSql(sql, [],
function(tx, resultSet) {
if(success)
success(resultSet);
},
function(tx, error) {
if(failure)
failure(error.message);
}
);
});
}
},
// cols should be obj literal with {colName: colType, colName: colType}
createTable: function(name, cols, success, failure, tx) {
var colSql = "";
for(colName in cols) {
colSql += ", " + colName + " " + cols[colName];
}
var sql = "CREATE TABLE IF NOT EXISTS " + name + " (id INTEGER PRIMARY KEY AUTOINCREMENT" + colSql + ")";
this.run(sql, success, failure, tx);
},
dropTable: function(name, success, failure, tx) {
var sql = "DROP TABLE IF EXISTS " + name;
this.run(sql, success, failure, tx);
},
renameTable: function(oldName, newName, success, failure, tx) {
var sql = "ALTER TABLE " + oldName + " RENAME TO " + newName;
this.run(sql, success, failure, tx);
},
createIndex: function(tableName, colName, success, failure, tx) {
var sql = "CREATE INDEX IF NOT EXISTS " + tableName + "_" + colName + "_index ON " + tableName + " (" + colName + ")";
this.run(sql, success, failure, tx);
},
dropIndex: function(tableName, colName, success, failure, tx) {
var sql = "DROP INDEX IF EXISTS " + tableName + "_" + colName + "_index";
this.run(sql, success, failure, tx);
},
addColumn: function(tableName, colName, colType, success, failure, tx) {
var sql = "ALTER TABLE " + tableName + " ADD COLUMN " + colName + " " + colType;
this.run(sql, success, failure, tx);
},
// conditions is obj literal with {colName: reqVal, colName: reqVal} or {colName: [comparisonOp, comparisonVal]}
read: function(table, conditions, options, success, failure, tx) {
var self = this;
if(success) {
var oldSuccess = success;
success = function(resultSet) {
var rows = self._buildRows(resultSet);
oldSuccess(rows);
};
}
else {
success = function(resultSet) {
var rows = self._buildRows(resultSet);
self._log(rows);
};
}
var sql = "SELECT * FROM " + table;
sql += this._buildConditionSql(conditions);
if(options) {
if(options.group)
sql += " GROUP BY " + options.group;
if(options.order)
sql += " ORDER BY " + options.order;
if(options.limit)
sql += " LIMIT " + options.limit;
if(options.offset)
sql += " OFFSET " + options.offset;
}
this.run(sql, success, failure, tx);
},
// success always takes rowCount
count: function(table, conditions, success, failure, tx) {
if(success) {
var oldSuccess = success;
success = function(resultSet) {
var rowCount = resultSet.rows.item(0)["COUNT(*)"];
oldSuccess(rowCount);
};
}
else {
var self = this;
success = function(resultSet) {
var rowCount = resultSet.rows.item(0)["COUNT(*)"];
self._log(rowCount);
};
}
var sql = "SELECT COUNT(*) FROM " + table;
sql += this._buildConditionSql(conditions);
this.run(sql, success, failure, tx);
},
// data is obj literal with {colName: colVal, colName: colVal}
// success takes no params for update, insertId if insert
write: function(table, data, success, failure, tx) {
var self = this,
sql,
oldSuccess;
if(data.id) {
// build assignment pairs and trim trailing comma
sql = this._buildUpdateSql(table, data);
if(success) {
oldSuccess = success;
success = function(resultSet) {
oldSuccess();
};
}
else {
success = function(resultSet) {
self._log(resultSet);
};
}
}
else {
var colSql = "", valSql = "";
for(colName in data) {
colSql += colName + ", ";
if(typeof data[colName] === "string")
valSql += "'" + data[colName].replace(/'/g, "''") + "', ";
else
valSql += data[colName] + ", ";
}
colSql = colSql.slice(0, -2);
valSql = valSql.slice(0, -2);
sql = "INSERT INTO " + table + " (" + colSql + ") VALUES(" + valSql + ")";
if(success) {
oldSuccess = success;
success = function(resultSet) {
oldSuccess(resultSet.insertId);
};
}
else {
success = function(resultSet) {
self._log(resultSet.insertId);
};
}
}
this.run(sql, success, failure, tx);
},
update: function(table, data, conditions, success, failure, tx) {
var sql = this._buildUpdateSql(table, data);
sql += this._buildConditionSql(conditions);
if(success) {
var oldSuccess = success;
success = function(resultSet) {
oldSuccess();
};
}
else {
var self = this;
success = function(resultSet) {
self._log(resultSet);
};
}
this.run(sql, success, failure, tx);
},
// conditions is an obj literal with {colName: reqVal, colName: reqVal}
erase: function(table, conditions, success, failure, tx) {
var sql = "DELETE FROM " + table;
sql += this._buildConditionSql(conditions);
this.run(sql, success, failure, tx);
},
// func takes a tx obj
transact: function(func, success, failure) {
this.db.transaction(func, failure || function(){}, success || function(){});
}
};