我们正在使用PMD复制粘贴检测器(CPD)分析我们的C和C++代码。
但是,代码中有一些非常相似的部分,但是有充分的理由,我们希望取消这些部分的警告。

documentation of PMD CPD仅提及有关注释的内容,但这不适用于我们的这些语言。

如何仍然忽略特定零件的警告?

是否有评论可以这样做?

[更新] 我正在使用以下Groovy脚本运行CPD:

@GrabResolver(name = 'jcenter', root = 'https://jcenter.bintray.com/')
@Grab('net.sourceforge.pmd:pmd-core:5.4.+')
@Grab('net.sourceforge.pmd:pmd-cpp:5.4.+')
import net.sourceforge.pmd.cpd.CPD
import net.sourceforge.pmd.cpd.CPDConfiguration
import java.util.regex.Pattern

def tokens = 60
def scanDirs = ['./path/to/scan', './scan/this/too']
def ignores = [
    './ignore/this/path',
    './this/must/be/ignored/too'
    ].collect({ it.replace('/', File.separator) })
def rootDir = new File('.')
def outputDir = new File('./reports/analysis/')

def filename_date_format = 'yyyyMMdd'
def encoding = System.getProperty('file.encoding')
def language_converter = new CPDConfiguration.LanguageConverter()
def config = new CPDConfiguration()
config.language = new CPDConfiguration.LanguageConverter().convert('c')
config.minimumTileSize = tokens
config.renderer = config.getRendererFromString 'xml', 'UTF-8'
config.skipBlocksPattern = '//DUPSTOP|//DUPSTART'
config.skipLexicalErrors = true
def cpd = new CPD(config)

scanDirs.each { path ->
    def dir = new File(path);
    dir.eachFileRecurse(groovy.io.FileType.FILES) {
        // Ignore file?
        def doIgnore = false
        ignores.each { ignore ->
            if(it.path.startsWith(ignore)) {
                doIgnore = true
            }
        }
        if(doIgnore) {
            return
        }

        // Other checks
        def lowerCaseName = it.name.toLowerCase()
        if(lowerCaseName.endsWith('.c') || lowerCaseName.endsWith('.cpp') || lowerCaseName.endsWith('.h')) {
            cpd.add it
        }
    }
}

cpd.go();

def duplicationFound = cpd.matches.hasNext()

def now = new Date().format(filename_date_format)
def outputFile = new File(outputDir.canonicalFile, "cpd_report_${now}.xml")
println "Saving report to ${outputFile.absolutePath}"

def absoluteRootDir = rootDir.canonicalPath
if(absoluteRootDir[-1] != File.separator) {
    absoluteRootDir += File.separator
}

outputFile.parentFile.mkdirs()
def xmlOutput = config.renderer.render(cpd.matches);
if(duplicationFound) {
  def filePattern = "(<file\\s+line=\"\\d+\"\\s+path=\")${Pattern.quote(absoluteRootDir)}([^\"]+\"\\s*/>)"
  xmlOutput = xmlOutput.replaceAll(filePattern, '$1$2')
} else {
  println 'No duplication found.'
}

outputFile.write xmlOutput

最佳答案

我知道这是一个已有3年历史的问题,但是为了完整起见,CPD在Java的PMD 5.6.0(2017年4月)中开始支持此问题,并且自6.3.0(2018年4月)以来已扩展到许多其他语言,例如C/C++。如今,几乎所有CPD支持的语言都允许基于注释的禁止。

可以在https://pmd.github.io/pmd-6.13.0/pmd_userdocs_cpd.html#suppression上获取有关基于评论的抑制的完整(当前)文档。

值得注意的是,如果文件具有// CPD-OFF注释,但没有匹配的// CPD-ON,则所有操作都将被忽略,直到文件结尾。

关于c++ - 禁止来自CPD的C/C++代码警告,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37610305/

10-13 02:32