Bug 528506 - Make PHPCompletionProposalComputer extendable
Summary: Make PHPCompletionProposalComputer extendable
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: PHP Core CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-12-12 10:09 EST by Dawid Pakula CLA
Modified: 2020-05-14 10:16 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dawid Pakula CLA 2017-12-12 10:09:19 EST
As an adopter, to provide proposals with custom logic and images (for example doctrine annotations, symfony services) I have to register own dltk org.eclipse.dltk.ui.scriptCompletionProposalComputer extension, as a result DLTK will run separate thread for each computer.

This degrade perfomance especially because I also want reuse PHPCompletionEngine inside own computers. For example on Symfony project with PEX, Doctrine and Symfony plugins installed I have 4 threads, each one with own PHPCompletionEngine :/

I think PHPCompletionProposalComputer and/or PHPCompletionProposalCollector should be extendable via extension point.