This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 150204 - Switch off Lexer's Token Hierarchy during document loading
Summary: Switch off Lexer's Token Hierarchy during document loading
Status: RESOLVED FIXED
Alias: None
Product: editor
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 6.x
Hardware: PC All
: P2 blocker (vote)
Assignee: Miloslav Metelka
URL:
Keywords: PERFORMANCE
Depends on:
Blocks: 151916
  Show dependency tree
 
Reported: 2008-10-15 11:41 UTC by Miloslav Metelka
Modified: 2009-02-19 20:45 UTC (History)
0 users

See Also:
Issue Type: TASK
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Miloslav Metelka 2008-10-15 11:41:31 UTC
Since the document's contents are read in 16K blocks and Document.insertString() is done for each block the lexer gets
invoked after each block's insert. For large documents with complex embeddings with possibly long top-level tokens such
as JSP it may be costly. It would be better to update hierarchy at the end of the whole reading.
 The clients of token hierarchy should be prepared that the hierarchy becomes inactive at any time but it's necessary to
verify whether they really are in reality.
Comment 1 Miloslav Metelka 2008-11-07 21:39:43 UTC
http://hg.netbeans.org/main/rev/450b6ca9b564
Comment 2 Quality Engineering 2008-11-08 04:28:49 UTC
Integrated into 'main-golden', will be available in build *200811080201* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/450b6ca9b564
User: Miloslav Metelka <mmetelka@netbeans.org>
Log: #150204 - Switch off Lexer's Token Hierarchy during document loading.