Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 1 | #!/usr/bin/env groovy |
| 2 | // ----------------------------------------------------------------------- |
| 3 | // Copyright 2023 Open Networking Foundation (ONF) and the ONF Contributors |
| 4 | // |
| 5 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | // you may not use this file except in compliance with the License. |
| 7 | // You may obtain a copy of the License at |
| 8 | // |
| 9 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | // |
| 11 | // Unless required by applicable law or agreed to in writing, software |
| 12 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | // See the License for the specific language governing permissions and |
| 15 | // limitations under the License. |
| 16 | // ----------------------------------------------------------------------- |
| 17 | // % npm-groovy-lint vars/iam.groovy |
| 18 | // ----------------------------------------------------------------------- |
| 19 | |
| 20 | // ----------------------------------------------------------------------- |
| 21 | // ----------------------------------------------------------------------- |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 22 | String getIam(Map argv, String func) |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 23 | { |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 24 | String src = argv.containsKey('label') |
| 25 | ? argv.label |
| 26 | : [ // Cannot lookup, jenkins alters stack for serialization |
| 27 | 'repo:ci-management', |
| 28 | 'vars', |
| 29 | 'iam', |
| 30 | ].join('/') |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 31 | |
| 32 | String iam = [src, func].join('::') |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 33 | if (argv.containsKey('version')) |
| 34 | { |
Joey Armstrong | 41feb7c | 2023-04-14 11:28:04 -0400 | [diff] [blame] | 35 | iam += sprintf('[%s]', argv.version) |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 36 | } |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 37 | return(iam) |
| 38 | } |
| 39 | |
| 40 | // ----------------------------------------------------------------------- |
| 41 | // Intent: Display future enhancement list. |
| 42 | // ----------------------------------------------------------------------- |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 43 | void todo(Map argv) |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 44 | { |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 45 | String iam = getIam(argv, 'todo') |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 46 | |
| 47 | println(""" |
| 48 | [TODO: $iam] |
| 49 | o Pass jenkins parameters so todo() function can be conditionally called. |
| 50 | o Add call parameters to: |
| 51 | - Specify {ENTER,LEAVE} strings for logging. |
| 52 | - Set methods for caller to specify an alternate getIam() path. |
| 53 | """) |
| 54 | |
| 55 | return |
| 56 | } |
| 57 | |
| 58 | // ----------------------------------------------------------------------- |
| 59 | // Intent: Placeholder in case future enhancements are needed |
| 60 | // ----------------------------------------------------------------------- |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 61 | Boolean process(Map argv) |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 62 | { |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 63 | String iam = getIam(argv, 'process') |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 64 | |
| 65 | Boolean leave = false |
| 66 | |
| 67 | // Identify caller with a banner for logging |
| 68 | if (config.containsKey('enter')) { |
| 69 | println("** ${iam}: ENTER") |
| 70 | } |
| 71 | else if (config.containsKey('leave')) { |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 72 | leave = true |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 73 | } |
| 74 | else |
| 75 | { |
| 76 | println("** ${iam}: HELLO") |
| 77 | } |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 78 | |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 79 | // Display future enhancement list |
| 80 | if (config.containsKey('todo')) { |
| 81 | todo() |
| 82 | } |
| 83 | |
| 84 | // Maintain a sane logging enclosure block |
| 85 | if (leave) |
| 86 | { |
| 87 | println("** ${iam}: LEAVE") |
| 88 | } |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 89 | |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 90 | return(true) |
| 91 | } |
| 92 | |
| 93 | // ----------------------------------------------------------------------- |
| 94 | // Intent: Debug method for jenkins jobs identifying caller for logging. |
| 95 | // ----------------------------------------------------------------------- |
| 96 | // Given: |
| 97 | // self jenkins environment pointer 'this' |
| 98 | // config groovy closure used to pass key/value pairs into argv |
| 99 | // enter Display "** {iam} ENTER" |
| 100 | // leave Display "** {iam} LEAVE" |
| 101 | // todo Display future enhancement list |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 102 | // label path/to/src[ver:1.0] |
| 103 | // version specify version and label separately |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 104 | // ----------------------------------------------------------------------- |
| 105 | // Usage: |
| 106 | // o called from a jenkins {pipeline,stage,script} block. |
| 107 | // o iam(this) |
| 108 | // { |
| 109 | // foo = bar // paramter foo is... |
| 110 | // tans = fans |
| 111 | // } |
| 112 | // ----------------------------------------------------------------------- |
Joey Armstrong | 0c689df | 2023-03-03 16:03:50 -0500 | [diff] [blame] | 113 | Boolean call\ |
| 114 | ( |
Joey Armstrong | 41feb7c | 2023-04-14 11:28:04 -0400 | [diff] [blame] | 115 | Closure body // jenkins closure attached to the call iam() {closure} |
Joey Armstrong | 9ed18e1 | 2023-03-07 10:40:14 -0500 | [diff] [blame] | 116 | // def self, // jenkins env object for access to primitives like echo() |
Joey Armstrong | 0c689df | 2023-03-03 16:03:50 -0500 | [diff] [blame] | 117 | ) |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 118 | { |
Joey Armstrong | 0c689df | 2023-03-03 16:03:50 -0500 | [diff] [blame] | 119 | // evaluate the body block and collect configuration into the object |
| 120 | Map argv = [:] // {ternary,elvis} operator |
| 121 | body.resolveStrategy = Closure.DELEGATE_FIRST |
Joey Armstrong | 9ed18e1 | 2023-03-07 10:40:14 -0500 | [diff] [blame] | 122 | body.delegate = argv |
Joey Armstrong | 0c689df | 2023-03-03 16:03:50 -0500 | [diff] [blame] | 123 | body() |
| 124 | |
Joey Armstrong | 1fa8cb8 | 2023-03-03 14:05:51 -0500 | [diff] [blame] | 125 | String iam = getIam(argv, 'main') |
| 126 | |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 127 | println("** ${iam}: argv=${argv}") |
| 128 | |
| 129 | Boolean ranToCompletion = false |
| 130 | try |
| 131 | { |
| 132 | // [WIP] type(self) needed to quiet lint complaint. |
| 133 | // npm-groovy-lint: def for method parameter type should not be used NoDef |
| 134 | print(" ** $iam: Type of self variable is =" + self.getClass()) |
Joey Armstrong | 0c689df | 2023-03-03 16:03:50 -0500 | [diff] [blame] | 135 | print(" ** $iam: Type of body variable is =" + body.getClass()) |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 136 | // if (! self instanceof jenkins_object) { throw } |
| 137 | |
| 138 | if (process(argv)) |
| 139 | { |
| 140 | ranToCompletion = true |
| 141 | } |
| 142 | } |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 143 | catch (Exception err) |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 144 | { |
| 145 | println("** ${iam}: EXCEPTION ${err}") |
| 146 | throw err |
| 147 | } |
| 148 | finally |
| 149 | { |
| 150 | println("** ${iam}: LEAVE") |
| 151 | } |
| 152 | |
| 153 | if (!ranToCompletion) |
| 154 | { |
| 155 | throw new Exception("ERROR ${iam}: Detected incomplete script run") |
| 156 | } |
| 157 | |
| 158 | return(true) |
| 159 | } |
| 160 | |
Joey Armstrong | 0c689df | 2023-03-03 16:03:50 -0500 | [diff] [blame] | 161 | /* |
| 162 | * ----------------------------------------------------------------------- |
| 163 | [SEE ALSO] |
| 164 | o https://rtyler.github.io/jenkins.io/doc/book/pipeline/shared-libraries/#defining-a-more-structured-dsl |
| 165 | * ----------------------------------------------------------------------- |
| 166 | */ |
Joey Armstrong | db892b5 | 2023-03-03 10:44:06 -0500 | [diff] [blame] | 167 | |
Joey Armstrong | 0c689df | 2023-03-03 16:03:50 -0500 | [diff] [blame] | 168 | // [EOF] |