-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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] Refactor CPD #4397
Merged
Merged
[core] Refactor CPD #4397
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This allows removing the CPD language instances, sharing more logic between CPD and PMD, and using language properties to configure CPD and PMD uniformly.
Mandate that no coordinate is missing in a TokenEntry.
reorganize cpd modules
subinterfaces of Language
This was referenced Feb 16, 2023
This was
linked to
issues
Feb 18, 2023
…Subcommand It applies to both PMD and CPD
This was referenced Aug 24, 2023
Use a consistent implementation of getInstance(). Now all modules resolve against the LanguageRegistry.
- Introduce ExitAction - Sort languages by name
when SoftReferences have been freed.
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Describe the PR
Upgrade the CPD codebase for PMD 7, removing redundant API and the transitional APIs introduced along the way like the class CpdCompat. We haven't planned a clean transition from PMD 6 to PMD 7 for the CPD programmatic API, so I think it's fine to break some things, given it's unlikely that many external repos implement custom CPD tokenizers. For this reason I don't think the release notes need to go into much details, I'll just link this PR.
Detailed changelog
PmdCapableLanguage
interfaceCpdCapableLanguage
.cpdIgnoreImports
cpdIgnoreMetadata
cpdAnonymizeIdentifiers
cpdAnonymizeLiterals
cpdIgnoreLiteralSequences
cpdSkipBlocksPattern
(and not a separateskipBlocks
anymore). It defaults to skipping the previous default value. Setting it to a blank string disables the block skipping.languageVersion
language property (common to all language modules) instead of the custom system propertynet.sourceforge.pmd.scala.version
.Tokens
class.getBeginColumn
orgetBeginLine
onTokenEntry
can return a useful value always, instead of-1
sometimes. That special case does not need to be handled by renderers anymore.CPD
([core] Provide a CpdAnalysis class as a programmatic entry point into CPD #4204)CPD
used to tokenize files as soon as they are added, while CpdAnalysis tokenizes files in bulk inperformAnalysis
.SourceManager
, that maintains a map of TextFile toSoftReference<TextDocument>
. This allows the same kind of lazy loading and reuse. I think it could come in handy for PMD global rules too if we make it thread-safe [core] Support global rules that report at the end of analysis #3920nspmd.cpd
, tokenizer implementations are now in packagenspmd.lang.$language.cpd
. This is just like what was suggested on Add support for T-SQL using Antlr4 lexer #4390.Related issues
Ready?
./mvnw clean verify
passes (checked automatically by github actions)