Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 1 | # Copyright (c) 2018 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| 14 | ############################################################################## |
| 15 | # Highlight WARNING and ERROR messages |
| 16 | ############################################################################## |
| 17 | function(message) |
| 18 | list(GET ARGV 0 type) |
Damjan Marion | cc4eb99 | 2018-09-01 15:17:02 +0200 | [diff] [blame] | 19 | if("$ENV{TERM}" STREQUAL "xterm-256color") |
| 20 | string(ASCII 27 esc) |
| 21 | set(red "${esc}[1;31m") |
| 22 | set(yellow "${esc}[1;33m") |
| 23 | set(reset "${esc}[m") |
| 24 | endif() |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 25 | if(type STREQUAL FATAL_ERROR OR type STREQUAL SEND_ERROR) |
| 26 | list(REMOVE_AT ARGV 0) |
| 27 | _message(${type} "${red}${ARGV}${reset}") |
| 28 | elseif(type STREQUAL WARNING) |
| 29 | list(REMOVE_AT ARGV 0) |
| 30 | _message(STATUS "${yellow}${ARGV}${reset}") |
| 31 | elseif(type STREQUAL STATUS) |
| 32 | list(REMOVE_AT ARGV 0) |
| 33 | _message(STATUS "${ARGV}") |
| 34 | else() |
| 35 | _message(${ARGV}) |
| 36 | endif() |
| 37 | endfunction() |
| 38 | |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 39 | ############################################################################## |
| 40 | # aligned config output |
| 41 | ############################################################################## |
| 42 | function(pr desc val) |
Damjan Marion | cc4eb99 | 2018-09-01 15:17:02 +0200 | [diff] [blame] | 43 | if("$ENV{TERM}" STREQUAL "xterm-256color") |
| 44 | string(ASCII 27 esc) |
| 45 | set(reset "${esc}[m") |
| 46 | set(cyan "${esc}[36m") |
| 47 | endif() |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 48 | string(LENGTH ${desc} len) |
| 49 | while (len LESS 20) |
| 50 | set (desc "${desc} ") |
| 51 | string(LENGTH ${desc} len) |
| 52 | endwhile() |
| 53 | _message("${cyan}${desc}${reset}: ${val}") |
| 54 | endfunction() |
Damjan Marion | ff42693 | 2019-01-26 14:12:25 +0100 | [diff] [blame] | 55 | |
| 56 | ############################################################################## |
| 57 | # string append |
| 58 | ############################################################################## |
| 59 | |
| 60 | macro(string_append var str) |
| 61 | if (NOT ${var}) |
| 62 | set(${var} "${str}") |
| 63 | else() |
| 64 | set(${var} "${${var}} ${str}") |
| 65 | endif() |
| 66 | endmacro() |
| 67 | |