浅析 thinkjs 实时编译实现方式

得不到总是最好 ----<xxx>


在开发的thinkjs的过程中,会发现thinkjs 在开发过程中总是能够实时编译文件进入app目录,不用开发者重新reload .可以让node web开发可以和php一样方便调试.相对于纯express 或者koa来说 thinkjs 提供了更佳的开发环境.(当然express和koa本身意图也不在次).对于thinkjs 的实时编译 ,也引起我的一点兴趣.

1.think-watcher 通过setTimeout 循环检查文件,返回文件改动列表

通过查看think-watcher 源码可以得知 think-watcher 只是一个方法集

源码链接:https://github.com/thinkjs/think-watcher/blob/master/index.js

const helper = require('think-helper');
const assert = require('assert');
const fs = require('fs');
const debug = require('debug')('think-watcher');
const path = require('path');

/**
 * default options
 * @type {Object}
 */
const defaultOptions = {
  allowExts: ['js', 'es', 'ts'],
  filter: (fileInfo, options) => {
    const seps = fileInfo.file.split(path.sep);
    // filter hidden file
    const flag = seps.some(item => {
      return item[0] === '.';
    });
    if (flag) {
      return false;
    }
    const ext = path.extname(fileInfo.file).slice(1);
    return options.allowExts.indexOf(ext) !== -1;
  }
};

/**
 * watcher class
 */
class Watcher {
  /**
   * constructor
   * @param {Object} options  watch options
   * @param {Function} cb callback when files changed
   */
  constructor(options, cb) {
    assert(helper.isFunction(cb), 'callback must be a function');
    options = this.buildOptions(options);

    debug(`srcPath: ${options.srcPath}`);
    debug(`diffPath: ${options.diffPath}`);

    this.options = options;
    this.cb = cb;
    this.lastMtime = {};
  }
  /**
   * build Options
   * @param {Object} options 
   */
  buildOptions(options = {}) {
    if (helper.isString(options)) {
      options = {srcPath: options};
    }
    let srcPath = options.srcPath;
    assert(srcPath, 'srcPath can not be blank');
    if (!helper.isArray(srcPath)) {
      srcPath = [srcPath];
    }
    let diffPath = options.diffPath || [];
    if (!helper.isArray(diffPath)) {
      diffPath = [diffPath];
    }
    options.srcPath = srcPath;
    options.diffPath = diffPath;
    if (!options.filter) {
      options.filter = defaultOptions.filter;
    }
    if (!options.allowExts) {
      options.allowExts = defaultOptions.allowExts;
    }
    return options;
  }
  /**
   * get changed files
   */
  getChangedFiles() {
    const changedFiles = [];
    const options = this.options;
    options.srcPath.forEach((srcPath, index) => {
      assert(path.isAbsolute(srcPath), 'srcPath must be an absolute path');
      const diffPath = options.diffPath[index];
      const srcFiles = helper.getdirFiles(srcPath).filter(file => {
        return options.filter({path: srcPath, file}, options);
      });
      let diffFiles = [];
      if (diffPath) {
        diffFiles = helper.getdirFiles(diffPath).filter(file => {
          return options.filter({path: diffPath, file}, options);
        });
        this.removeDeletedFiles(srcFiles, diffFiles, diffPath);
      }
      srcFiles.forEach(file => {
        const mtime = fs.statSync(path.join(srcPath, file)).mtime.getTime();
        if (diffPath) {
          let diffFile = '';
          diffFiles.some(dfile => {
            if (this.removeFileExtName(dfile) === this.removeFileExtName(file)) {
              diffFile = dfile;
              return true;
            }
          });
          const diffFilePath = path.join(diffPath, diffFile);
          // compiled file exist
          if (diffFile && helper.isFile(diffFilePath)) {
            const diffmtime = fs.statSync(diffFilePath).mtime.getTime();
            // if compiled file mtime is after than source file, return
            if (diffmtime > mtime) {
              return;
            }
          }
        }
        if (!this.lastMtime[file] || mtime > this.lastMtime[file]) {
          this.lastMtime[file] = mtime;
          changedFiles.push({path: srcPath, file});
        }
      });
    });
    return changedFiles;
  }
  /**
   * remove files in diffPath when is deleted in srcPath
   * @param {Array} srcFiles
   * @param {Array} diffFiles
   * @param {String} diffPath
   */
  removeDeletedFiles(srcFiles, diffFiles, diffPath) {
    const srcFilesWithoutExt = srcFiles.map(file => {
      return this.removeFileExtName(file);
    });
    diffFiles.forEach(file => {
      const fileWithoutExt = this.removeFileExtName(file);
      if (srcFilesWithoutExt.indexOf(fileWithoutExt) === -1) {
        const filepath = path.join(diffPath, file);
        if (helper.isFile(filepath)) {
          fs.unlinkSync(filepath);
        }
      }
    });
  }
  /**
   * remove file extname
   * @param {String} file
   */
  removeFileExtName(file) {
    return file.replace(/\.\w+$/, '');
  }
  /**
   * watch files change
   */
  watch() {
    const detectFiles = () => {
      const changedFiles = this.getChangedFiles();
      if (changedFiles.length) {
        changedFiles.forEach(item => {
          debug(`file changed: path=${item.path}, file=${item.file}`);
          this.cb(item);
        });
      }
      setTimeout(detectFiles, this.options.interval || 100);
    };
    detectFiles();
  }
}

