2017-07-11 15:12:03 +02:00
|
|
|
class commonPipelineEnvironment implements Serializable {
|
2018-09-17 16:51:13 +02:00
|
|
|
Map configProperties = [:]
|
2017-07-11 15:12:03 +02:00
|
|
|
|
2018-01-24 10:55:38 +02:00
|
|
|
//stores version of the artifact which is build during pipeline run
|
|
|
|
def artifactVersion
|
|
|
|
|
2018-10-17 12:05:11 +02:00
|
|
|
//Stores the current buildResult
|
|
|
|
String buildResult = 'SUCCESS'
|
|
|
|
|
2018-02-07 14:17:33 +02:00
|
|
|
//stores the gitCommitId as well as additional git information for the build during pipeline run
|
2018-09-17 16:51:13 +02:00
|
|
|
String gitCommitId
|
|
|
|
String gitSshUrl
|
2018-10-17 09:54:04 +02:00
|
|
|
String gitHttpsUrl
|
|
|
|
String gitBranch
|
|
|
|
|
|
|
|
//GiutHub specific information
|
|
|
|
String githubOrg
|
|
|
|
String githubRepo
|
2018-02-07 14:17:33 +02:00
|
|
|
|
|
|
|
//stores properties for a pipeline which build an artifact and then bundles it into a container
|
|
|
|
private Map appContainerProperties = [:]
|
|
|
|
|
2017-12-06 13:03:06 +02:00
|
|
|
Map configuration = [:]
|
2018-01-24 10:55:38 +02:00
|
|
|
Map defaultConfiguration = [:]
|
|
|
|
|
|
|
|
//each Map in influxCustomDataMap represents a measurement in Influx. Additional measurements can be added as a new Map entry of influxCustomDataMap
|
2018-05-30 12:00:13 +02:00
|
|
|
private Map influxCustomDataMap = [pipeline_data: [:], step_data: [:]]
|
2019-01-17 16:42:03 +02:00
|
|
|
//each Map in influxCustomDataMapTags represents tags for certain measurement in Influx. Tags are required in Influx for easier querying data
|
|
|
|
private Map influxCustomDataMapTags = [pipeline_data: [:]]
|
2018-01-24 10:55:38 +02:00
|
|
|
//influxCustomData represents measurement jenkins_custom_data in Influx. Metrics can be written into this map
|
|
|
|
private Map influxCustomData = [:]
|
2019-01-17 16:42:03 +02:00
|
|
|
//influxCustomDataTags represents tags in Influx. Tags are required in Influx for easier querying data
|
|
|
|
private Map influxCustomDataTags = [:]
|
2017-12-06 13:03:06 +02:00
|
|
|
|
2018-09-17 16:51:13 +02:00
|
|
|
String mtarFilePath
|
2017-07-11 15:12:03 +02:00
|
|
|
|
2018-11-06 14:47:32 +02:00
|
|
|
String transportRequestId
|
2018-11-06 15:36:40 +02:00
|
|
|
String changeDocumentId
|
2018-11-06 14:47:32 +02:00
|
|
|
|
2018-05-30 12:00:13 +02:00
|
|
|
def reset() {
|
|
|
|
appContainerProperties = [:]
|
|
|
|
artifactVersion = null
|
|
|
|
|
|
|
|
configProperties = [:]
|
|
|
|
configuration = [:]
|
|
|
|
|
|
|
|
gitCommitId = null
|
|
|
|
gitSshUrl = null
|
2018-10-17 09:54:04 +02:00
|
|
|
gitHttpsUrl = null
|
|
|
|
gitBranch = null
|
|
|
|
|
|
|
|
githubOrg = null
|
|
|
|
githubRepo = null
|
2018-05-30 12:00:13 +02:00
|
|
|
|
|
|
|
influxCustomData = [:]
|
2019-01-17 16:42:03 +02:00
|
|
|
influxCustomDataTags = [:]
|
2018-05-30 12:00:13 +02:00
|
|
|
influxCustomDataMap = [pipeline_data: [:], step_data: [:]]
|
2019-01-17 16:42:03 +02:00
|
|
|
influxCustomDataMapTags = [pipeline_data: [:]]
|
2018-05-30 12:00:13 +02:00
|
|
|
|
|
|
|
mtarFilePath = null
|
2018-11-06 14:47:32 +02:00
|
|
|
|
|
|
|
transportRequestId = null
|
2018-11-06 15:36:40 +02:00
|
|
|
changeDocumentId = null
|
2018-05-30 12:00:13 +02:00
|
|
|
}
|
|
|
|
|
2018-02-07 14:17:33 +02:00
|
|
|
def setAppContainerProperty(property, value) {
|
|
|
|
appContainerProperties[property] = value
|
|
|
|
}
|
|
|
|
|
|
|
|
def getAppContainerProperty(property) {
|
|
|
|
return appContainerProperties[property]
|
|
|
|
}
|
|
|
|
|
2017-07-11 15:12:03 +02:00
|
|
|
def setConfigProperty(property, value) {
|
|
|
|
configProperties[property] = value
|
|
|
|
}
|
2017-11-24 16:59:34 +02:00
|
|
|
|
2017-07-11 15:12:03 +02:00
|
|
|
def getConfigProperty(property) {
|
|
|
|
if (configProperties[property] != null)
|
|
|
|
return configProperties[property].trim()
|
|
|
|
else
|
|
|
|
return configProperties[property]
|
|
|
|
}
|
2017-11-24 16:59:34 +02:00
|
|
|
|
2019-01-17 16:42:03 +02:00
|
|
|
// goes into measurement jenkins_data
|
|
|
|
def setInfluxCustomDataEntry(field, value) {
|
|
|
|
influxCustomData[field] = value
|
|
|
|
}
|
|
|
|
// goes into measurement jenkins_data
|
2018-01-24 10:55:38 +02:00
|
|
|
def getInfluxCustomData() {
|
|
|
|
return influxCustomData
|
|
|
|
}
|
|
|
|
|
2019-01-17 16:42:03 +02:00
|
|
|
// goes into measurement jenkins_data
|
|
|
|
def setInfluxCustomDataTagsEntry(tag, value) {
|
|
|
|
influxCustomDataTags[tag] = value
|
|
|
|
}
|
|
|
|
|
|
|
|
// goes into measurement jenkins_data
|
|
|
|
def getInfluxCustomDataTags() {
|
|
|
|
return influxCustomDataTags
|
|
|
|
}
|
|
|
|
|
|
|
|
void setInfluxCustomDataMapEntry(measurement, field, value) {
|
|
|
|
if (!influxCustomDataMap[measurement]) {
|
|
|
|
influxCustomDataMap[measurement] = [:]
|
|
|
|
}
|
|
|
|
influxCustomDataMap[measurement][field] = value
|
|
|
|
}
|
2018-01-24 10:55:38 +02:00
|
|
|
def getInfluxCustomDataMap() {
|
|
|
|
return influxCustomDataMap
|
|
|
|
}
|
|
|
|
|
2019-01-17 16:42:03 +02:00
|
|
|
def setInfluxCustomDataMapTagsEntry(measurement, tag, value) {
|
|
|
|
if (!influxCustomDataMapTags[measurement]) {
|
|
|
|
influxCustomDataMapTags[measurement] = [:]
|
|
|
|
}
|
|
|
|
influxCustomDataMapTags[measurement][tag] = value
|
2018-08-15 11:41:01 +02:00
|
|
|
}
|
2019-01-17 16:42:03 +02:00
|
|
|
def getInfluxCustomDataMapTags() {
|
|
|
|
return influxCustomDataMapTags
|
2018-08-15 11:41:01 +02:00
|
|
|
}
|
|
|
|
|
2019-01-17 16:42:03 +02:00
|
|
|
def setInfluxStepData(key, value) {
|
|
|
|
setInfluxCustomDataMapEntry('step_data', key, value)
|
|
|
|
}
|
|
|
|
def getInfluxStepData(key) {
|
|
|
|
return influxCustomDataMap.step_data[key]
|
2018-01-24 10:55:38 +02:00
|
|
|
}
|
|
|
|
|
2019-01-17 16:42:03 +02:00
|
|
|
def setPipelineMeasurement(key, value) {
|
|
|
|
setInfluxCustomDataMapEntry('pipeline_data', key, value)
|
|
|
|
}
|
|
|
|
def getPipelineMeasurement(key) {
|
|
|
|
return influxCustomDataMap.pipeline_data[key]
|
2018-01-24 10:55:38 +02:00
|
|
|
}
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|