The top level client is unchanged. This is primarily just moving code around. The client.py file is the only location with new code, which converts the old jsonrpc_call function into a class. Change-Id: I5fb7cd48f77f6affa3d9439128009bf63148acda Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.gerrithub.io/364316 Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
48 lines
1.5 KiB
Python
Executable File
48 lines
1.5 KiB
Python
Executable File
from client import print_dict, print_array, int_arg
|
|
|
|
|
|
def construct_lvol_store(args):
|
|
params = {'bdev_name': args.bdev_name, 'lvs_name': args.lvs_name}
|
|
if args.cluster_sz:
|
|
params['cluster_sz'] = args.cluster_sz
|
|
print_array(args.client.call('construct_lvol_store', params))
|
|
|
|
|
|
def construct_lvol_bdev(args):
|
|
num_bytes = (args.size * 1024 * 1024)
|
|
params = {'lvol_name': args.lvol_name, 'size': num_bytes}
|
|
if (args.uuid and args.lvs_name) or (not args.uuid and not args.lvs_name):
|
|
print("You need to specify either uuid or name of lvolstore")
|
|
else:
|
|
if args.uuid:
|
|
params['uuid'] = args.uuid
|
|
if args.lvs_name:
|
|
params['lvs_name'] = args.lvs_name
|
|
print_array(args.client.call('construct_lvol_bdev', params))
|
|
|
|
|
|
# Logical volume resize feature is disabled, as it is currently work in progress
|
|
#
|
|
# def resize_lvol_bdev(args):
|
|
# params = {
|
|
# 'name': args.name,
|
|
# 'size': args.size,
|
|
# }
|
|
# args.client.call('resize_lvol_bdev', params)
|
|
|
|
|
|
def destroy_lvol_store(args):
|
|
params = {}
|
|
if (args.uuid and args.lvs_name) or (not args.uuid and not args.lvs_name):
|
|
print("You need to specify either uuid or name of lvolstore")
|
|
else:
|
|
if args.uuid:
|
|
params['uuid'] = args.uuid
|
|
if args.lvs_name:
|
|
params['lvs_name'] = args.lvs_name
|
|
args.client.call('destroy_lvol_store', params)
|
|
|
|
|
|
def get_lvol_stores(args):
|
|
print_dict(args.client.call('get_lvol_stores'))
|