mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
Track inclusion status on CachedTokenPipeline
Non-include attribute pipelines are not cached for now. Adding separate caching for non-include attribute pipelines is very likely worth it, but deferred for now. Change-Id: I13f949d9f0a04536f9ccfcb73a2be69c5c08be01
This commit is contained in:
parent
9f5a45f138
commit
3124deca2c
|
@ -276,7 +276,8 @@ ParserPipeline.prototype.makeInputPipeline = function ( inputType, args, isInclu
|
|||
return new CachedTokenPipeline(
|
||||
this.cachePipeline.bind( this, 'text/wiki', 'input' ),
|
||||
wikiTokenizer,
|
||||
tokenExpander
|
||||
tokenExpander,
|
||||
isInclude
|
||||
);
|
||||
}
|
||||
break;
|
||||
|
@ -328,7 +329,8 @@ ParserPipeline.prototype.makeAttributePipeline = function ( inputType, args, isI
|
|||
return new CachedTokenPipeline(
|
||||
this.cachePipeline.bind( this, inputType, 'attribute' ),
|
||||
tokenPreProcessor,
|
||||
tokenExpander
|
||||
tokenExpander,
|
||||
isInclude
|
||||
);
|
||||
}
|
||||
};
|
||||
|
@ -392,12 +394,13 @@ ParserPipeline.prototype.getLinearModel = function( document ) {
|
|||
* @param {Object} first: First stage of the pipeline
|
||||
* @param {Object} last: Last stage of the pipeline
|
||||
*/
|
||||
function CachedTokenPipeline ( returnToCacheCB, first, last ) {
|
||||
function CachedTokenPipeline ( returnToCacheCB, first, last, isInclude ) {
|
||||
this.returnToCacheCB = returnToCacheCB;
|
||||
this.first = first;
|
||||
this.last = last;
|
||||
this.last.addListener( 'end', this.forwardEndAndRecycleSelf.bind( this ) );
|
||||
this.last.addListener( 'chunk', this.forwardChunk.bind( this ) );
|
||||
this.isInclude = isInclude;
|
||||
}
|
||||
|
||||
// Inherit from EventEmitter
|
||||
|
@ -436,7 +439,7 @@ CachedTokenPipeline.prototype.forwardEndAndRecycleSelf = function ( ) {
|
|||
// first, forward the event
|
||||
this.emit( 'end' );
|
||||
// now recycle self
|
||||
if ( ! this.atTopLevel ) {
|
||||
if ( this.isInclude ) {
|
||||
this.removeAllListeners( 'end' );
|
||||
this.removeAllListeners( 'chunk' );
|
||||
this.returnToCacheCB ( this );
|
||||
|
|
Loading…
Reference in a new issue