/* Copyright 2013 Daniel Wirtz 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. */ var description = "Plain JSON descriptor"; var ProtoBuf = require(__dirname+"/../../../index.js"), util = require(__dirname+"/../util.js"), node_path = require("path"), fs = require("fs"); /** * pbjs source: Plain JSON descriptor * @exports pbjs/sources/json * @function * @param {!Array.} filenames Source files * @param {!Object.=} options Options * @returns {!ProtoBuf.Builder} */ var json = module.exports = function(filenames, options) { options = options || []; var builder = ProtoBuf.newBuilder(util.getBuilderOptions(options, "using")), loaded = []; filenames.forEach(function(filename) { var data = json.load(filename, options, loaded); builder["import"](data, filename); }); builder.resolveAll(); return builder; }; /** * Module description. * @type {string} */ json.description = description; /** * Loads a JSON descriptor including imports. * @param {string} filename Source file * @param {!Object.} options Options * @param {!Array.=} loaded An array of already loaded filenames * @returns {*} JSON descriptor */ json.load = function(filename, options, loaded) { filename = node_path.resolve(filename); loaded = loaded || []; if (loaded.indexOf(filename) >= 0) return {}; var data = JSON.parse(fs.readFileSync(filename).toString("utf8")), imports = data['imports']; loaded.push(filename); if (Array.isArray(imports)) { for (var i=0; i