2019-12-25 14:10:23 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# node.py - PVC CLI client function library, node management
|
|
|
|
# Part of the Parallel Virtual Cluster (PVC) system
|
|
|
|
#
|
2020-01-08 19:38:02 -05:00
|
|
|
# Copyright (C) 2018-2020 Joshua M. Boniface <joshua@boniface.me>
|
2019-12-25 14:10:23 -05:00
|
|
|
#
|
|
|
|
# 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, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
import cli_lib.ansiprint as ansiprint
|
2020-01-08 19:34:24 -05:00
|
|
|
from cli_lib.common import call_api
|
2019-12-25 20:18:53 -05:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2019-12-25 20:18:53 -05:00
|
|
|
#
|
|
|
|
# Primary functions
|
|
|
|
#
|
2020-02-19 10:50:21 -05:00
|
|
|
def node_coordinator_state(config, node, action):
|
2019-12-25 20:18:53 -05:00
|
|
|
"""
|
|
|
|
Set node coordinator state state (primary/secondary)
|
|
|
|
|
|
|
|
API endpoint: POST /api/v1/node/{node}/coordinator-state
|
|
|
|
API arguments: action={action}
|
|
|
|
API schema: {"message": "{data}"}
|
|
|
|
"""
|
2020-11-07 12:16:36 -05:00
|
|
|
params = {
|
2020-02-19 10:50:21 -05:00
|
|
|
'state': action
|
2020-01-08 19:34:24 -05:00
|
|
|
}
|
|
|
|
response = call_api(config, 'post', '/node/{node}/coordinator-state'.format(node=node), params=params)
|
2019-12-25 20:18:53 -05:00
|
|
|
|
|
|
|
if response.status_code == 200:
|
|
|
|
retstatus = True
|
|
|
|
else:
|
|
|
|
retstatus = False
|
|
|
|
|
2020-07-20 12:30:53 -04:00
|
|
|
return retstatus, response.json().get('message', '')
|
2019-12-25 20:18:53 -05:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2019-12-25 20:18:53 -05:00
|
|
|
def node_domain_state(config, node, action, wait):
|
|
|
|
"""
|
|
|
|
Set node domain state state (flush/ready)
|
|
|
|
|
|
|
|
API endpoint: POST /api/v1/node/{node}/domain-state
|
|
|
|
API arguments: action={action}, wait={wait}
|
|
|
|
API schema: {"message": "{data}"}
|
|
|
|
"""
|
2020-11-07 12:16:36 -05:00
|
|
|
params = {
|
2020-01-08 19:34:24 -05:00
|
|
|
'state': action,
|
2020-01-26 23:04:52 -05:00
|
|
|
'wait': str(wait).lower()
|
2020-01-08 19:34:24 -05:00
|
|
|
}
|
|
|
|
response = call_api(config, 'post', '/node/{node}/domain-state'.format(node=node), params=params)
|
2019-12-25 20:18:53 -05:00
|
|
|
|
|
|
|
if response.status_code == 200:
|
|
|
|
retstatus = True
|
|
|
|
else:
|
|
|
|
retstatus = False
|
|
|
|
|
2020-07-20 12:30:53 -04:00
|
|
|
return retstatus, response.json().get('message', '')
|
2019-12-25 20:18:53 -05:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2019-12-26 11:20:57 -05:00
|
|
|
def node_info(config, node):
|
|
|
|
"""
|
|
|
|
Get information about node
|
|
|
|
|
|
|
|
API endpoint: GET /api/v1/node/{node}
|
|
|
|
API arguments:
|
|
|
|
API schema: {json_data_object}
|
|
|
|
"""
|
2020-01-08 19:34:24 -05:00
|
|
|
response = call_api(config, 'get', '/node/{node}'.format(node=node))
|
2019-12-26 11:20:57 -05:00
|
|
|
|
|
|
|
if response.status_code == 200:
|
|
|
|
return True, response.json()
|
|
|
|
else:
|
2020-07-20 12:30:53 -04:00
|
|
|
return False, response.json().get('message', '')
|
2019-12-26 11:20:57 -05:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2020-06-25 11:38:30 -04:00
|
|
|
def node_list(config, limit, target_daemon_state, target_coordinator_state, target_domain_state):
|
2019-12-26 17:52:57 -05:00
|
|
|
"""
|
|
|
|
Get list information about nodes (limited by {limit})
|
|
|
|
|
|
|
|
API endpoint: GET /api/v1/node
|
|
|
|
API arguments: limit={limit}
|
|
|
|
API schema: [{json_data_object},{json_data_object},etc.]
|
|
|
|
"""
|
2020-01-08 19:34:24 -05:00
|
|
|
params = dict()
|
2019-12-26 17:52:57 -05:00
|
|
|
if limit:
|
2020-01-08 19:34:24 -05:00
|
|
|
params['limit'] = limit
|
2020-06-25 11:38:30 -04:00
|
|
|
if target_daemon_state:
|
|
|
|
params['daemon_state'] = target_daemon_state
|
|
|
|
if target_coordinator_state:
|
|
|
|
params['coordinator_state'] = target_coordinator_state
|
|
|
|
if target_domain_state:
|
|
|
|
params['domain_state'] = target_domain_state
|
2019-12-26 17:52:57 -05:00
|
|
|
|
2020-01-08 19:34:24 -05:00
|
|
|
response = call_api(config, 'get', '/node', params=params)
|
2019-12-26 17:52:57 -05:00
|
|
|
|
|
|
|
if response.status_code == 200:
|
|
|
|
return True, response.json()
|
|
|
|
else:
|
2020-07-20 12:30:53 -04:00
|
|
|
return False, response.json().get('message', '')
|
2019-12-26 17:52:57 -05:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2019-12-25 20:18:53 -05:00
|
|
|
#
|
|
|
|
# Output display functions
|
|
|
|
#
|
2019-12-25 14:10:23 -05:00
|
|
|
def getOutputColours(node_information):
|
|
|
|
if node_information['daemon_state'] == 'run':
|
|
|
|
daemon_state_colour = ansiprint.green()
|
|
|
|
elif node_information['daemon_state'] == 'stop':
|
|
|
|
daemon_state_colour = ansiprint.red()
|
|
|
|
elif node_information['daemon_state'] == 'shutdown':
|
|
|
|
daemon_state_colour = ansiprint.yellow()
|
|
|
|
elif node_information['daemon_state'] == 'init':
|
|
|
|
daemon_state_colour = ansiprint.yellow()
|
|
|
|
elif node_information['daemon_state'] == 'dead':
|
|
|
|
daemon_state_colour = ansiprint.red() + ansiprint.bold()
|
|
|
|
else:
|
|
|
|
daemon_state_colour = ansiprint.blue()
|
|
|
|
|
|
|
|
if node_information['coordinator_state'] == 'primary':
|
|
|
|
coordinator_state_colour = ansiprint.green()
|
|
|
|
elif node_information['coordinator_state'] == 'secondary':
|
|
|
|
coordinator_state_colour = ansiprint.blue()
|
|
|
|
else:
|
|
|
|
coordinator_state_colour = ansiprint.cyan()
|
|
|
|
|
|
|
|
if node_information['domain_state'] == 'ready':
|
|
|
|
domain_state_colour = ansiprint.green()
|
|
|
|
else:
|
|
|
|
domain_state_colour = ansiprint.blue()
|
|
|
|
|
2020-08-28 00:33:50 -04:00
|
|
|
if node_information['memory']['allocated'] > node_information['memory']['total']:
|
|
|
|
mem_allocated_colour = ansiprint.yellow()
|
|
|
|
else:
|
|
|
|
mem_allocated_colour = ''
|
|
|
|
|
2020-10-18 14:02:34 -04:00
|
|
|
if node_information['memory']['provisioned'] > node_information['memory']['total']:
|
|
|
|
mem_provisioned_colour = ansiprint.yellow()
|
|
|
|
else:
|
|
|
|
mem_provisioned_colour = ''
|
|
|
|
|
|
|
|
return daemon_state_colour, coordinator_state_colour, domain_state_colour, mem_allocated_colour, mem_provisioned_colour
|
2019-12-25 14:10:23 -05:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2019-12-25 14:10:23 -05:00
|
|
|
def format_info(node_information, long_output):
|
2020-10-18 14:02:34 -04:00
|
|
|
daemon_state_colour, coordinator_state_colour, domain_state_colour, mem_allocated_colour, mem_provisioned_colour = getOutputColours(node_information)
|
2019-12-25 14:10:23 -05:00
|
|
|
|
|
|
|
# Format a nice output; do this line-by-line then concat the elements at the end
|
|
|
|
ainformation = []
|
|
|
|
# Basic information
|
2020-10-18 14:02:34 -04:00
|
|
|
ainformation.append('{}Name:{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['name']))
|
|
|
|
ainformation.append('{}Daemon State:{} {}{}{}'.format(ansiprint.purple(), ansiprint.end(), daemon_state_colour, node_information['daemon_state'], ansiprint.end()))
|
|
|
|
ainformation.append('{}Coordinator State:{} {}{}{}'.format(ansiprint.purple(), ansiprint.end(), coordinator_state_colour, node_information['coordinator_state'], ansiprint.end()))
|
|
|
|
ainformation.append('{}Domain State:{} {}{}{}'.format(ansiprint.purple(), ansiprint.end(), domain_state_colour, node_information['domain_state'], ansiprint.end()))
|
|
|
|
ainformation.append('{}Active VM Count:{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['domains_count']))
|
2019-12-25 14:10:23 -05:00
|
|
|
if long_output:
|
|
|
|
ainformation.append('')
|
2020-10-18 14:02:34 -04:00
|
|
|
ainformation.append('{}Architecture:{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['arch']))
|
|
|
|
ainformation.append('{}Operating System:{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['os']))
|
|
|
|
ainformation.append('{}Kernel Version:{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['kernel']))
|
2019-12-25 14:10:23 -05:00
|
|
|
ainformation.append('')
|
2020-10-18 14:02:34 -04:00
|
|
|
ainformation.append('{}Host CPUs:{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['vcpu']['total']))
|
|
|
|
ainformation.append('{}vCPUs:{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['vcpu']['allocated']))
|
|
|
|
ainformation.append('{}Load:{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['load']))
|
|
|
|
ainformation.append('{}Total RAM (MiB):{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['memory']['total']))
|
|
|
|
ainformation.append('{}Used RAM (MiB):{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['memory']['used']))
|
|
|
|
ainformation.append('{}Free RAM (MiB):{} {}'.format(ansiprint.purple(), ansiprint.end(), node_information['memory']['free']))
|
|
|
|
ainformation.append('{}Allocated RAM (MiB):{} {}{}{}'.format(ansiprint.purple(), ansiprint.end(), mem_allocated_colour, node_information['memory']['allocated'], ansiprint.end()))
|
|
|
|
ainformation.append('{}Provisioned RAM (MiB):{} {}{}{}'.format(ansiprint.purple(), ansiprint.end(), mem_provisioned_colour, node_information['memory']['provisioned'], ansiprint.end()))
|
2019-12-25 14:10:23 -05:00
|
|
|
|
|
|
|
# Join it all together
|
2020-01-05 12:35:00 -05:00
|
|
|
ainformation.append('')
|
|
|
|
return '\n'.join(ainformation)
|
2019-12-25 14:10:23 -05:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2020-06-25 11:38:30 -04:00
|
|
|
def format_list(node_list, raw):
|
2020-01-05 02:55:28 -05:00
|
|
|
# Handle single-element lists
|
|
|
|
if not isinstance(node_list, list):
|
2020-11-07 13:02:54 -05:00
|
|
|
node_list = [node_list]
|
2020-01-05 02:55:28 -05:00
|
|
|
|
2020-06-25 11:38:30 -04:00
|
|
|
if raw:
|
|
|
|
ainformation = list()
|
|
|
|
for node in sorted(item['name'] for item in node_list):
|
|
|
|
ainformation.append(node)
|
|
|
|
return '\n'.join(ainformation)
|
|
|
|
|
2019-12-25 14:10:23 -05:00
|
|
|
node_list_output = []
|
|
|
|
|
|
|
|
# Determine optimal column widths
|
|
|
|
node_name_length = 5
|
|
|
|
daemon_state_length = 7
|
|
|
|
coordinator_state_length = 12
|
|
|
|
domain_state_length = 8
|
|
|
|
domains_count_length = 4
|
|
|
|
cpu_count_length = 6
|
|
|
|
load_length = 5
|
|
|
|
mem_total_length = 6
|
|
|
|
mem_used_length = 5
|
|
|
|
mem_free_length = 5
|
2020-10-18 14:02:34 -04:00
|
|
|
mem_alloc_length = 6
|
|
|
|
mem_prov_length = 5
|
2019-12-25 14:10:23 -05:00
|
|
|
for node_information in node_list:
|
|
|
|
# node_name column
|
|
|
|
_node_name_length = len(node_information['name']) + 1
|
|
|
|
if _node_name_length > node_name_length:
|
|
|
|
node_name_length = _node_name_length
|
|
|
|
# daemon_state column
|
|
|
|
_daemon_state_length = len(node_information['daemon_state']) + 1
|
|
|
|
if _daemon_state_length > daemon_state_length:
|
|
|
|
daemon_state_length = _daemon_state_length
|
|
|
|
# coordinator_state column
|
|
|
|
_coordinator_state_length = len(node_information['coordinator_state']) + 1
|
|
|
|
if _coordinator_state_length > coordinator_state_length:
|
|
|
|
coordinator_state_length = _coordinator_state_length
|
|
|
|
# domain_state column
|
|
|
|
_domain_state_length = len(node_information['domain_state']) + 1
|
|
|
|
if _domain_state_length > domain_state_length:
|
|
|
|
domain_state_length = _domain_state_length
|
|
|
|
# domains_count column
|
|
|
|
_domains_count_length = len(str(node_information['domains_count'])) + 1
|
|
|
|
if _domains_count_length > domains_count_length:
|
|
|
|
domains_count_length = _domains_count_length
|
|
|
|
# cpu_count column
|
|
|
|
_cpu_count_length = len(str(node_information['cpu_count'])) + 1
|
|
|
|
if _cpu_count_length > cpu_count_length:
|
|
|
|
cpu_count_length = _cpu_count_length
|
|
|
|
# load column
|
|
|
|
_load_length = len(str(node_information['load'])) + 1
|
|
|
|
if _load_length > load_length:
|
|
|
|
load_length = _load_length
|
|
|
|
# mem_total column
|
|
|
|
_mem_total_length = len(str(node_information['memory']['total'])) + 1
|
|
|
|
if _mem_total_length > mem_total_length:
|
|
|
|
mem_total_length = _mem_total_length
|
|
|
|
# mem_used column
|
|
|
|
_mem_used_length = len(str(node_information['memory']['used'])) + 1
|
|
|
|
if _mem_used_length > mem_used_length:
|
|
|
|
mem_used_length = _mem_used_length
|
|
|
|
# mem_free column
|
|
|
|
_mem_free_length = len(str(node_information['memory']['free'])) + 1
|
|
|
|
if _mem_free_length > mem_free_length:
|
|
|
|
mem_free_length = _mem_free_length
|
|
|
|
# mem_alloc column
|
|
|
|
_mem_alloc_length = len(str(node_information['memory']['allocated'])) + 1
|
|
|
|
if _mem_alloc_length > mem_alloc_length:
|
|
|
|
mem_alloc_length = _mem_alloc_length
|
|
|
|
|
2020-10-18 14:02:34 -04:00
|
|
|
# mem_prov column
|
|
|
|
_mem_prov_length = len(str(node_information['memory']['provisioned'])) + 1
|
|
|
|
if _mem_prov_length > mem_prov_length:
|
|
|
|
mem_prov_length = _mem_prov_length
|
|
|
|
|
2019-12-25 14:10:23 -05:00
|
|
|
# Format the string (header)
|
|
|
|
node_list_output.append(
|
|
|
|
'{bold}{node_name: <{node_name_length}} \
|
|
|
|
St: {daemon_state_colour}{node_daemon_state: <{daemon_state_length}}{end_colour} {coordinator_state_colour}{node_coordinator_state: <{coordinator_state_length}}{end_colour} {domain_state_colour}{node_domain_state: <{domain_state_length}}{end_colour} \
|
|
|
|
Res: {node_domains_count: <{domains_count_length}} {node_cpu_count: <{cpu_count_length}} {node_load: <{load_length}} \
|
2020-10-18 14:02:34 -04:00
|
|
|
Mem (M): {node_mem_total: <{mem_total_length}} {node_mem_used: <{mem_used_length}} {node_mem_free: <{mem_free_length}} {node_mem_allocated: <{mem_alloc_length}} {node_mem_provisioned: <{mem_prov_length}}{end_bold}'.format(
|
2019-12-25 14:10:23 -05:00
|
|
|
node_name_length=node_name_length,
|
|
|
|
daemon_state_length=daemon_state_length,
|
|
|
|
coordinator_state_length=coordinator_state_length,
|
|
|
|
domain_state_length=domain_state_length,
|
|
|
|
domains_count_length=domains_count_length,
|
|
|
|
cpu_count_length=cpu_count_length,
|
|
|
|
load_length=load_length,
|
|
|
|
mem_total_length=mem_total_length,
|
|
|
|
mem_used_length=mem_used_length,
|
|
|
|
mem_free_length=mem_free_length,
|
|
|
|
mem_alloc_length=mem_alloc_length,
|
2020-10-18 14:02:34 -04:00
|
|
|
mem_prov_length=mem_prov_length,
|
2019-12-25 14:10:23 -05:00
|
|
|
bold=ansiprint.bold(),
|
|
|
|
end_bold=ansiprint.end(),
|
|
|
|
daemon_state_colour='',
|
|
|
|
coordinator_state_colour='',
|
|
|
|
domain_state_colour='',
|
|
|
|
end_colour='',
|
|
|
|
node_name='Name',
|
|
|
|
node_daemon_state='Daemon',
|
|
|
|
node_coordinator_state='Coordinator',
|
|
|
|
node_domain_state='Domain',
|
|
|
|
node_domains_count='VMs',
|
|
|
|
node_cpu_count='vCPUs',
|
|
|
|
node_load='Load',
|
|
|
|
node_mem_total='Total',
|
|
|
|
node_mem_used='Used',
|
|
|
|
node_mem_free='Free',
|
2020-10-18 14:02:34 -04:00
|
|
|
node_mem_allocated='Alloc',
|
|
|
|
node_mem_provisioned='Prov'
|
2019-12-25 14:10:23 -05:00
|
|
|
)
|
|
|
|
)
|
2020-11-06 19:05:48 -05:00
|
|
|
|
2019-12-25 14:10:23 -05:00
|
|
|
# Format the string (elements)
|
|
|
|
for node_information in node_list:
|
2020-10-18 14:02:34 -04:00
|
|
|
daemon_state_colour, coordinator_state_colour, domain_state_colour, mem_allocated_colour, mem_provisioned_colour = getOutputColours(node_information)
|
2019-12-25 14:10:23 -05:00
|
|
|
node_list_output.append(
|
|
|
|
'{bold}{node_name: <{node_name_length}} \
|
|
|
|
{daemon_state_colour}{node_daemon_state: <{daemon_state_length}}{end_colour} {coordinator_state_colour}{node_coordinator_state: <{coordinator_state_length}}{end_colour} {domain_state_colour}{node_domain_state: <{domain_state_length}}{end_colour} \
|
|
|
|
{node_domains_count: <{domains_count_length}} {node_cpu_count: <{cpu_count_length}} {node_load: <{load_length}} \
|
2020-10-18 14:02:34 -04:00
|
|
|
{node_mem_total: <{mem_total_length}} {node_mem_used: <{mem_used_length}} {node_mem_free: <{mem_free_length}} {mem_allocated_colour}{node_mem_allocated: <{mem_alloc_length}}{end_colour} {mem_provisioned_colour}{node_mem_provisioned: <{mem_prov_length}}{end_colour}{end_bold}'.format(
|
2019-12-25 14:10:23 -05:00
|
|
|
node_name_length=node_name_length,
|
|
|
|
daemon_state_length=daemon_state_length,
|
|
|
|
coordinator_state_length=coordinator_state_length,
|
|
|
|
domain_state_length=domain_state_length,
|
|
|
|
domains_count_length=domains_count_length,
|
|
|
|
cpu_count_length=cpu_count_length,
|
|
|
|
load_length=load_length,
|
|
|
|
mem_total_length=mem_total_length,
|
|
|
|
mem_used_length=mem_used_length,
|
|
|
|
mem_free_length=mem_free_length,
|
|
|
|
mem_alloc_length=mem_alloc_length,
|
2020-10-18 14:02:34 -04:00
|
|
|
mem_prov_length=mem_prov_length,
|
2019-12-25 14:10:23 -05:00
|
|
|
bold='',
|
|
|
|
end_bold='',
|
|
|
|
daemon_state_colour=daemon_state_colour,
|
|
|
|
coordinator_state_colour=coordinator_state_colour,
|
|
|
|
domain_state_colour=domain_state_colour,
|
2020-08-28 00:33:50 -04:00
|
|
|
mem_allocated_colour=mem_allocated_colour,
|
2020-10-18 14:02:34 -04:00
|
|
|
mem_provisioned_colour=mem_allocated_colour,
|
2019-12-25 14:10:23 -05:00
|
|
|
end_colour=ansiprint.end(),
|
|
|
|
node_name=node_information['name'],
|
|
|
|
node_daemon_state=node_information['daemon_state'],
|
|
|
|
node_coordinator_state=node_information['coordinator_state'],
|
|
|
|
node_domain_state=node_information['domain_state'],
|
|
|
|
node_domains_count=node_information['domains_count'],
|
|
|
|
node_cpu_count=node_information['vcpu']['allocated'],
|
|
|
|
node_load=node_information['load'],
|
|
|
|
node_mem_total=node_information['memory']['total'],
|
|
|
|
node_mem_used=node_information['memory']['used'],
|
|
|
|
node_mem_free=node_information['memory']['free'],
|
2020-10-18 14:02:34 -04:00
|
|
|
node_mem_allocated=node_information['memory']['allocated'],
|
|
|
|
node_mem_provisioned=node_information['memory']['provisioned']
|
2019-12-25 14:10:23 -05:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-01-05 12:35:00 -05:00
|
|
|
return '\n'.join(sorted(node_list_output))
|