| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- // Experimental
- var flux = {};
- var json = require('./json');
- flux.ModelFactory = class {
- match(context) {
- const identifier = context.identifier;
- const extension = identifier.split('.').pop().toLowerCase();
- const stream = context.stream;
- if (stream && extension === 'bson') {
- return 'flux.bson';
- }
- return null;
- }
- open(context) {
- return Promise.resolve().then(() => {
- let root = null;
- try {
- const stream = context.stream;
- const reader = json.BinaryReader.open(stream);
- root = reader.read();
- }
- catch (error) {
- const message = error && error.message ? error.message : error.toString();
- throw new flux.Error('File format is not Flux BSON (' + message.replace(/\.$/, '') + ').');
- }
- return context.metadata('flux-metadata.json').then((metadata) => {
- const backref = (obj, root) => {
- if (Array.isArray(obj)) {
- for (let i = 0; i < obj.length; i++) {
- obj[i] = backref(obj[i], root);
- }
- }
- else if (obj === Object(obj)) {
- if (obj.tag == 'backref' && obj.ref) {
- if (!root._backrefs[obj.ref - 1]) {
- throw new flux.Error("Invalid backref '" + obj.ref + "'.");
- }
- obj = root._backrefs[obj.ref - 1];
- }
- for (const key of Object.keys(obj)) {
- if (obj !== root || key !== '_backrefs') {
- obj[key] = backref(obj[key], root);
- }
- }
- }
- return obj;
- };
- const obj = backref(root, root);
- const model = obj.model;
- if (!model) {
- throw new flux.Error('File does not contain Flux model.');
- }
- return new flux.Model(metadata, model);
- });
- });
- }
- };
- flux.Model = class {
- constructor(/* root */) {
- this._format = 'Flux';
- this._graphs = [];
- }
- get format() {
- return this._format;
- }
- get graphs() {
- return this._graphs;
- }
- };
- flux.Error = class extends Error {
- constructor(message) {
- super(message);
- this.name = 'Flux Error';
- }
- };
- if (typeof module !== 'undefined' && typeof module.exports === 'object') {
- module.exports.ModelFactory = flux.ModelFactory;
- }
|