Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: wrapper for async.auto tasks #657

Closed
ArcanisCz opened this issue Nov 5, 2014 · 3 comments
Closed

Feature: wrapper for async.auto tasks #657

ArcanisCz opened this issue Nov 5, 2014 · 3 comments

Comments

@ArcanisCz
Copy link

Hello!
I love to use async.auto for easy controlling control flow even in situation, which does not strictly require parallel execution. But it has nice feature - easily manageable dependencies of each tasks.

But there is one thing, that bugs me. If i ever want to use results from previous tasks, the task function have to know exact string name of that previous task. Which is not good, because that function might be from another file. When someone change that string name, not-so-easily-spottable bug appears.

Example (As you seee, inside function "bbb", i must know name "a"):

async.auto({
    a: aaa,
    b: ["a", bbb],
    c: ["a", ccc]
});

function bbb(callback, results){
   var someResult = results.a;
}

My proposal for this use case is to have some wrapper, which turns dependency list into arguments, so you only need to know names in defining async.auto.

Example of desired use and its equivalent:

async.auto({
  a: async.wrapArgs(aaa),
  b: async.wrapArgs(bbb, "a"),
  c: async.wrapArgs(ccc, "b", "a")
}, function(error, results){
  console.log("done", results);
});

async.auto({
  a: aaa,
  b: ["a", function(callback, results){
      bbb(callback, results.a)
  }],
  c: ["b" ,"a", function(callback, results){
      ccc(callback, results.b, results.a)
  }]
});

function bbb(callback, a){};
function ccc(callback, b, a){};

In the end, i wrote some simple wrapper to demonstrate funcionality, which i am now offering for async, in case you decide its good pattern and practice for others :) (i will use it anyway).

async.wrapArgs = function(){
    var args = Array.prototype.slice.call(arguments, 0);

    var oldFn = arguments[0];
    var requires = args.slice(1, args.length) || [];

    var newFn = function(callback, results){
        var newArgs = requires.map(function(key){
            return results[key];
        });
        newArgs.unshift(callback);
        oldFn.apply(null, newArgs);
    }

    return requires.concat([newFn]);
}
@benzen
Copy link

benzen commented Nov 18, 2014

It look nice, this will make it easier for each step to not pick into the results map.
+1

@aearly aearly added the feature label May 19, 2015
@aearly
Copy link
Collaborator

aearly commented May 19, 2015

I've needed this kind of behavior mant times, so I added something similar to my acomb library: https://github.com/aearly/acomb#spreadoptionsfunc-option1-option2-

@aearly
Copy link
Collaborator

aearly commented Mar 8, 2016

I think we're going to go with autoInject (#608) for this kind of behavior.

@aearly aearly closed this as completed Mar 8, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants