This repository has been archived by the owner on Aug 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
XSConsoleHotData.py
489 lines (425 loc) · 19.5 KB
/
XSConsoleHotData.py
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
# Copyright (c) 2007-2009 Citrix Systems Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 only.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import XenAPI
import commands, re, shutil, sys, socket
from pprint import pprint
from XSConsoleAuth import *
from XSConsoleLang import *
from XSConsoleState import *
from XSConsoleUtils import *
class HotOpaqueRef:
def __init__(self, inOpaqueRef, inType):
self.opaqueRef = inOpaqueRef
self.type = inType
self.hash = hash(inOpaqueRef)
def __repr__(self):
return str(self.__dict__)
# __hash__ and __cmp__ allow this object to be used as a dictionary key
def __hash__(self):
return self.hash
def __cmp__(self, inOther):
if not isinstance(inOther, HotOpaqueRef):
return 1
if self.opaqueRef == inOther.opaqueRef:
return 0
if self.opaqueRef < inOther.opaqueRef:
return -1
return 1
def OpaqueRef(self): return self.opaqueRef
def Type(self): return self.type
class HotAccessor:
def __init__(self, inName = None, inRefs = None):
self.name = FirstValue(inName, [])
self.refs = FirstValue(inRefs, [])
def __getattr__(self, inName):
retVal = HotAccessor(self.name[:], self.refs[:]) # [:] copies the array
retVal.name.append(inName)
retVal.refs.append(None)
return retVal
def __iter__(self):
iterData = HotData.Inst().GetData(self.name, {}, self.refs)
if isinstance(iterData, types.DictType):
self.iterKeys = iterData.keys()
elif isinstance(iterData, (types.ListType, types.TupleType)):
self.iterKeys = iterData[:] # [:] copy is necessary
else:
raise Exception(Lang("Cannot iterate over type '")+str(type(iterData))+"'")
return self
# This method will hide fields called 'next' in the xapi database. If any appear, __iter__ will need to
# return a new object type and this method will need to be moved into that
def next(self):
if len(self.iterKeys) <= 0:
raise StopIteration
retVal = HotAccessor(self.name[:], self.refs[:]) # [:] copies the array
retVal.refs[-1] = self.iterKeys.pop(0)
return retVal
def __getitem__(self, inParam):
# These are square brackets selecting a particular item from a dict using its OpaqueRef
if not isinstance(inParam, (types.IntType, HotOpaqueRef)):
raise Exception('Use of HotAccessor[param] requires param of type int or HotOpaqueRef, but got '+str(type(inParam)))
retVal = HotAccessor(self.name[:], self.refs[:])
retVal.refs[-1] = inParam
return retVal
def __call__(self, inParam = None):
# These are the brackets on the end of the statement, with optional default value.
# That makes it a request to fetch the data
if isinstance(inParam, HotOpaqueRef):
raise Exception('Use [] to pass HotOpaqueRefs to HotAccessors')
return HotData.Inst().GetData(self.name, inParam, self.refs)
def HotOpaqueRef(self):
return self.refs[-1]
def __str__(self):
return str(self.__dict__)
def __repr__(self):
return str(self.__dict__)
class HotData:
instance = None
def __init__(self):
self.data = {}
self.timestamps = {}
self.session = None
self.InitialiseFetchers()
@classmethod
def Inst(cls):
if cls.instance is None:
cls.instance = HotData()
return cls.instance
@classmethod
def Reset(cls):
if cls.instance is not None:
del cls.instance
cls.instance = None
def DeleteCache(self):
self.data = {}
self.timestamps = {}
def Fetch(self, inName, inRef):
# Top-level object are cached by name, referenced objects by reference
cacheName = FirstValue(inRef, inName)
cacheEntry = self.data.get(cacheName, None)
fetcher = self.fetchers[inName]
timeNow = time.time()
# If inRef is an array index, the result can't be cached
if not isinstance(inRef, types.IntType) and cacheEntry is not None and timeNow - cacheEntry.timestamp < fetcher.lifetimeSecs:
retVal = cacheEntry.value
else:
try:
retVal = fetcher.fetcher(inRef)
# Save in the cache
self.data[cacheName] = Struct(timestamp = timeNow, value = retVal)
except socket.timeout:
self.session = None
raise socket.timeout
return retVal
def FetchByRef(self, inRef):
retVal = self.Fetch(inRef.Type(), inRef)
return retVal
def FetchByNameOrRef(self, inName, inRef):
if inName in self.fetchers:
retVal = self.Fetch(inName, inRef)
else:
retVal = self.Fetch(inRef.Type(), inRef)
return retVal
def GetData(self, inNames, inDefault, inRefs):
try:
itemRef = self.data # Start at the top level
for i, name in enumerate(inNames):
currentRef = inRefs[i]
if isinstance(currentRef, HotOpaqueRef):
# If currentRef is a HotOpaqueRef, always fetch the corresponding object
itemRef = self.FetchByNameOrRef(name, currentRef)
else:
# Look for a data fetcher matching this item name
if name in self.fetchers:
# We have a fetcher for this element, so use it
# Handle the case where itemRef is a dictionary containing the key/value pair ( current name : HotOpaqueRef )
if isinstance(itemRef, types.DictType) and name in itemRef and isinstance(itemRef[name], HotOpaqueRef):
# This is a subitem with an OpaqueRef supplied by xapi, so fetch the obect it's referring to
itemRef = self.Fetch(name, itemRef[name])
else:
# Fetch without a reference
itemRef = self.Fetch(name, None)
else:
# No fetcher for this item, so return the value of the named element if is in the dictionary,
# or the default if not
# First, promote OpaqueRefs to the object they refer to
if isinstance(itemRef, HotOpaqueRef):
itemRef = self.FetchByRef(itemRef)
# This allows hash navigation using HotAccessor().key1.key2.key3(), etc.
itemRef = itemRef[name] # Allow to throw if element not present
# Handle integer references as list indices
if isinstance(currentRef, types.IntType):
if not isinstance(itemRef, (types.ListType, types.TupleType)):
raise Exception("List index supplied but element '"+'.'.join(inNames)+"' is not a list")
if inRefs[i] >= len(itemRef) or currentRef < -len(itemRef):
raise Exception("List index "+str(currentRef)+" out of range in '"+'.'.join(inNames)+"'")
itemRef = itemRef[currentRef]
return itemRef
except Exception, e:
# Data not present/fetchable, so return the default value
return FirstValue(inDefault, None)
def __getattr__(self, inName):
if inName[0].isupper():
# Don't expect elements to start with upper case, so probably an unknown method name
raise Exception("Unknown method HotData."+inName)
return HotAccessor([inName], [None])
def AddFetcher(self, inKey, inFetcher, inLifetimeSecs):
self.fetchers[inKey] = Struct( fetcher = inFetcher, lifetimeSecs = inLifetimeSecs )
def InitialiseFetchers(self):
self.fetchers = {}
self.AddFetcher('guest_metrics', self.FetchVMGuestMetrics, 5)
self.AddFetcher('guest_vm', self.FetchGuestVM, 5)
self.AddFetcher('guest_vm_derived', self.FetchGuestVMDerived, 5)
self.AddFetcher('host', self.FetchHost, 5)
self.AddFetcher('host_cpu', self.FetchHostCPUs, 5)
self.AddFetcher('local_host', self.FetchLocalHost, 5) # Derived
self.AddFetcher('local_host_ref', self.FetchLocalHostRef, 60) # Derived
self.AddFetcher('local_pool', self.FetchLocalPool, 5) # Derived
self.AddFetcher('metrics', self.FetchMetrics, 5)
self.AddFetcher('pbd', self.FetchPBD, 5)
self.AddFetcher('pool', self.FetchPool, 5)
self.AddFetcher('sr', self.FetchSR, 5)
self.AddFetcher('visible_sr', self.FetchVisibleSR, 5) # Derived
self.AddFetcher('vm', self.FetchVM, 5)
def FetchVMGuestMetrics(self, inOpaqueRef):
retVal = self.Session().xenapi.VM_guest_metrics.get_record(inOpaqueRef.OpaqueRef())
return retVal
def FetchGuestVM(self, inOpaqueRef):
if inOpaqueRef is not None:
# Don't need to filter, so can use the standard VM fetch
retVal = self.FetchVM(inOpaqueRef)
else:
retVal = {}
for key, value in self.vm().iteritems():
if not value.get('is_a_template', False) and not value.get('is_control_domain', False):
retVal[key] = value
return retVal
def FetchHostCPUs(self, inOpaqueRef):
def LocalConverter(inCPU):
return HotData.ConvertOpaqueRefs(inCPU,
host='host'
)
if inOpaqueRef is not None:
cpu = self.Session().xenapi.host_cpu.get_record(inOpaqueRef.OpaqueRef())
retVal = LocalConverter(cpu)
else:
cpus = self.Session().xenapi.host_cpu.get_all_records()
retVal = {}
for key, cpu in cpus.iteritems():
cpu = LocalConverter(cpu)
retVal[HotOpaqueRef(key, 'host_cpu')] = cpu
return retVal
def FetchGuestVMDerived(self, inOpaqueRef):
retVal = {}
halted = 0
paused = 0
running = 0
suspended = 0
for key, vm in self.guest_vm().iteritems():
powerState = vm.get('power_state', '').lower()
if powerState.startswith('halted'):
halted += 1
elif powerState.startswith('paused'):
paused += 1
elif powerState.startswith('running'):
running += 1
elif powerState.startswith('suspended'):
suspended += 1
retVal['num_halted'] = halted
retVal['num_paused'] = paused
retVal['num_running'] = running
retVal['num_suspended'] = suspended
return retVal
def FetchLocalHost(self, inOpaqueRef):
retVal = self.FetchHost(self.FetchLocalHostRef(inOpaqueRef))
return retVal
def FetchLocalHostRef(self, inOpaqueRef):
if inOpaqueRef is not None:
raise Exception("Request for local host must not be passed an OpaqueRef")
thisHost = self.Session().xenapi.session.get_this_host(self.Session()._session)
retVal = HotOpaqueRef(thisHost, 'host')
return retVal
def FetchLocalPool(self, inOpaqueRef):
if inOpaqueRef is not None:
raise Exception("Request for local pool must not be passed an OpaqueRef")
pools = self.Session().xenapi.pool.get_all()
if len(pools) != 1:
raise Exception("Unexpected number of pools "+str(pools))
retVal = self.FetchPool(HotOpaqueRef(pools[0], 'pool'))
return retVal
def FetchHost(self, inOpaqueRef):
def LocalConverter(inHost):
return HotData.ConvertOpaqueRefs(inHost,
crash_dump_sr = 'sr',
consoles = 'console',
current_operations = 'task',
host_CPUs = 'host_cpu',
metrics = 'host::metrics',
PBDs = 'pbd',
PIFs='pif',
resident_VMs = 'vm',
suspend_image_sr = 'sr',
VBDs = 'vbd',
VIFs = 'vif'
)
if inOpaqueRef is not None:
host = self.Session().xenapi.host.get_record(inOpaqueRef.OpaqueRef())
retVal = LocalConverter(host)
else:
hosts = self.Session().xenapi.host.get_all_records()
retVal = {}
for key, host in hosts.iteritems():
host = LocalConverter(host)
retVal[HotOpaqueRef(key, 'host')] = host
return retVal
def FetchMetrics(self, inOpaqueRef):
if inOpaqueRef is None:
raise Exception("Request for VM metrics requires an OpaqueRef")
if inOpaqueRef.Type() == 'vm::metrics':
retVal = self.Session().xenapi.VM_metrics.get_record(inOpaqueRef.OpaqueRef())
elif inOpaqueRef.Type() == 'host::metrics':
retVal = self.Session().xenapi.host_metrics.get_record(inOpaqueRef.OpaqueRef())
else:
raise Exception("Unknown metrics type '"+inOpaqueRef.Type()+"'")
return retVal
def FetchPBD(self, inOpaqueRef):
def LocalConverter(inPBD):
return HotData.ConvertOpaqueRefs(inPBD,
host='host',
SR='sr'
)
if inOpaqueRef is not None:
pbd = self.Session().xenapi.PBD.get_record(inOpaqueRef.OpaqueRef())
retVal = LocalConverter(pbd)
else:
pbds = self.Session().xenapi.PBD.get_all_records()
retVal = {}
for key, pbd in pbds.iteritems():
pbd = LocalConverter(pbd)
retVal[HotOpaqueRef(key, 'pbd')] = pbd
return retVal
def FetchPool(self, inOpaqueRef):
def LocalConverter(inPool):
return HotData.ConvertOpaqueRefs(inPool,
crash_dump_SR='sr',
default_SR='sr',
master='host',
suspend_image_SR='sr'
)
if inOpaqueRef is not None:
pool = self.Session().xenapi.pool.get_record(inOpaqueRef.OpaqueRef())
retVal = LocalConverter(pool)
else:
pools = self.Session().xenapi.pool.get_all_records()
retVal = {}
for key, pool in pools.iteritems():
pool = LocalConverter(pool)
retVal[HotOpaqueRef(key, 'pool')] = pool
return retVal
def FetchSR(self, inOpaqueRef):
def LocalConverter(inSR):
return HotData.ConvertOpaqueRefs(inSR,
current_operations = 'task',
PBDs = 'pbd',
VDIs = 'vdi')
if inOpaqueRef is not None:
sr = self.Session().xenapi.SR.get_record(inOpaqueRef.OpaqueRef())
retVal = LocalConverter(sr)
else:
srs = self.Session().xenapi.SR.get_all_records()
retVal = {}
for key, sr in srs.iteritems():
sr = LocalConverter(sr)
retVal[HotOpaqueRef(key, 'sr')] = sr
return retVal
def FetchVisibleSR(self, inOpaqueRef):
if inOpaqueRef is not None:
# Make sr[ref] and visible_sr[ref] do the same thing, i.e. don't check the the SR is visible
retVal = self.FetchSR(inOpaqueRef)
else:
retVal = {}
for sr in HotAccessor().sr: # Iterates through HotAccessors to SRs
visible = False
if len(sr.PBDs()) == 0:
visible = True # This is a detached SR so list it as visible
else:
for pbd in sr.PBDs(): # Iterates through HotOpaqueRefs to PBDs
if pbd in HotAccessor().local_host.PBDs(): # host.PBDs() is a list of HotOpaqueRefs
visible = True
if visible:
retVal[sr.HotOpaqueRef()] = sr
return retVal
def FetchVM(self, inOpaqueRef):
def LocalConverter(inVM):
return HotData.ConvertOpaqueRefs(inVM,
affinity='host',
consoles='console',
current_operations = 'task',
guest_metrics='guest_metrics',
metrics='vm::metrics',
PIFs='pif',
resident_on='host',
suspend_VDI='vdi',
snapshot_of='snapshot',
VBDs = 'vbd',
VIFs = 'vif')
if inOpaqueRef is not None:
vm = self.Session().xenapi.VM.get_record(inOpaqueRef.OpaqueRef())
retVal = LocalConverter(vm)
else:
vms = self.Session().xenapi.VM.get_all_records()
retVal = {}
for key, vm in vms.iteritems():
vm = LocalConverter(vm)
retVal[HotOpaqueRef(key, 'vm')] = vm
return retVal
@classmethod # classmethod so that other class's fetchers can use it easily
def ConvertOpaqueRefs(cls, *inArgs, **inKeywords):
if len(inArgs) != 1:
raise Exception('ConvertOpaqueRef requires a dictionary object as the first argument')
ioObj = inArgs[0]
for keyword, value in inKeywords.iteritems():
obj = ioObj.get(keyword, None)
if obj is not None:
if isinstance(obj, str):
ioObj[keyword] = HotOpaqueRef(obj, value)
elif isinstance(obj, types.ListType):
ioObj[keyword] = [ HotOpaqueRef(x, value) for x in obj ]
elif isinstance(obj, types.DictType):
result = {}
for key, item in obj.iteritems():
result[ HotOpaqueRef(key, value) ] = item
ioObj[keyword] = result
if Auth.Inst().IsTestMode(): # Tell the caller what they've missed, when in test mode
for key,value in ioObj.iteritems():
if isinstance(value, str) and value.startswith('OpaqueRef'):
print('Missed OpaqueRef string in HotData item: '+key)
elif isinstance(value, types.ListType):
for item in value:
if isinstance(item, str) and item.startswith('OpaqueRef'):
print('Missed OpaqueRef List in HotData item: '+key)
break
elif isinstance(value, types.DictType):
for item in value.keys():
if isinstance(item, str) and item.startswith('OpaqueRef'):
print('Missed OpaqueRef Dict in HotData item: '+key)
break
return ioObj
def Session(self):
if self.session is None:
self.session = Auth.Inst().OpenSession()
return self.session
def Dump(self):
print "Contents of HotData cache:"
pprint(self.data)