1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
import sys
debugFlag = True
def join_strings(lst):
return ''.join([str(string) for string in lst])
def debug(desc, *args):
if debugFlag:
print(desc, join_strings(args))
def log(desc, arg=None):
if arg:
print(desc, arg)
else:
print(desc)
def print_and_exit(error_code, error_desc):
if error_code > 0:
print("status={0}. {1}".format(error_code, '' if not error_desc else error_desc))
else:
print("status={0}".format(error_code))
sys.exit(error_code)
def print_name_and_return_code(name, code, with_line=True):
if _strings_correct(name, code):
if with_line:
print("----------------------------------------")
print("{0:30} | {1:6}".format(name, code))
if with_line:
print("----------------------------------------")
else:
print("name of the item or return code from request is none -> error occurred!!")
def _strings_correct(*strings):
results = [(string is not None and string != "") for string in strings]
return all(results) is True
# def parse_cmd_line_params(argv):
# print('Number of arguments:', len(sys.argv), 'arguments.')
#
# opts = []
#
# be_host = 'localhost'
# be_port = '8080'
# admin_user = 'jh0003'
# scheme = 'http'
#
# try:
# opts, args = getopt.getopt(argv, "i:p:u:h:s:", ["ip=", "port=", "user=", "scheme="])
# except getopt.GetoptError:
# usage()
# error_and_exit(2, 'Invalid input')
#
# for opt, arg in opts:
# # print opt, arg
# if opt == '-h':
# usage()
# sys.exit(3)
# elif opt in ("-i", "--ip"):
# be_host = arg
# elif opt in ("-p", "--port"):
# be_port = arg
# elif opt in ("-u", "--user"):
# admin_user = arg
# elif opt in ("-s", "--scheme"):
# scheme = arg
#
# print('scheme =', scheme, ', be host =', be_host, ', be port =', be_port, ', user =', admin_user)
#
# if be_host is None:
# usage()
# sys.exit(3)
# return scheme, be_host, be_port, admin_user
#
#
# def usage():
# print(sys.argv[0], '[optional -s <scheme> | --scheme=<scheme>, default http ] '
# '[-i <be host> | --ip=<be host>] [-p <be port> | '
# '--port=<be port> ] [-u <user userId> | --user=<user userId> ] ')
|