我们可以看到 watch方法中 汇总了各类文件变化情况 在1毫秒之类不断扫描并把执行回调函数

2.startWatcher中实例化

 /**
   * start watcher
   */
  startWatcher() {
    const Watcher = this.options.watcher;
    if (!Watcher) return;
    const instance = new Watcher({
      srcPath: path.join(this.options.ROOT_PATH, 'src'),
      diffPath: this.options.APP_PATH
    }, fileInfo => this._watcherCallBack(fileInfo));
    instance.watch();
  }

实例化时 传入 开发路径和编译路径 还有回调函数
执行watch方法 开始定时扫描

3.回调函数_watcherCallBack

_watcherCallBack(fileInfo) {
    let transpiler = this.options.transpiler;
    if (transpiler) {
      if (!helper.isArray(transpiler)) {
        transpiler = [transpiler];
      }
      const ret = transpiler[0]({
        srcPath: fileInfo.path,
        outPath: this.options.APP_PATH,
        file: fileInfo.file,
        options: transpiler[1]
      });
      if (helper.isError(ret)) {
        console.error(ret.stack);
        this.notifier(ret);
        return false;
      }
      if (think.logger) {
        think.logger.info(`transpile file ${fileInfo.file} success`);
      }
    }
    // reload all workers
    if (this.masterInstance) {
      this.masterInstance.forceReloadWorkers();
    }
  }

其实thinkjs 处理方式还是比较低级.
..前面传入了所有的文件改变的列表 其实最终还是重新启动了所有work进程....

扩展:希望明后两天可以整合一下think-watcher和express... thinkjs 不错 只是文档太栏,也不如express轻便,如果express能够提供一个更加舒适的开发环境 是不是会更好呢?

又水了一篇文章....哈哈...

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,163评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,301评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,089评论 0 352
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,093评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,110评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,079评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,005评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,840评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,278评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,497评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,667评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,394评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,980评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,628评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,649评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,548评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,061评论 25 707
  • 对网站资源进行优化,并使用不同浏览器测试并不是网站设计过程中最有意思的部分,但是这个过程中的很多重复的任务能够使用...
    懵逼js阅读 1,064评论 0 8
  • 编辑于2015年 转载自某作者的译文 作者要是看到请联系我注明出处 对网站资源进行优化,并使用不同浏览器测试并不是...
    krock01阅读 448评论 0 2
  • 一大早听到了好友在微信里的留言,心里突然泛起一阵莫名的开心快乐。 平时老公在外地,我接触的人也很少,一直觉得自...
    i笑语盈盈阅读 406评论 0 3
  • 热血丹心二十年,碑书寥寥记从前。 衣冠冢里无名姓,还梦江山万古传。 按仄起仄收式。依《平水韵》下平一先。
    铨斋阅读 645评论 8 27