webdataset.checks

A collection of simple runtime checks.

View Source
#
# Copyright (c) 2017-2021 NVIDIA CORPORATION. All rights reserved.
# This file is part of the webdataset library.
# See the LICENSE file for licensing terms (BSD-style).
#

"""A collection of simple runtime checks."""


def checktype(value, types, msg=""):
    """Type check value; raise ValueError if fails."""
    if not isinstance(value, types):
        raise ValueError(f"ERROR {msg}: {value} should be of type {types}")


def checkmember(value, values, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if value not in values:
        raise ValueError(f"ERROR {msg}: {value} should be in {values}")


def checkrange(value, lo, hi, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if value < lo or value > hi:
        raise ValueError(f"ERROR {msg}: {value} should be in range {lo} {hi}")


def check(value, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if not value:
        raise ValueError(f"ERROR {msg}: {value} should be true")


def checkcallable(value, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if not callable(value):
        raise ValueError(f"ERROR {msg}: {value} should be callable")


def checknotnone(value, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if value is None:
        raise ValueError(f"ERROR {msg}: {value} should not be None")
#   def checktype(value, types, msg=''):
View Source
def checktype(value, types, msg=""):
    """Type check value; raise ValueError if fails."""
    if not isinstance(value, types):
        raise ValueError(f"ERROR {msg}: {value} should be of type {types}")

Type check value; raise ValueError if fails.

#   def checkmember(value, values, msg=''):
View Source
def checkmember(value, values, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if value not in values:
        raise ValueError(f"ERROR {msg}: {value} should be in {values}")

Check value for membership; raise ValueError if fails.

#   def checkrange(value, lo, hi, msg=''):
View Source
def checkrange(value, lo, hi, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if value < lo or value > hi:
        raise ValueError(f"ERROR {msg}: {value} should be in range {lo} {hi}")

Check value for membership; raise ValueError if fails.

#   def check(value, msg=''):
View Source
def check(value, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if not value:
        raise ValueError(f"ERROR {msg}: {value} should be true")

Check value for membership; raise ValueError if fails.

#   def checkcallable(value, msg=''):
View Source
def checkcallable(value, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if not callable(value):
        raise ValueError(f"ERROR {msg}: {value} should be callable")

Check value for membership; raise ValueError if fails.

#   def checknotnone(value, msg=''):
View Source
def checknotnone(value, msg=""):
    """Check value for membership; raise ValueError if fails."""
    if value is None:
        raise ValueError(f"ERROR {msg}: {value} should not be None")

Check value for membership; raise ValueError if fails.