如何使用Highland.js编写过滤器(使用DB)

时间:2016-04-22 03:42:25

标签: highland.js

我正在尝试使用Highland.js设计工作流程。我无法弄清楚Highland.js如何使用它。

我有一个基于流的工作流程如下(伪代码),

read                      //fs.createReadStream(...)
   .pipe(parse)           //JSONStream.parse(...)
   .pipe(filterDuplicate) //mongoClient.db.collection.count({}) > 0
   .pipe(transform)       //fn(item) { return tranform(item); }
   .pipe(write);          //mongoClient.db.collection.insert(doc)

filterDuplicate查找数据库以检查读取记录是否存在(使用条件)并返回布尔结果。要使过滤器工作,它需要一个活动的数据库连接,我想重复使用,直到流完成。一种方法是在读取和关闭“完成”事件之前打开连接;这意味着我需要将连接作为参数传递给过滤和写入,如果两个方法都使用相同的数据库,这将起作用。

在上面的工作流程中,filterDuplicate和write也可能使用不同的数据库。所以我希望连接到每个函数中包含和管理with-in,这使它成为一个独立的可重用单元。

我正在寻找有关如何使用Highland进行设计的任何输入。

感谢。

1 个答案:

答案 0 :(得分:0)

它不会像一次使用pipe一样容易。您必须为此任务使用最合适的API方法。

以下是您可能最终会接近的一个粗略示例:

read
  .through(JSONStream.parse([true]))
  .through((x) => {
    h((next, push) => { // use a generator for async operations
      h.wrapCallback( mongoCountQuery )( params ) // you don't have to do it this way
        .collect()
        .toCallback((err, result) => {
          if ( result > 0 ) push( err, x ); // if it met the criteria, hold onto it
          return push( null, h.nil ); // tell highland this stream is done
        });
    });
  })
  .merge() // because you've got a stream of streams after that `through`
  .map(transform) // just your standard map through a transform
  .through((x) => {
    h((next, push) => { // another generator for async operations
      h.wrapCallback( mongoUpdateQuery )( params )
        .toCallback((err, results) => {
          push( err, results );
          return push( null, h.nil );
        });
    });
  })
  .merge() // another stream-of-streams situation
  .toCallback( cb ); // call home to say we're done