Fix vnflcm msapi aai pep8 error
[vfc/gvnfm/vnflcm.git] / lcm / lcm / pub / utils / values.py
1 # Copyright 2017 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 def ignore_case_get(args, key, def_val=""):
17     if not key:
18         return def_val
19     if key in args:
20         return args[key]
21     for old_key in args:
22         if old_key.upper() == key.upper():
23             return args[old_key]
24     return def_val
25
26
27 def set_opt_val(param, key, val):
28     if val or val is False:
29         param[key] = val
30
31
32 def get_none(val, def_val=""):
33     return val if val else def_val
34
35
36 def get_boolean(val, def_val=0):
37     return 1 if val else 0
38
39
40 def get_integer(val, def_val=0):
41     return val if val else 0