source_map_utils.js 3.45 KB
"use strict";
var source_map_1 = require("source-map");
/**
 * Return a new RegExp object every time we want one because the
 * RegExp object has internal state that we don't want to persist
 * between different logical uses.
 */
function getInlineSourceMapRegex() {
    return new RegExp('^//# sourceMappingURL=data:application/json;base64,(.*)$', 'mg');
}
function containsInlineSourceMap(source) {
    return getInlineSourceMapCount(source) > 0;
}
exports.containsInlineSourceMap = containsInlineSourceMap;
function getInlineSourceMapCount(source) {
    var match = source.match(getInlineSourceMapRegex());
    return match ? match.length : 0;
}
exports.getInlineSourceMapCount = getInlineSourceMapCount;
function extractInlineSourceMap(source) {
    var inlineSourceMapRegex = getInlineSourceMapRegex();
    var previousResult = null;
    var result = null;
    // We want to extract the last source map in the source file
    // since that's probably the most recent one added.  We keep
    // matching against the source until we don't get a result,
    // then we use the previous result.
    do {
        previousResult = result;
        result = inlineSourceMapRegex.exec(source);
    } while (result !== null);
    var base64EncodedMap = previousResult[1];
    return Buffer.from(base64EncodedMap, 'base64').toString('utf8');
}
exports.extractInlineSourceMap = extractInlineSourceMap;
function removeInlineSourceMap(source) {
    return source.replace(getInlineSourceMapRegex(), '');
}
exports.removeInlineSourceMap = removeInlineSourceMap;
/**
 * Sets the source map inline in the file.  If there's an existing inline source
 * map, it clobbers it.
 */
function setInlineSourceMap(source, sourceMap) {
    var encodedSourceMap = Buffer.from(sourceMap, 'utf8').toString('base64');
    if (containsInlineSourceMap(source)) {
        return source.replace(getInlineSourceMapRegex(), "//# sourceMappingURL=data:application/json;base64," + encodedSourceMap);
    }
    else {
        return source + "\n//# sourceMappingURL=data:application/json;base64," + encodedSourceMap;
    }
}
exports.setInlineSourceMap = setInlineSourceMap;
function sourceMapConsumerToGenerator(sourceMapConsumer) {
    return source_map_1.SourceMapGenerator.fromSourceMap(sourceMapConsumer);
}
exports.sourceMapConsumerToGenerator = sourceMapConsumerToGenerator;
/**
 * Tsc identifies source files by their relative path to the output file.  Since
 * there's no easy way to identify these relative paths when tsickle generates its
 * own source maps, we patch them with the file name from the tsc source maps
 * before composing them.
 */
function sourceMapGeneratorToConsumer(sourceMapGenerator, fileName, sourceName) {
    var rawSourceMap = sourceMapGenerator.toJSON();
    if (sourceName) {
        rawSourceMap.sources = [sourceName];
    }
    if (fileName) {
        rawSourceMap.file = fileName;
    }
    return new source_map_1.SourceMapConsumer(rawSourceMap);
}
exports.sourceMapGeneratorToConsumer = sourceMapGeneratorToConsumer;
function sourceMapTextToConsumer(sourceMapText) {
    var sourceMapJson = sourceMapText;
    return new source_map_1.SourceMapConsumer(sourceMapJson);
}
exports.sourceMapTextToConsumer = sourceMapTextToConsumer;
function sourceMapTextToGenerator(sourceMapText) {
    var sourceMapJson = sourceMapText;
    return source_map_1.SourceMapGenerator.fromSourceMap(sourceMapTextToConsumer(sourceMapJson));
}
exports.sourceMapTextToGenerator = sourceMapTextToGenerator;

//# sourceMappingURL=source_map_utils.js.map