mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-12 17:18:41 +00:00
7465b670e1
This has some TODOs still but I want to land it now anyway, and fix the TODOs later. * Add this.offsetMap which maps each linear model offset to a model tree node * Refactor createNodesFromData() ** Rename it to buildSubtreeFromData() ** Have it build an offset map as well as a node subtree ** Have it set the root on the fake root node so that when the subtree is attached to the main tree later, we don't get a rippling root update all the way down ** Normalize the way the loop processes content, that way adding offsets for content is easier * Add rebuildNodes() which uses buildSubtreeFromData() to rebuild stuff * Use rebuildNodes() in DocumentSynchronizer * Use pushRebuild() in TransactionProcessor * Optimize setRoot() for the case where the root is already set correctly Change-Id: I8b827d0823c969e671615ddd06e5f1bd70e9d54c
432 lines
14 KiB
JavaScript
432 lines
14 KiB
JavaScript
/**
|
|
* Creates an ve.BranchNode object.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @constructor
|
|
* @param {ve.Node[]} nodes List of document nodes to add
|
|
*/
|
|
ve.BranchNode = function( nodes ) {
|
|
this.children = ve.isArray( nodes ) ? nodes : [];
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Checks if this node has child nodes.
|
|
*
|
|
* @method
|
|
* @see {ve.Node.prototype.hasChildren}
|
|
* @returns {Boolean} Whether this node has children
|
|
*/
|
|
ve.BranchNode.prototype.hasChildren = function() {
|
|
return true;
|
|
};
|
|
|
|
/**
|
|
* Gets a list of child nodes.
|
|
*
|
|
* @abstract
|
|
* @method
|
|
* @returns {ve.Node[]} List of document nodes
|
|
*/
|
|
ve.BranchNode.prototype.getChildren = function() {
|
|
return this.children;
|
|
};
|
|
|
|
/**
|
|
* Gets the index of a given child node.
|
|
*
|
|
* @method
|
|
* @param {ve.dm.Node} node Child node to find index of
|
|
* @returns {Integer} Index of child node or -1 if node was not found
|
|
*/
|
|
ve.BranchNode.prototype.indexOf = function( node ) {
|
|
return ve.inArray( node, this.children );
|
|
};
|
|
|
|
/**
|
|
* Traverse leaf nodes depth first.
|
|
*
|
|
* Callback functions are expected to accept a node and index argument. If a callback returns false,
|
|
* iteration will stop.
|
|
*
|
|
* @param {Function} callback Function to execute for each leaf node
|
|
* @param {ve.Node} [from] Node to start at. Must be a descendant of this node
|
|
* @param {Boolean} [reverse] Whether to iterate backwards
|
|
*/
|
|
ve.BranchNode.prototype.traverseLeafNodes = function( callback, from, reverse ) {
|
|
// Stack of indices that lead from this to node
|
|
var indexStack = [],
|
|
// Node whose children we're currently traversing
|
|
node = this,
|
|
// Index of the child node we're currently visiting
|
|
index = reverse ? node.children.length - 1 : 0,
|
|
// Shortcut for node.children[index]
|
|
childNode,
|
|
// Result of the last invocation of the callback
|
|
callbackResult,
|
|
// Variables for the loop that builds indexStack if from is specified
|
|
n, p, i;
|
|
|
|
if ( from !== undefined ) {
|
|
// Reverse-engineer the index stack by starting at from and
|
|
// working our way up until we reach this
|
|
n = from;
|
|
while ( n !== this ) {
|
|
p = n.getParent();
|
|
if ( !p ) {
|
|
// n is a root node and we haven't reached this
|
|
// That means from isn't a descendant of this
|
|
throw "from parameter passed to traverseLeafNodes() must be a descendant";
|
|
}
|
|
// Find the index of n in p
|
|
i = p.indexOf( n );
|
|
if ( i === -1 ) {
|
|
// This isn't supposed to be possible
|
|
throw "Tree corruption detected: node isn't in its parent's children array";
|
|
}
|
|
indexStack.push( i );
|
|
// Move up
|
|
n = p;
|
|
}
|
|
// We've built the indexStack in reverse order, so reverse it
|
|
indexStack = indexStack.reverse();
|
|
|
|
// Set up the variables such that from will be visited next
|
|
index = indexStack.pop();
|
|
node = from.getParent(); // from is a descendant of this so its parent exists
|
|
|
|
// If we're going in reverse, then we still need to visit from if it's
|
|
// a leaf node, but we should not descend into it
|
|
// So if from is not a leaf node, skip it now
|
|
if ( reverse && from.hasChildren() ) {
|
|
index--;
|
|
}
|
|
}
|
|
|
|
while ( true ) {
|
|
childNode = node.children[index];
|
|
if ( childNode === undefined ) {
|
|
if ( indexStack.length > 0 ) {
|
|
// We're done traversing the current node, move back out of it
|
|
node = node.getParent();
|
|
index = indexStack.pop();
|
|
// Move to the next child
|
|
index += reverse ? -1 : 1;
|
|
continue;
|
|
} else {
|
|
// We can't move up any more, so we're done
|
|
return;
|
|
}
|
|
}
|
|
|
|
if ( childNode.hasChildren() ) {
|
|
// Descend into this node
|
|
node = childNode;
|
|
// Push our current index onto the stack
|
|
indexStack.push( index );
|
|
// Set the current index to the first element we're visiting
|
|
index = reverse ? node.children.length - 1 : 0;
|
|
} else {
|
|
// This is a leaf node, visit it
|
|
callbackResult = callback( childNode ); // TODO what is index?
|
|
if ( callbackResult === false ) {
|
|
// The callback is telling us to stop
|
|
return;
|
|
}
|
|
// Move to the next child
|
|
index += reverse ? -1 : 1;
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Gets the range within this node that a given child node covers.
|
|
*
|
|
* @method
|
|
* @param {ve.ModelNode} node Node to get range for
|
|
* @param {Boolean} [shallow] Do not iterate into child nodes of child nodes
|
|
* @returns {ve.Range|null} Range of node or null if node was not found
|
|
*/
|
|
ve.BranchNode.prototype.getRangeFromNode = function( node, shallow ) {
|
|
if ( this.children.length ) {
|
|
var childNode;
|
|
for ( var i = 0, length = this.children.length, left = 0; i < length; i++ ) {
|
|
childNode = this.children[i];
|
|
if ( childNode === node ) {
|
|
return new ve.Range( left, left + childNode.getElementLength() );
|
|
}
|
|
if ( !shallow && childNode.hasChildren() && childNode.getChildren().length ) {
|
|
var range = childNode.getRangeFromNode( node );
|
|
if ( range !== null ) {
|
|
// Include opening of parent
|
|
left++;
|
|
return ve.Range.newFromTranslatedRange( range, left );
|
|
}
|
|
}
|
|
left += childNode.getElementLength();
|
|
}
|
|
}
|
|
return null;
|
|
};
|
|
|
|
/**
|
|
* Gets the content offset of a node.
|
|
*
|
|
* This method is pretty expensive. If you need to get different slices of the same content, get
|
|
* the content first, then slice it up locally.
|
|
*
|
|
* TODO: Rewrite this method to not use recursion, because the function call overhead is expensive
|
|
*
|
|
* @method
|
|
* @param {ve.Node} node Node to get offset of
|
|
* @param {Boolean} [shallow] Do not iterate into child nodes of child nodes
|
|
* @returns {Integer} Offset of node or -1 of node was not found
|
|
*/
|
|
ve.BranchNode.prototype.getOffsetFromNode = function( node, shallow ) {
|
|
if ( node === this ) {
|
|
return 0;
|
|
}
|
|
if ( this.children.length ) {
|
|
var offset = 0,
|
|
childNode;
|
|
for ( var i = 0, length = this.children.length; i < length; i++ ) {
|
|
childNode = this.children[i];
|
|
if ( childNode === node ) {
|
|
return offset;
|
|
}
|
|
if ( !shallow && childNode.hasChildren() && childNode.getChildren().length ) {
|
|
var childOffset = this.getOffsetFromNode.call( childNode, node );
|
|
if ( childOffset !== -1 ) {
|
|
return offset + 1 + childOffset;
|
|
}
|
|
}
|
|
offset += childNode.getElementLength();
|
|
}
|
|
}
|
|
return -1;
|
|
};
|
|
|
|
/**
|
|
* Gets the node at a given offset.
|
|
*
|
|
* This method is pretty expensive. If you need to get different slices of the same content, get
|
|
* the content first, then slice it up locally.
|
|
*
|
|
* TODO: Rewrite this method to not use recursion, because the function call overhead is expensive
|
|
*
|
|
* @method
|
|
* @param {Integer} offset Offset get node for
|
|
* @param {Boolean} [shallow] Do not iterate into child nodes of child nodes
|
|
* @returns {ve.Node|null} Node at offset, or null if non was found
|
|
*/
|
|
ve.BranchNode.prototype.getNodeFromOffset = function( offset, shallow ) {
|
|
if ( offset === 0 ) {
|
|
return this;
|
|
}
|
|
// TODO a lot of logic is duplicated in selectNodes(), abstract that into a traverser or something
|
|
if ( this.children.length ) {
|
|
var nodeOffset = 0,
|
|
nodeLength,
|
|
childNode;
|
|
for ( var i = 0, length = this.children.length; i < length; i++ ) {
|
|
childNode = this.children[i];
|
|
if ( offset == nodeOffset ) {
|
|
// The requested offset is right before childNode,
|
|
// so it's not inside any of this's children, but inside this
|
|
return this;
|
|
}
|
|
nodeLength = childNode.getElementLength();
|
|
if ( offset >= nodeOffset && offset < nodeOffset + nodeLength ) {
|
|
if ( !shallow && childNode.hasChildren() && childNode.getChildren().length ) {
|
|
return this.getNodeFromOffset.call( childNode, offset - nodeOffset - 1 );
|
|
} else {
|
|
return childNode;
|
|
}
|
|
}
|
|
nodeOffset += nodeLength;
|
|
}
|
|
if ( offset == nodeOffset ) {
|
|
// The requested offset is right before this.children[i],
|
|
// so it's not inside any of this's children, but inside this
|
|
return this;
|
|
}
|
|
}
|
|
return null;
|
|
};
|
|
|
|
/**
|
|
* Gets the index of a child node from a given offset.
|
|
*
|
|
* If the offset is in between child nodes, the offset of the child node to the
|
|
* right will be returned. If the offset is at the very end of the node, the
|
|
* index past the end will be returned (note that there is no child node at this
|
|
* index!). If the offset is out of range, -1 will be returned.
|
|
*
|
|
* @method
|
|
* @param {Integer} offset Offset to find index of
|
|
* @returns {Integer} Index of child node at offset or -1 if offset was out of range
|
|
*/
|
|
ve.BranchNode.prototype.getIndexFromOffset = function( offset ) {
|
|
var left = 0,
|
|
elementLength;
|
|
for ( var i = 0; i < this.children.length; i++ ) {
|
|
elementLength = this.children[i].getElementLength();
|
|
if ( offset >= left && offset < left + elementLength ) {
|
|
return i;
|
|
}
|
|
left += elementLength;
|
|
}
|
|
if ( offset == left ) {
|
|
// One past the end
|
|
return i;
|
|
}
|
|
return -1;
|
|
};
|
|
|
|
/**
|
|
* Gets a list of nodes and their sub-ranges which are covered by a given range.
|
|
*
|
|
* @method
|
|
* @param {ve.Range} range Range to select nodes within
|
|
* @param {Boolean} [shallow] Do not recurse into child nodes of child nodes
|
|
* @param {Number} [offset] Used for recursive invocations. Callers should not pass this parameter
|
|
* @returns {Array} List of objects with 'node', 'range' and 'globalRange' properties describing nodes which are
|
|
* covered by the range and the range within the node that is covered. If an entire node is covered, 'range' is
|
|
* absent but 'globalRange' is still set
|
|
*/
|
|
ve.BranchNode.prototype.selectNodes = function( range, shallow, offset ) {
|
|
if ( typeof range === 'undefined' ) {
|
|
range = new ve.Range( 0, this.model.getContentLength() );
|
|
} else {
|
|
range.normalize();
|
|
}
|
|
var nodes = [],
|
|
i,
|
|
j,
|
|
left,
|
|
right,
|
|
start = range.start,
|
|
end = range.end,
|
|
startInside,
|
|
endInside,
|
|
childNode;
|
|
offset = offset || 0;
|
|
|
|
if ( start < 0 ) {
|
|
throw 'The start offset of the range is negative';
|
|
}
|
|
|
|
if ( this.children.length === 0 ) {
|
|
// Special case: this node doesn't have any children
|
|
// The return value is simply the range itself, if it is not out of bounds
|
|
if ( end > this.getContentLength() ) {
|
|
throw 'The end offset of the range is past the end of the node';
|
|
}
|
|
return [{ 'node': this, 'range': new ve.Range( start, end ), 'globalRange': new ve.Range( start + offset, end + offset ) }];
|
|
}
|
|
|
|
// This node has children, loop over them
|
|
left = 1; // First offset inside the first child. Offset 0 is before the first child
|
|
for ( i = 0; i < this.children.length; i++ ) {
|
|
childNode = this.children[i];
|
|
// left <= any offset inside childNode <= right
|
|
right = left + childNode.getContentLength();
|
|
|
|
if ( start == end && ( start == left - 1 || start == right + 1 ) ) {
|
|
// Empty range outside of any node
|
|
return [{ 'node': this, 'range': new ve.Range( start, end ), 'globalRange': new ve.Range( start + offset, end + offset ) }];
|
|
}
|
|
|
|
startInside = start >= left && start <= right; // is the start inside childNode?
|
|
endInside = end >= left && end <= right; // is the end inside childNode?
|
|
|
|
if ( startInside && endInside ) {
|
|
// The range is entirely inside childNode
|
|
if ( shallow || !childNode.children ) {
|
|
// For leaf nodes, use the same behavior as for shallow calls.
|
|
// A proper recursive function would let the recursion handle this,
|
|
// but the leaves don't have .selectNodes() because they're not DocumentBranchNodes
|
|
// FIXME get rid of this crazy branch-specificity
|
|
// TODO should probably rewrite this recursive function as an iterative function anyway, probably faster
|
|
nodes = [
|
|
{
|
|
'node': childNode,
|
|
'range': new ve.Range( start - left, end - left ),
|
|
'globalRange': new ve.Range( start + offset, end + offset )
|
|
}
|
|
];
|
|
} else {
|
|
// Recurse into childNode
|
|
nodes = childNode.selectNodes( new ve.Range( start - left, end - left ), false, left + offset );
|
|
}
|
|
// Since the start and end are both inside childNode, we know for sure that we're
|
|
// done, so return
|
|
return nodes;
|
|
} else if ( startInside ) {
|
|
// The start is inside childNode but the end isn't
|
|
if ( shallow || !childNode.children ) {
|
|
// Add a range from the start of the range to the end of childNode
|
|
nodes.push( {
|
|
'node': childNode,
|
|
'range': new ve.Range( start - left, right - left ),
|
|
'globalRange': new ve.Range( start + offset, right + offset )
|
|
} );
|
|
} else {
|
|
nodes = nodes.concat( childNode.selectNodes( new ve.Range( start - left, right - left ), false, left + offset ) );
|
|
}
|
|
} else if ( endInside ) {
|
|
// The end is inside childNode but the start isn't
|
|
if ( shallow || !childNode.children ) {
|
|
// Add a range from the start of childNode to the end of the range
|
|
nodes.push( {
|
|
'node': childNode,
|
|
'range': new ve.Range( 0, end - left ),
|
|
'globalRange': new ve.Range( left + offset, end + offset )
|
|
} );
|
|
} else {
|
|
nodes = nodes.concat( childNode.selectNodes( new ve.Range( 0, end - left ), false, left + offset ) );
|
|
}
|
|
// We've found the end, so we're done
|
|
return nodes;
|
|
} else if ( end == right + 1 ) {
|
|
// end is between childNode and this.children[i+1]
|
|
// start is not inside childNode, so the selection covers
|
|
// all of childNode, then ends
|
|
nodes.push( { 'node': childNode, 'globalRange': new ve.Range( left - 1 + offset, right + 1 + offset ) } );
|
|
// We've reached the end so we're done
|
|
return nodes;
|
|
} else if ( start == left - 1 ) {
|
|
// start is between this.children[i-1] and childNode
|
|
// end is not inside childNode, so the selection covers
|
|
// all of childNode and more
|
|
nodes.push( { 'node': childNode, 'globalRange': new ve.Range( left - 1 + offset, right + 1 + offset ) } );
|
|
} else if ( nodes.length > 0 ) {
|
|
// Neither the start nor the end is inside childNode, but nodes is non-empty,
|
|
// so childNode must be between the start and the end
|
|
// Add the entire node, so no range property
|
|
nodes.push( { 'node': childNode, 'globalRange': new ve.Range( left - 1 + offset, right + 1 + offset ) } );
|
|
}
|
|
|
|
// Move left to the start of this.children[i+1] for the next iteration
|
|
// We use +2 because we need to jump over the offset between childNode and
|
|
// this.children[i+1]
|
|
left = right + 2;
|
|
if ( end < left ) {
|
|
// We've skipped over the end, so we're done
|
|
return nodes;
|
|
}
|
|
}
|
|
|
|
// If we got here, that means that at least some part of the range is out of bounds
|
|
// This is an error
|
|
if ( start > right + 1 ) {
|
|
throw 'The start offset of the range is past the end of the node';
|
|
} else {
|
|
// Apparently the start was inside this node, but the end wasn't
|
|
throw 'The end offset of the range is past the end of the node';
|
|
}
|
|
return nodes;
|
|
};
|