merge from:
[monitor.git] / nodecommon.py
1
2 import time
3 import struct
4 from monitor.pcu import reboot
5
6 from monitor import util
7 from monitor import database
8 from monitor.wrapper import plc
9
10 from datetime import datetime 
11 from unified_model import PersistFlags
12
13 esc = struct.pack('i', 27)
14 RED     = esc + "[1;31m"
15 GREEN   = esc + "[1;32m"
16 YELLOW  = esc + "[1;33m"
17 BLUE    = esc + "[1;34m"
18 LIGHTBLUE       = esc + "[1;36m"
19 NORMAL  = esc + "[0;39m"
20
21 def red(str):
22         return RED + str + NORMAL
23
24 def yellow(str):
25         return YELLOW + str + NORMAL
26
27 def green(str):
28         return GREEN + str + NORMAL
29
30 def lightblue(str):
31         return LIGHTBLUE + str + NORMAL
32
33 def blue(str):
34         return BLUE + str + NORMAL
35
36 def get_current_state(fbnode):
37         if 'state' in fbnode:
38                 state = fbnode['state']
39         else:
40                 state = "none"
41         l = state.lower()
42         if l == "debug": l = 'dbg '
43         return l
44
45 def color_pcu_state(fbnode):
46
47         if 'plcnode' in fbnode and 'pcu_ids' in fbnode['plcnode'] and len(fbnode['plcnode']['pcu_ids']) > 0 :
48                 values = reboot.get_pcu_values(fbnode['plcnode']['pcu_ids'][0])
49                 if values == None:
50                         return fbnode['pcu']
51         else:
52                 if 'pcu' not in fbnode:
53                         return 'NOPCU'
54                 else:
55                         return fbnode['pcu']
56
57         if 'reboot' in values:
58                 rb = values['reboot']
59                 if rb == 0 or rb == "0":
60                         return fbnode['pcu'] + "OK  "
61                         #return fbnode['pcu'] + "OK  "
62                         #return green(fbnode['pcu'])
63                 elif "NetDown" == rb  or "Not_Run" == rb:
64                         return fbnode['pcu'] + "DOWN"
65                         #return yellow(fbnode['pcu'])
66                 else:
67                         return fbnode['pcu'] + "BAD "
68                         #return red(fbnode['pcu'])
69         else:
70                 #return red(fbnode['pcu'])
71                 return fbnode['pcu'] + "BAD "
72
73 def color_boot_state(l):
74         if    l == "dbg": return yellow("debg")
75         elif  l == "dbg ": return yellow("debg")
76         elif  l == "diag": return lightblue(l)
77         elif  l == "disable": return red("dsbl")
78         elif  l == "down": return red(l)
79         elif  l == "boot": return green(l)
80         elif  l == "rins": return blue(l)
81         else:
82                 return l
83
84 def diff_time(timestamp, abstime=True):
85         import math
86         now = time.time()
87         if timestamp == None:
88                 return "unknown"
89         if abstime:
90                 diff = now - timestamp
91         else:
92                 diff = timestamp
93         # return the number of seconds as a difference from current time.
94         t_str = ""
95         if diff < 60: # sec in min.
96                 t = diff / 1
97                 t_str = "%s sec ago" % int(math.ceil(t))
98         elif diff < 60*60: # sec in hour
99                 t = diff / (60)
100                 t_str = "%s min ago" % int(math.ceil(t))
101         elif diff < 60*60*24: # sec in day
102                 t = diff / (60*60)
103                 t_str = "%s hrs ago" % int(math.ceil(t))
104         elif diff < 60*60*24*14: # sec in week
105                 t = diff / (60*60*24)
106                 t_str = "%s days ago" % int(math.ceil(t))
107         elif diff <= 60*60*24*30: # approx sec in month
108                 t = diff / (60*60*24*7)
109                 t_str = "%s wks ago" % int(math.ceil(t))
110         elif diff > 60*60*24*30: # approx sec in month
111                 t = diff / (60*60*24*30)
112                 t_str = "%s mnths ago" % int(t)
113         return t_str
114
115 def getvalue(fb, path):
116     indexes = path.split("/")
117     values = fb
118     for index in indexes:
119         if index in values:
120             values = values[index]
121         else:
122             return None
123     return values
124
125 def nodegroup_display(node, fb, conf=None):
126         if node['hostname'] in fb['nodes']:
127                 node['current'] = get_current_state(fb['nodes'][node['hostname']]['values'])
128         else:
129                 node['current'] = 'none'
130
131         if fb['nodes'][node['hostname']]['values'] == []:
132                 return ""
133
134         s = fb['nodes'][node['hostname']]['values']['kernel'].split()
135         if len(s) >=3:
136                 node['kernel'] = s[2]
137         else:
138                 node['kernel'] = fb['nodes'][node['hostname']]['values']['kernel']
139                 
140         if '2.6' not in node['kernel']: node['kernel'] = ""
141         if conf and not conf.nocolor:
142             node['boot_state']  = color_boot_state(node['boot_state'])
143             node['current']     = color_boot_state(node['current'])
144         #node['boot_state']     = node['boot_state']
145         #node['current']        = node['current']
146         node['pcu'] = fb['nodes'][node['hostname']]['values']['pcu']
147         node['lastupdate'] = diff_time(node['last_contact'])
148         pf = PersistFlags(node['hostname'], 1, db='node_persistflags')
149         try:
150                 node['lc'] = diff_time(pf.last_changed)
151         except:
152                 node['lc'] = "err"
153         ut = fb['nodes'][node['hostname']]['values']['comonstats']['uptime']
154         if ut != "null":
155                 ut = diff_time(float(fb['nodes'][node['hostname']]['values']['comonstats']['uptime']), False)
156         node['uptime'] = ut
157
158         return "%(hostname)-42s %(boot_state)8s %(current)5s %(pcu)6s %(key)10.10s... %(kernel)35.35s %(lastupdate)12s, %(lc)s, %(uptime)s" % node
159
160 def datetime_fromstr(str):
161         if '-' in str:
162                 try:
163                         tup = time.strptime(str, "%Y-%m-%d")
164                 except:
165                         tup = time.strptime(str, "%Y-%m-%d-%H:%M")
166         elif '/' in str:
167                 tup = time.strptime(str, "%m/%d/%Y")
168         else:
169                 tup = time.strptime(str, "%m/%d/%Y")
170         ret = datetime.fromtimestamp(time.mktime(tup))
171         return ret
172
173 def get_nodeset(config):
174         """
175                 Given the config values passed in, return the set of hostnames that it
176                 evaluates to.
177         """
178         api = plc.getAuthAPI()
179         l_nodes = database.dbLoad("l_plcnodes")
180
181         if config.nodelist:
182                 f_nodes = util.file.getListFromFile(config.nodelist)
183                 l_nodes = filter(lambda x: x['hostname'] in f_nodes, l_nodes)
184         elif config.node:
185                 f_nodes = [config.node]
186                 l_nodes = filter(lambda x: x['hostname'] in f_nodes, l_nodes)
187         elif config.nodegroup:
188                 ng = api.GetNodeGroups({'name' : config.nodegroup})
189                 l_nodes = api.GetNodes(ng[0]['node_ids'], ['hostname'])
190         elif config.site:
191                 site = api.GetSites(config.site)
192                 l_nodes = api.GetNodes(site[0]['node_ids'], ['hostname'])
193                 
194         l_nodes = [node['hostname'] for node in l_nodes]
195
196         # perform this query after the above options, so that the filter above
197         # does not break.
198         if config.nodeselect:
199                 fb = database.dbLoad("findbad")
200                 l_nodes = node_select(config.nodeselect, fb['nodes'].keys(), fb)
201
202         return l_nodes
203