You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.3 KiB
89 lines
3.3 KiB
/* Copyright 2017 Mozilla Foundation |
|
* |
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
* you may not use this file except in compliance with the License. |
|
* You may obtain a copy of the License at |
|
* |
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
* |
|
* Unless required by applicable law or agreed to in writing, software |
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
* See the License for the specific language governing permissions and |
|
* limitations under the License. |
|
*/ |
|
'use strict'; |
|
|
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.NodeCMapReaderFactory = exports.NodeFileReaderFactory = undefined; |
|
|
|
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); |
|
|
|
var _util = require('../../shared/util'); |
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } |
|
|
|
var NodeFileReaderFactory = function () { |
|
function NodeFileReaderFactory() { |
|
_classCallCheck(this, NodeFileReaderFactory); |
|
} |
|
|
|
_createClass(NodeFileReaderFactory, null, [{ |
|
key: 'fetch', |
|
value: function fetch(params) { |
|
var fs = require('fs'); |
|
var file = fs.readFileSync(params.path); |
|
return new Uint8Array(file); |
|
} |
|
}]); |
|
|
|
return NodeFileReaderFactory; |
|
}(); |
|
|
|
var NodeCMapReaderFactory = function () { |
|
function NodeCMapReaderFactory(_ref) { |
|
var _ref$baseUrl = _ref.baseUrl, |
|
baseUrl = _ref$baseUrl === undefined ? null : _ref$baseUrl, |
|
_ref$isCompressed = _ref.isCompressed, |
|
isCompressed = _ref$isCompressed === undefined ? false : _ref$isCompressed; |
|
|
|
_classCallCheck(this, NodeCMapReaderFactory); |
|
|
|
this.baseUrl = baseUrl; |
|
this.isCompressed = isCompressed; |
|
} |
|
|
|
_createClass(NodeCMapReaderFactory, [{ |
|
key: 'fetch', |
|
value: function fetch(_ref2) { |
|
var _this = this; |
|
|
|
var name = _ref2.name; |
|
|
|
if (!name) { |
|
return Promise.reject(new Error('CMap name must be specified.')); |
|
} |
|
return new Promise(function (resolve, reject) { |
|
var url = _this.baseUrl + name + (_this.isCompressed ? '.bcmap' : ''); |
|
var fs = require('fs'); |
|
fs.readFile(url, function (error, data) { |
|
if (error || !data) { |
|
reject(new Error('Unable to load ' + (_this.isCompressed ? 'binary ' : '') + 'CMap at: ' + url)); |
|
return; |
|
} |
|
resolve({ |
|
cMapData: new Uint8Array(data), |
|
compressionType: _this.isCompressed ? _util.CMapCompressionType.BINARY : _util.CMapCompressionType.NONE |
|
}); |
|
}); |
|
}); |
|
} |
|
}]); |
|
|
|
return NodeCMapReaderFactory; |
|
}(); |
|
|
|
exports.NodeFileReaderFactory = NodeFileReaderFactory; |
|
exports.NodeCMapReaderFactory = NodeCMapReaderFactory; |