Find some bugs and modify the codes
[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 def ignore_case_get(args, key, def_val=""):
16     if not key:
17         return def_val
18     if key in args:
19         return args[key]
20     for old_key in args:
21         if old_key.upper() == key.upper():
22             return args[old_key]
23     return def_val
24
25 def set_opt_val(param, key, val):
26     if val or val is False:
27         param[key] = val
28
29 def get_none(val, def_val=""):
30     return val if val else def_val
31
32 def get_boolean(val, def_val=0):
33     return 1 if val else 0
34
35 def get_integer(val, def_val=0):
36     return val if val else 0