BundleBuilder.js 2.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 *
 * @format
 */
"use strict";

const EMPTY_MAP = {
  version: 3,
  sources: [],
  names: [],
  mappings: "A"
};
/**
 * Builds a source-mapped bundle by concatenating strings and their
 * corresponding source maps (if any).
 *
 * Usage:
 *
 * const builder = new BundleBuilder('bundle.js');
 * builder
 *   .append('foo\n', fooMap)
 *   .append('bar\n')
 *   // ...
 * const code = builder.getCode();
 * const map = builder.getMap();
 */

class BundleBuilder {
  constructor(file) {
    this._file = file;
    this._sections = [];
    this._line = 0;
    this._column = 0;
    this._code = "";
    this._afterMappedContent = false;
  }

  _pushMapSection(map) {
    this._sections.push({
      map,
      offset: {
        column: this._column,
        line: this._line
      }
    });
  }

  _endMappedContent() {
    if (this._afterMappedContent) {
      this._pushMapSection(EMPTY_MAP);

      this._afterMappedContent = false;
    }
  }

  append(code, map) {
    if (!code.length) {
      return this;
    }

    const _measureString = measureString(code),
      lineBreaks = _measureString.lineBreaks,
      lastLineColumns = _measureString.lastLineColumns;

    if (map) {
      this._pushMapSection(map);

      this._afterMappedContent = true;
    } else {
      this._endMappedContent();
    }

    this._afterMappedContent = !!map;
    this._line = this._line + lineBreaks;

    if (lineBreaks > 0) {
      this._column = lastLineColumns;
    } else {
      this._column = this._column + lastLineColumns;
    }

    this._code = this._code + code;
    return this;
  }

  getMap() {
    this._endMappedContent();

    return createIndexMap(this._file, this._sections);
  }

  getCode() {
    return this._code;
  }
}

const reLineBreak = /\r\n|\r|\n/g;

function measureString(str) {
  let lineBreaks = 0;
  let match;
  let lastLineStart = 0;

  while ((match = reLineBreak.exec(str))) {
    ++lineBreaks;
    lastLineStart = match.index + match[0].length;
  }

  const lastLineColumns = str.length - lastLineStart;
  return {
    lineBreaks,
    lastLineColumns
  };
}

function createIndexMap(file, sections) {
  return {
    version: 3,
    file,
    sections
  };
}

module.exports = {
  BundleBuilder,
  createIndexMap
};