Commit 86970117 authored by Romain Courteaud's avatar Romain Courteaud

Reduce number of created Queue.

Reuse Queue created from callback directly.
parent 7f5c500e
...@@ -209,47 +209,64 @@ ...@@ -209,47 +209,64 @@
} }
} }
function ensurePushableQueue(callback, argument_list, context) {
var result;
try {
result = callback.apply(context, argument_list);
} catch (e) {
return new RSVP.Queue()
.push(function returnPushableError() {
return RSVP.reject(e);
});
}
if (result instanceof RSVP.Queue) {
return result;
}
return new RSVP.Queue()
.push(function returnPushableResult() {
return result;
});
}
function declareMethod(klass, name, precondition_function, post_function) { function declareMethod(klass, name, precondition_function, post_function) {
klass.prototype[name] = function () { klass.prototype[name] = function () {
var argument_list = arguments, var argument_list = arguments,
context = this, context = this,
precondition_result; precondition_result,
storage_method,
queue;
return new RSVP.Queue() // Precondition function are not asynchronous
.push(function () { if (precondition_function !== undefined) {
if (precondition_function !== undefined) { precondition_result = precondition_function.apply(
return precondition_function.apply( context.__storage,
context.__storage, [argument_list, context, name]
[argument_list, context, name] );
); }
}
}) storage_method = context.__storage[name];
.push(function (result) { if (storage_method === undefined) {
var storage_method = context.__storage[name]; throw new jIO.util.jIOError(
precondition_result = result; "Capacity '" + name + "' is not implemented on '" +
if (storage_method === undefined) { context.__type + "'",
throw new jIO.util.jIOError( 501
"Capacity '" + name + "' is not implemented on '" + );
context.__type + "'", }
501 queue = ensurePushableQueue(storage_method, argument_list,
); context.__storage);
}
return storage_method.apply( if (post_function !== undefined) {
context.__storage, queue
argument_list .push(function (result) {
);
})
.push(function (result) {
if (post_function !== undefined) {
return post_function.call( return post_function.call(
context, context,
argument_list, argument_list,
result, result,
precondition_result precondition_result
); );
} });
return result; }
}); return queue;
}; };
// Allow chain // Allow chain
return this; return this;
...@@ -281,17 +298,16 @@ ...@@ -281,17 +298,16 @@
JioProxyStorage.prototype.post = function () { JioProxyStorage.prototype.post = function () {
var context = this, var context = this,
argument_list = arguments; argument_list = arguments;
return new RSVP.Queue() return ensurePushableQueue(function () {
.push(function () { var storage_method = context.__storage.post;
var storage_method = context.__storage.post; if (storage_method === undefined) {
if (storage_method === undefined) { throw new jIO.util.jIOError(
throw new jIO.util.jIOError( "Capacity 'post' is not implemented on '" + context.__type + "'",
"Capacity 'post' is not implemented on '" + context.__type + "'", 501
501 );
); }
} return context.__storage.post.apply(context.__storage, argument_list);
return context.__storage.post.apply(context.__storage, argument_list); });
});
}; };
declareMethod(JioProxyStorage, 'putAttachment', function (argument_list, declareMethod(JioProxyStorage, 'putAttachment', function (argument_list,
...@@ -409,13 +425,8 @@ ...@@ -409,13 +425,8 @@
501 501
); );
} }
return new RSVP.Queue() return ensurePushableQueue(storage_method, argument_list,
.push(function () { context.__storage);
return storage_method.apply(
context.__storage,
argument_list
);
});
}; };
JioProxyStorage.prototype.hasCapacity = function (name) { JioProxyStorage.prototype.hasCapacity = function (name) {
...@@ -439,27 +450,26 @@ ...@@ -439,27 +450,26 @@
if (options === undefined) { if (options === undefined) {
options = {}; options = {};
} }
return new RSVP.Queue() return ensurePushableQueue(function () {
.push(function () { if (context.hasCapacity("list") &&
if (context.hasCapacity("list") && ((options.query === undefined) || context.hasCapacity("query")) &&
((options.query === undefined) || context.hasCapacity("query")) && ((options.sort_on === undefined) || context.hasCapacity("sort")) &&
((options.sort_on === undefined) || context.hasCapacity("sort")) && ((options.select_list === undefined) ||
((options.select_list === undefined) || context.hasCapacity("select")) &&
context.hasCapacity("select")) && ((options.include_docs === undefined) ||
((options.include_docs === undefined) || context.hasCapacity("include")) &&
context.hasCapacity("include")) && ((options.limit === undefined) || context.hasCapacity("limit"))) {
((options.limit === undefined) || context.hasCapacity("limit"))) { return context.buildQuery(options)
return context.buildQuery(options); .push(function (result) {
} return {
}) data: {
.push(function (result) { rows: result,
return { total_rows: result.length
data: { }
rows: result, };
total_rows: result.length });
} }
}; });
});
}; };
declareMethod(JioProxyStorage, "allAttachments", checkId); declareMethod(JioProxyStorage, "allAttachments", checkId);
...@@ -468,14 +478,13 @@ ...@@ -468,14 +478,13 @@
JioProxyStorage.prototype.repair = function () { JioProxyStorage.prototype.repair = function () {
var context = this, var context = this,
argument_list = arguments; argument_list = arguments;
return new RSVP.Queue() return ensurePushableQueue(function () {
.push(function () { var storage_method = context.__storage.repair;
var storage_method = context.__storage.repair; if (storage_method !== undefined) {
if (storage_method !== undefined) { return context.__storage.repair.apply(context.__storage,
return context.__storage.repair.apply(context.__storage, argument_list);
argument_list); }
} });
});
}; };
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment