mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
61 lines
2.1 KiB
Plaintext
61 lines
2.1 KiB
Plaintext
/**
|
|
* Provides classes for working with external data.
|
|
*/
|
|
|
|
import cpp
|
|
|
|
/**
|
|
* An external data item.
|
|
*/
|
|
class ExternalData extends @externalDataElement {
|
|
/** Gets the path of the file this data was loaded from. */
|
|
string getDataPath() { externalData(this, result, _, _) }
|
|
|
|
/**
|
|
* Gets the path of the file this data was loaded from, with its
|
|
* extension replaced by `.ql`.
|
|
*/
|
|
string getQueryPath() { result = this.getDataPath().regexpReplaceAll("\\.[^.]*$", ".ql") }
|
|
|
|
/** Gets the number of fields in this data item. */
|
|
int getNumFields() { result = 1 + max(int i | externalData(this, _, i, _) | i) }
|
|
|
|
/** Gets the value of the `i`th field of this data item. */
|
|
string getField(int i) { externalData(this, _, i, result) }
|
|
|
|
/** Gets the integer value of the `i`th field of this data item. */
|
|
int getFieldAsInt(int i) { result = this.getField(i).toInt() }
|
|
|
|
/** Gets the floating-point value of the `i`th field of this data item. */
|
|
float getFieldAsFloat(int i) { result = this.getField(i).toFloat() }
|
|
|
|
/** Gets the value of the `i`th field of this data item, interpreted as a date. */
|
|
date getFieldAsDate(int i) { result = this.getField(i).toDate() }
|
|
|
|
/** Gets a textual representation of this data item. */
|
|
string toString() { result = this.getQueryPath() + ": " + this.buildTupleString(0) }
|
|
|
|
/** Gets a textual representation of this data item, starting with the `n`th field. */
|
|
private string buildTupleString(int n) {
|
|
n = this.getNumFields() - 1 and result = this.getField(n)
|
|
or
|
|
n < this.getNumFields() - 1 and result = this.getField(n) + "," + this.buildTupleString(n + 1)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* External data with a location, and a message, as produced by tools that used to produce QLDs.
|
|
*/
|
|
class DefectExternalData extends ExternalData {
|
|
DefectExternalData() {
|
|
this.getField(0).regexpMatch("\\w+://.*:[0-9]+:[0-9]+:[0-9]+:[0-9]+$") and
|
|
this.getNumFields() = 2
|
|
}
|
|
|
|
/** Gets the URL associated with this data item. */
|
|
string getURL() { result = this.getField(0) }
|
|
|
|
/** Gets the message associated with this data item. */
|
|
string getMessage() { result = this.getField(1) }
|
|
}
|