Community
Participate
Working Groups
Build Identifier: Submitting a patch to correct the handling of the preview table in the custom parser wizards (Text and XML). The second page of the wizard contains a preview table. The number of items in the table is arbitrarily set to 50, to limit the number of rows in the preview table. In earlier code this worked correctly, but in the latest code, if the parsed preview text contains less than 50 events, the table keeps trying to fetch the row data, in some case resulting in "too many files open" exceptions. The solution is simply to remove the brute force setting of the number of items in the table. The trace indexing is automatically triggered in the trace constructor and this will fill the table properly. The number of parsed events in the preview table is no longer limited. Reproducible: Always Steps to Reproduce: 1. Open the Manage Custom Parsers dialog in the TMF > Projects view. 2. Click New... to open the wizard. 3. Fill the first page with enough data to be able to click Next... 4. In the second page click Finish
Created attachment 197131 [details] Proposed patch in org.eclipse.linuxtools.tmf.ui package Legal Message: I, Patrick Tasse, declare that I developed attached code from scratch, without referencing any 3rd party materials except material licensed under the EPL. I am authorized by my employer to make this contribution under the EPL.
This change was committed with bug 353020 and delivered in 0.9.0.
Comment on attachment 197131 [details] Proposed patch in org.eclipse.linuxtools.tmf.ui package Functionality applied in another bug.