mathjs/lib/expression/node/ObjectNode.js
2017-04-24 21:36:00 +02:00

147 lines
4.5 KiB
JavaScript

'use strict';
var stringify = require('../../utils/string').stringify;
function factory (type, config, load, typed) {
var register = load(require('./compile')).register;
var compile = load(require('./compile')).compile;
var Node = load(require('./Node'));
/**
* @constructor ObjectNode
* @extends {Node}
* Holds an object with keys/values
* @param {Object.<string, Node>} [properties] array with key/value pairs
*/
function ObjectNode(properties) {
if (!(this instanceof ObjectNode)) {
throw new SyntaxError('Constructor must be called with the new operator');
}
this.properties = properties || {};
// validate input
if (properties) {
if (!(typeof properties === 'object') || Object.keys(properties).some(function (key) {
return !properties[key] || !properties[key].isNode;
})) {
throw new TypeError('Object containing Nodes expected');
}
}
}
ObjectNode.prototype = new Node();
ObjectNode.prototype.type = 'ObjectNode';
ObjectNode.prototype.isObjectNode = true;
/**
* Compile the node to javascript code
* @param {ObjectNode} node The node to be compiled
* @param {Object} defs Object which can be used to define functions
* or constants globally available for the compiled
* expression
* @param {Object} args Object with local function arguments, the key is
* the name of the argument, and the value is `true`.
* The object may not be mutated, but must be
* extended instead.
* @return {string} code
* @private
*/
function compileObjectNode(node, defs, args) {
var entries = [];
for (var key in node.properties) {
// TODO: introduce a helper function hasOwnProperty in object.js
if (Object.hasOwnProperty.call(node.properties, key)) {
// FIXME: escape the key
entries.push(stringify(key) + ': ' + compile(node.properties[key], defs, args));
}
}
return '{' + entries.join(', ') + '}';
}
// register the compile function
register(ObjectNode.prototype.type, compileObjectNode);
/**
* Execute a callback for each of the child nodes of this node
* @param {function(child: Node, path: string, parent: Node)} callback
*/
ObjectNode.prototype.forEach = function (callback) {
for (var key in this.properties) {
if (this.properties.hasOwnProperty(key)) {
callback(this.properties[key], 'properties[' + stringify(key) + ']', this);
}
}
};
/**
* Create a new ObjectNode having it's childs be the results of calling
* the provided callback function for each of the childs of the original node.
* @param {function(child: Node, path: string, parent: Node): Node} callback
* @returns {ObjectNode} Returns a transformed copy of the node
*/
ObjectNode.prototype.map = function (callback) {
var properties = {};
for (var key in this.properties) {
if (this.properties.hasOwnProperty(key)) {
properties[key] = this._ifNode(callback(this.properties[key],
'properties[' + stringify(key) + ']', this));
}
}
return new ObjectNode(properties);
};
/**
* Create a clone of this node, a shallow copy
* @return {ObjectNode}
*/
ObjectNode.prototype.clone = function() {
var properties = {};
for (var key in this.properties) {
if (this.properties.hasOwnProperty(key)) {
properties[key] = this.properties[key];
}
}
return new ObjectNode(properties);
};
/**
* Get string representation
* @param {Object} options
* @return {string} str
* @override
*/
ObjectNode.prototype._toString = function(options) {
var entries = [];
for (var key in this.properties) {
if (this.properties.hasOwnProperty(key)) {
entries.push(stringify(key) + ': ' + this.properties[key].toString(options));
}
}
return '{' + entries.join(', ') + '}';
};
/**
* Get LaTeX representation
* @param {Object} options
* @return {string} str
*/
ObjectNode.prototype._toTex = function(options) {
var entries = [];
for (var key in this.properties) {
if (this.properties.hasOwnProperty(key)) {
entries.push("\\mathbf{" + key + ':} & ' + this.properties[key].toTex(options) + "\\\\");
}
}
return '\\left\\{\\begin{array}{ll}' + entries.join('\n') + '\\end{array}\\right\\}';
};
return ObjectNode;
}
exports.name = 'ObjectNode';
exports.path = 'expression.node';
exports.factory = factory;