View Issue Details

IDProjectCategoryView StatusLast Update
3978Composr testing platform / automation goalsGeneral / Uncategorisedpublic2019-12-06 13:54
ReporterChris Graham Assigned ToGuest  
PrioritynormalSeverityfeature 
Status newResolutionopen 
Summary3978: Further PHP validation - to generalise the CQC and make it a standalone project
DescriptionThe CQC readme.txt file contains notes of things we don't support.

The 4 I feel somewhat bad about are:

1) We don't have any Iterator support. We don't use it in Composr and I'm against how PHP does it on principle, but it seems someone might use it and be upset that the CQC won't validate looping over an object implementing Iterator.

2) We don't do any namespace resolution. As Composr is not a library/framework, we don't need to put stuff in namespaces, and don't need to validate them. This would upset some people, who like to make massive Java-like class hierarchies. Our CQC would not be able to handle this unless all class names were always referred to in fully-qualified form, or if they were simply declared (in the CQC's special way) as extra classes to be dumbly whitelisted.

3) We don't do any object property validation (check existence, check types, check scope). Now generally speaking properties will rarely be directly accessed from outside of an object, as that is bad style - and inside an object it would be unlikely for a programmer to be screwing up access of properties in the same region of code (generally when doing big refactoring things break between files, not within). But I still feel it would be great to add this. The problem is that the PHP function/class signature compilation code would need to be a lot smarter. The way it works now is it just scans for class/function/etc headers and builds up the signature database - but to do property validation it would need to do smarter parsing of declared properties.

4) Similar, but for class constants (scope is only available in PHP 7.4 IIRC though).

These are all somewhat big jobs with diminishing returns, but they are significantly hampering what the CQC can do as a more general purpose tool that would make the wider PHP community happy.

I would love some day to have the CQC let loose as a fully standalone project. This week I've compared other PHP linting tools and the CQC may actually be better than all of them for general purpose non-burdensome PHP linting, assuming we generalised the codebase. The only other linter that really competes is PHPStorm's built in inspections, and that's a commercial project.

It would be a lot of work to set CQC loose though. There's a lot of stuff in there that hard-codes Composr that would need to be made more configurable. I doubt I'd personally have the funding to do it, maybe someone would though.
TagsNo tags attached.
Attach Tags
Time estimation (hours)250
Sponsorship open

Sponsor

Date Added Member Amount Sponsored

Relationships

related to 2747 AssignedPDStig Composr PHP refresh (ongoing) 

Activities

There are no notes attached to this issue.

Add Note

View Status
Note
Upload Files
Maximum size: 32,768 KiB

Attach files by dragging & dropping, selecting or pasting them.
You are not logged in You are not logged in. This means you will not get any e-mail notifications. And if you reply, we will not know for sure you are the original poster of the issue.

Issue History

Date Modified Username Field Change
2019-12-06 03:07 Chris Graham New Issue
2019-12-06 13:54 Chris Graham Relationship added related to 2747
2023-02-26 18:29 Chris Graham Category General => General / Uncategorised