UNPKG

@maxgraph/core

Version:

maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.

457 lines (453 loc) 15.2 kB
/* Copyright 2021-present The maxGraph project Contributors Copyright (c) 2006-2015, JGraph Ltd Copyright (c) 2006-2015, Gaudenz Alder 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. */ import CellPath from '../view/cell/CellPath.js'; import CodecRegistry from './CodecRegistry.js'; import Cell from '../view/cell/Cell.js'; import { GlobalConfig } from '../util/config.js'; import { getFunctionName } from '../util/StringUtils.js'; import { importNode, isNode } from '../util/domUtils.js'; import { isElement } from '../internal/utils.js'; const createXmlDocument = () => { return document.implementation.createDocument('', '', null); }; /** * XML codec for JavaScript object graphs. See {@link ObjectCodec} for a * description of the general encoding/decoding scheme. This class uses the * codecs registered in {@link CodecRegistry} for encoding/decoding each object. * * ### References * * In order to resolve references, especially forward references, the Codec * constructor must be given the document that contains the referenced * elements. * * ### Examples * * The following code is used to encode a graph model. * * ```javascript * const encoder = new Codec(); * const result = encoder.encode(graph.getDataModel()); * const xml = xmlUtils.getXml(result); * ``` * * **WARN**: as of version 0.6.0, the codecs provided by maxGraph are no longer registered by default, they **MUST** be registered before * performing `encode` or `decode`. For instance, you can use the {@link registerAllCodecs} function (or other related functions) * to register the codecs. * * #### Example * * Using the code below, an XML document is decoded into an existing model. The * document may be obtained using {@link parseXml} for parsing an XML string. * * ```javascript * const doc = xmlUtils.parseXml(xmlString); * const codec = new Codec(doc); * codec.decode(doc.documentElement, graph.getDataModel()); * ``` * * #### Example * * This example demonstrates parsing a list of isolated cells into an existing * graph model. Note that the cells do not have a parent reference so they can * be added anywhere in the cell hierarchy after parsing. * * ```javascript * const xml = `<GraphDataModel> * <root> * <Cell id="2" value="Hello," vertex="1"> * <Geometry _x="20" _y="20" _width="80" _height="30" as="geometry"/> * </Cell> * <Cell id="3" value="World!" vertex="1"> * <Geometry _x="200" _y="150" _width="80" _height="30" as="geometry"/> * </Cell> * <Cell id="4" value="" edge="1" source="2" target="3"> * <Geometry relative="1" as="geometry"/> * </Cell> * </root> * </GraphDataModel> * `; * const doc = xmlUtils.parseXml(xml); * const codec = new Codec(doc); * let elt = doc.documentElement.firstChild; * const cells = []; * * while (elt != null) { * cells.push(codec.decode(elt)); * elt = elt.nextSibling; * } * graph.addCells(cells); * ``` * * #### Example * * Using the following code, the selection cells of a graph are encoded and the * output is displayed in a dialog box. * * ```javascript * const enc = new Codec(); * const cells = graph.getSelectionCells(); * const xml = xmlUtils.getPrettyXml(enc.encode(cells)); * ``` * * Newlines in the XML can be converted to <br>, in which case a '<br>' argument * must be passed to {@link getXml} as the second argument. * * ### Debugging * * For debugging, I/O you can use the following code to get the sequence of * encoded objects: * * ```javascript * const oldEncode = encode; * encode(obj) * { * GlobalConfig.logger.show(); * GlobalConfig.logger.debug('Codec.encode: obj=' + StringUtils.getFunctionName(obj.constructor)); * * return oldEncode.apply(this, arguments); * }; * ``` * * Note that the I/O system adds object codecs for new object automatically. For * decoding those objects, the constructor should be written as follows: * * ```javascript * var MyObj(name) * { * // ... * }; * ``` * * @category Serialization with Codecs */ class Codec { constructor(document = createXmlDocument()) { /** * Lookup table for resolving IDs to elements. */ this.elements = {}; /** * Specifies if default values should be encoded. * @default false */ this.encodeDefaults = false; this.document = document; this.objects = {}; } /** * Associates the given object with the given ID and returns the given object. * * @param id ID for the object to be associated with. * @param obj Object to be associated with the ID. */ putObject(id, obj) { this.objects[id] = obj; return obj; } /** * Returns the decoded object for the element with the specified ID in * {@link document}. If the object is not known then {@link lookup} is used to find an * object. If no object is found, then the element with the respective ID * from the document is parsed using {@link decode}. */ getObject(id) { let obj = null; if (id != null) { obj = this.objects[id]; if (obj == null) { obj = this.lookup(id); if (obj == null) { const node = this.getElementById(id); if (node != null) { obj = this.decode(node); } } } } return obj; } /** * Hook for subclassers to implement a custom lookup mechanism for cell IDs. * This implementation always returns null. * * Example: * * ```javascript * const codec = new Codec(); * codec.lookup(id) * { * return model.getCell(id); * }; * ``` * * @param id ID of the object to be returned. */ lookup(id) { return null; } /** * Returns the element with the given ID from {@link document}. * * @param id String that contains the ID. */ getElementById(id) { this.updateElements(); return this.elements[id]; } updateElements() { if (Object.keys(this.elements).length === 0) { if (this.document.documentElement != null) { this.addElement(this.document.documentElement); } } } /** * Adds the given element to {@link elements} if it has an ID. */ addElement(node) { if (isElement(node)) { const id = node.getAttribute('id'); if (id != null) { if (this.elements[id] == null) { this.elements[id] = node; } else if (this.elements[id] !== node) { throw new Error(`${id}: Duplicate ID`); } } } let nodeChild = node.firstChild; while (nodeChild != null) { this.addElement(nodeChild); nodeChild = nodeChild.nextSibling; } } /** * Returns the ID of the specified object. This implementation * calls {@link reference} first and if that returns null handles * the object as an {@link Cell} by returning their IDs using * {@link Cell.getId}. If no ID exists for the given cell, then * an on-the-fly ID is generated using {@link CellPath.create}. * * @param obj Object to return the ID for. */ getId(obj) { let id = null; if (obj != null) { id = this.reference(obj); if (id == null && obj instanceof Cell) { id = obj.getId(); if (id == null) { // Uses an on-the-fly Id id = CellPath.create(obj); if (id.length === 0) { id = 'root'; } } } } return id; } /** * Hook for subclassers to implement a custom method * for retrieving IDs from objects. This implementation * always returns null. * * Example: * * ```javascript * const codec = new Codec(); * codec.reference(obj) * { * return obj.getCustomId(); * }; * ``` * * @param obj Object whose ID should be returned. */ reference(obj) { return null; } /** * Encodes the specified object and returns the resulting XML node. * * @param obj Object to be encoded. */ encode(obj) { let node = null; if (obj != null && obj.constructor != null) { const enc = CodecRegistry.getCodec(obj.constructor); if (enc != null) { node = enc.encode(this, obj); } else if (isNode(obj)) { node = importNode(this.document, obj, true); } else { GlobalConfig.logger.warn(`Codec.encode: No codec for ${getFunctionName(obj.constructor)}`); } } return node; } /** * Decodes the given XML node. The optional "into" * argument specifies an existing object to be * used. If no object is given, then a new instance * is created using the constructor from the codec. * * The function returns the passed in object or * the new instance if no object was given. * * @param node XML node to be decoded. * @param into Optional object to be decoded into. */ decode(node, into) { this.updateElements(); let obj = null; if (isElement(node)) { const dec = CodecRegistry.getCodecByName(node.nodeName); if (dec != null) { obj = dec.decode(this, node, into); } else { GlobalConfig.logger.warn(`Codec.decode: No codec found for node '${node.nodeName}', so the node won't be decoded, the original XML Element is returned instead.`); obj = node.cloneNode(true); obj.removeAttribute('as'); } } return obj; } /** * Encoding of cell hierarchies is built-into the core, but * is a higher-level function that needs to be explicitly * used by the respective object encoders (e.g. {@link ModelCodec}, * {@link ChildChangeCodec} and {@link RootChangeCodec}). This * implementation writes the given cell and its children as a * (flat) sequence into the given node. The children are not * encoded if the optional includeChildren is false. The * function is in charge of adding the result into the * given node and has no return value. * * @param cell {@link Cell} to be encoded. * @param node Parent XML node to add the encoded cell into. * @param includeChildren Optional boolean indicating if the * function should include all descendents. Default is true. */ encodeCell(cell, node, includeChildren) { const appendMe = this.encode(cell); if (appendMe) { node.appendChild(appendMe); } if (includeChildren == null || includeChildren) { const childCount = cell.getChildCount(); for (let i = 0; i < childCount; i += 1) { this.encodeCell(cell.getChildAt(i), node); } } } /** * Returns true if the given codec is a cell codec. This uses * {@link CellCodec.isCellCodec} to check if the codec is of the * given type. */ isCellCodec(codec) { if (codec && 'isCellCodec' in codec && typeof codec.isCellCodec === 'function') { return codec.isCellCodec(); } return false; } /** * Decodes cells that have been encoded using inversion, ie. * where the user object is the enclosing node in the XML, * and restores the group and graph structure in the cells. * Returns a new {@link Cell} instance that represents the * given node. * * @param node XML node that contains the cell data. * @param restoreStructures Optional boolean indicating whether * the graph structure should be restored by calling insert * and insertEdge on the parent and terminals, respectively. * Default is `true`. */ decodeCell(node, restoreStructures = true) { if (!isElement(node)) { return null; } // Tries to find a codec for the given node name. If that does // not return a codec then the node is the user object (an XML node // that contains the Cell, aka inversion). let decoder = CodecRegistry.getCodec(node.nodeName); // Tries to find the codec for the cell inside the user object. // This assumes all node names inside the user object are either // not registered or they correspond to a class for cells. if (!this.isCellCodec(decoder)) { let child = node.firstChild; while (child != null && !this.isCellCodec(decoder)) { decoder = CodecRegistry.getCodec(child.nodeName); child = child.nextSibling; } } if (!this.isCellCodec(decoder)) { decoder = CodecRegistry.getCodec(Cell); } const cell = decoder?.decode(this, node); if (restoreStructures) { this.insertIntoGraph(cell); } return cell; } /** * Inserts the given cell into its parent and terminal cells. */ insertIntoGraph(cell) { const { parent } = cell; const source = cell.getTerminal(true); const target = cell.getTerminal(false); // Fixes possible inconsistencies during insert into graph cell.setTerminal(null, false); cell.setTerminal(null, true); cell.parent = null; if (parent != null) { if (parent === cell) { throw new Error(`${parent.id}: Self Reference`); } else { parent.insert(cell); } } if (source != null) { source.insertEdge(cell, true); } if (target != null) { target.insertEdge(cell, false); } } /** * Sets the attribute on the specified node to value. This is a * helper method that makes sure the attribute and value arguments * are not null. * * @param node XML node to set the attribute for. * @param attribute The name of the attribute to be set. * @param value New value of the attribute. */ setAttribute(node, attribute, value) { if (attribute != null && value != null) { node.setAttribute(attribute, value); } } } export default Codec;