dependenceparser

0.0.2 • Public • Published

dependenceParser

  • DependenceParser是一个简单的文件依赖解析器,它专注与处理依赖关系,根据文件之间的关系,构造出一个文件顺序列表。

  • DependenceParser不关心如何从一个文件中解析出这个文件对于其他文件的依赖,这块工作通过给定不同的parser来实现,DependenceParser不提供文件内容解析的具体实现。

  • DependenceParser的初衷是为其他的模块解析器提供底层支持。你需要做的,就是专注于如何从一个文件中提取出你需要的依赖信息。

使用

具体例子可以参考example/parse.js.下面的例子先是构造了一个用于解析使用dependenceRequire( ['a.js', 'b.js']);这样的语法的解析器,然后使用dependenceParser完成文件的依赖关系解析.

下面为parser的定义,唯一需要注意的是,parser是一个function,它接受一个参数,也就是需要解析的文件字符串,最后返回一个依赖文件列表数组。

// Dependence parser for `dependenceRequire(['a.js','b.js'])` like.
var Fs = require( 'fs' );
 
module.exports = function( filePath ){
 
    var data = Fs.readFileSync( filePath).toString();
    var Ex = /^dependenceRequire\s*\(\s*(\[?\s*[\w'"\.\/,\-]+\s*\]?)\s*\)/g;
    var dependenceList = [];
    var testResult;
    var depArrStr;
    var depArr;
 
    while( ( testResult = Ex.exec( data ) ) !== null ){
 
        depArrStr = testResult[ 1 ];
        if( depArrStr ){
            try{
                depArr = eval( '(' + depArrStr + ')' );
            }
            catch(e){
                // Just leave it..
            }
            dependenceList = dependenceList.concat( depArr );
        }
    }
 
    return dependenceList;
};

利用上面的解析器,我们可以用来解析我们的文件(见example).

// 引入`DependenceParser`
var dependenceParser = require( '../lib/dependenceParser.js' );
// 引入我们定义好的解析器
var parser = require( './dependenceRequire.parser.js' );
// 需要解析的文件路径
var target = 'foo/index.js';
// 解析文件的依赖关系,并输出
console.log( dependenceParser.parse( target, parser ) );

最终会输出:

    { list:
       [ '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/index.js',
         '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_a.js',
         '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_b.js',
         '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_c.js' ],
      info:
       { '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/index.js': [ '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_a.js' ],
         '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_a.js':
          [ '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_b.js',
            '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_c.js' ],
         '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_b.js': [],
         '/users/neekey/Dropbox/nodejs/app/dependanceParser/example/foo/mod_c.js': [] } }

其中list为根据文件间的依赖关系构造的文件顺序列表,info为每个文件对应的直接依赖文件列表。

That'all!

License

(The MIT License)

Copyright (c) 2012 Neekey ni184775761@gmail.com;

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i dependenceparser

Weekly Downloads

0

Version

0.0.2

License

none

Last publish

Collaborators

  • neekey