mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
Factor XML discard predicates into OverlayXml.qll
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
overlay[local]
|
||||
module;
|
||||
|
||||
private import internal.OverlayXml
|
||||
|
||||
/**
|
||||
* A local predicate that always holds for the overlay variant and never holds for the base variant.
|
||||
* This is used to define local predicates that behave differently for the base and overlay variant.
|
||||
@@ -52,40 +54,3 @@ private predicate discardLocatable(@locatable locatable) {
|
||||
discardableLocatable(file, locatable) and discardableFile(path)
|
||||
)
|
||||
}
|
||||
|
||||
private @file getXmlFile(@xmllocatable locatable) {
|
||||
exists(@location_default location | xmllocations(locatable, location) |
|
||||
locations_default(location, result, _, _, _, _)
|
||||
)
|
||||
}
|
||||
|
||||
private @file getXmlFileInBase(@xmllocatable locatable) {
|
||||
not isOverlay() and
|
||||
result = getXmlFile(locatable)
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if the given `file` was extracted as part of the overlay and was extracted by the HTML/XML
|
||||
* extractor.
|
||||
*/
|
||||
private predicate overlayXmlExtracted(@file file) {
|
||||
isOverlay() and
|
||||
exists(@xmllocatable locatable |
|
||||
not files(locatable, _) and not xmlNs(locatable, _, _, _) and file = getXmlFile(locatable)
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if the given XML `locatable` should be discarded, because it is part of the overlay base
|
||||
* and is in a file that was also extracted as part of the overlay database.
|
||||
*/
|
||||
overlay[discard_entity]
|
||||
private predicate discardXmlLocatable(@xmllocatable locatable) {
|
||||
exists(@file file | file = getXmlFileInBase(locatable) |
|
||||
exists(string path | files(file, path) | overlayChangedFiles(path))
|
||||
or
|
||||
// The HTML/XML extractor is currently not incremental and may extract more files than those
|
||||
// included in overlayChangedFiles.
|
||||
overlayXmlExtracted(file)
|
||||
)
|
||||
}
|
||||
|
||||
45
go/ql/lib/semmle/go/internal/OverlayXml.qll
Normal file
45
go/ql/lib/semmle/go/internal/OverlayXml.qll
Normal file
@@ -0,0 +1,45 @@
|
||||
overlay[local]
|
||||
module;
|
||||
|
||||
/**
|
||||
* A local predicate that always holds for the overlay variant and never holds for the base variant.
|
||||
* This is used to define local predicates that behave differently for the base and overlay variant.
|
||||
*/
|
||||
private predicate isOverlay() { databaseMetadata("isOverlay", "true") }
|
||||
|
||||
private @file getXmlFile(@xmllocatable locatable) {
|
||||
exists(@location_default location | xmllocations(locatable, location) |
|
||||
locations_default(location, result, _, _, _, _)
|
||||
)
|
||||
}
|
||||
|
||||
private @file getXmlFileInBase(@xmllocatable locatable) {
|
||||
not isOverlay() and
|
||||
result = getXmlFile(locatable)
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if the given `file` was extracted as part of the overlay and was extracted by the HTML/XML
|
||||
* extractor.
|
||||
*/
|
||||
private predicate overlayXmlExtracted(@file file) {
|
||||
isOverlay() and
|
||||
exists(@xmllocatable locatable |
|
||||
not files(locatable, _) and not xmlNs(locatable, _, _, _) and file = getXmlFile(locatable)
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if the given XML `locatable` should be discarded, because it is part of the overlay base
|
||||
* and is in a file that was also extracted as part of the overlay database.
|
||||
*/
|
||||
overlay[discard_entity]
|
||||
private predicate discardXmlLocatable(@xmllocatable locatable) {
|
||||
exists(@file file | file = getXmlFileInBase(locatable) |
|
||||
exists(string path | files(file, path) | overlayChangedFiles(path))
|
||||
or
|
||||
// The HTML/XML extractor is currently not incremental and may extract more files than those
|
||||
// included in overlayChangedFiles.
|
||||
overlayXmlExtracted(file)
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user