Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core] Provide a CpdAnalysis class as a programmatic entry point into CPD #4204

Closed
1 of 7 tasks
jsotuyod opened this issue Nov 10, 2022 · 1 comment · Fixed by #4397
Closed
1 of 7 tasks

[core] Provide a CpdAnalysis class as a programmatic entry point into CPD #4204

jsotuyod opened this issue Nov 10, 2022 · 1 comment · Fixed by #4397
Assignees
Labels
an:enhancement An improvement on existing features / rules
Milestone

Comments

@jsotuyod
Copy link
Member

jsotuyod commented Nov 10, 2022

We already have a PmdAnalysis class that serves as a programatic (non-CLI) entry point for PMD. This allows, the CLI, ANT, IDEs and other tools to trigger an analysis in an agnostic way.

We don't have anything equivalent for CPD, with the CPD, CPDConfiguration and CPDCommandLineInterface all mingled and dirty with CLI specific things (ie: the CPDConfiguration actually has the JCommander annotations).

What we would need to do:

  • Explicitly convert CPDConfiguration into a pure "analysis configuration" class, equivalent to PMDConfiguration. Is there anyway to "deprecate" the annotations in PMD 6 beyond a javadoc notice?
  • Consolidate how PMD / CPD collect analysis files
    • Since we are aligning how PMD / CPD manage analysis sources, it may make sense to pull up those attributes and methods to AbstractConfiguration
    • Extend FileCollector to accept any kind of configuration, either for PMD or CPD
      • Tricky part: FileCollector depends on LanguageDiscoverer which is PMD-specific (CPD and PMD Language classes are unrelated), CPD on the other hand uses a FileExtensionFilter).
  • Implement a CpdAnalysis class in the same shape as PmdAnalysis. There may be an opportunity here to have a shared interface, but I'm not sure if this would be worth it.
  • Hook CpdAnalysis into CPD to retain behavior, and explicitly state CpdAnalysis to be the replacement for the already deprecated CPD.

I've a local branch where I've already started working on some of these items.

@jsotuyod jsotuyod added the an:enhancement An improvement on existing features / rules label Nov 10, 2022
@adangel adangel added this to the 6.53.0 milestone Nov 17, 2022
@adangel adangel modified the milestones: 6.53.0, 6.54.0 Dec 31, 2022
@adangel
Copy link
Member

adangel commented Jan 26, 2023

I'm moving this to milestone 7.x, since it is not vital for pmd7.

@adangel adangel modified the milestones: 6.54.0, 7.x Jan 26, 2023
@oowekyala oowekyala changed the title [core] Provide a CpdAnalysis class as a programatic entry point into CPD [core] Provide a CpdAnalysis class as a programmatic entry point into CPD Jan 26, 2023
This was referenced Feb 16, 2023
@oowekyala oowekyala linked a pull request Feb 18, 2023 that will close this issue
5 tasks
@adangel adangel modified the milestones: 7.x, 7.0.0 Aug 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
an:enhancement An improvement on existing features / rules
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants