Spdk/python/spdk/sma/common.py
Michal Berger 588dfe314b Add SPDX header to various files
They were missed by the initial set of patches which introduced this
header as a mandatory one across different types of files.

Signed-off-by: Michal Berger <michal.berger@intel.com>
Change-Id: I3f9b37d41298c843e1648e72fe8593768ccd37e0
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15423
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
2022-11-29 08:27:51 +00:00

26 lines
607 B
Python

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (C) 2022 Intel Corporation.
# All rights reserved.
import uuid
def format_volume_id(volume_id):
"""Verifies volume_id and returns it as a str
Args:
volume_id: either a str (in which case it's only validated) or bytes object
"""
try:
if type(volume_id) is bytes:
return str(uuid.UUID(bytes=volume_id))
elif type(volume_id) is str:
return str(uuid.UUID(hex=volume_id))
except ValueError:
pass
return None
def volume_id_to_nguid(uuid):
return uuid.replace('-', '')