
    `d                        d Z ddlmZ ddlmZmZmZmZ ddlZej                  dk\  r	ddlm
Z
mZ nddlm
Z
mZ erddlZddlmZ ddlmZ e G d	 d
e
             Zy)z4
typing.Protocol classes for jsonschema interfaces.
    )annotations)TYPE_CHECKINGAnyClassVarIteratorN)      )Protocolruntime_checkable)ValidationError)RefResolverc                      e Zd ZU dZded<   ded<   ded<   ded<   d	ed
<   	 	 d	 	 	 	 	 	 	 ddZedd       ZddZddZ	ddZ
ddZddZy)	Validatora  
    The protocol to which all validator classes should adhere.

    :argument schema: the schema that the validator object
        will validate with. It is assumed to be valid, and providing
        an invalid schema can lead to undefined behavior. See
        `Validator.check_schema` to validate a schema first.
    :argument resolver: an instance of `jsonschema.RefResolver` that will be
        used to resolve :kw:`$ref` properties (JSON references). If
        unprovided, one will be created.
    :argument format_checker: an instance of `jsonschema.FormatChecker`
        whose `jsonschema.FormatChecker.conforms` method will be called to
        check and see if instances conform to each :kw:`format`
        property present in the schema. If unprovided, no validation
        will be done for :kw:`format`. Certain formats require
        additional packages to be installed (ipv5, uri, color, date-time).
        The required packages can be found at the bottom of this page.
    zClassVar[dict]META_SCHEMA
VALIDATORSz ClassVar[jsonschema.TypeChecker]TYPE_CHECKERz"ClassVar[jsonschema.FormatChecker]FORMAT_CHECKERdict | boolschemaNc                     y )N )selfr   resolverformat_checkers       6/usr/lib/python3/dist-packages/jsonschema/protocols.py__init__zValidator.__init__Y   s     	    c                     y)z
        Validate the given schema against the validator's `META_SCHEMA`.

        :raises: `jsonschema.exceptions.SchemaError` if the schema
            is invalid
        Nr   )clsr   s     r   check_schemazValidator.check_schemaa       r   c                     y)z
        Check if the instance is of the given (JSON Schema) type.

        :type type: str
        :rtype: bool
        :raises: `jsonschema.exceptions.UnknownType` if ``type``
            is not a known type.
        Nr   )r   instancetypes      r   is_typezValidator.is_typej   r!   r   c                     y)z
        Check if the instance is valid under the current `schema`.

        :rtype: bool

        >>> schema = {"maxItems" : 2}
        >>> Draft202012Validator(schema).is_valid([2, 3, 4])
        False
        Nr   r   r#   s     r   is_validzValidator.is_validt   r!   r   c                     y)a)  
        Lazily yield each of the validation errors in the given instance.

        :rtype: an `collections.abc.Iterable` of
            `jsonschema.exceptions.ValidationError`\s

        >>> schema = {
        ...     "type" : "array",
        ...     "items" : {"enum" : [1, 2, 3]},
        ...     "maxItems" : 2,
        ... }
        >>> v = Draft202012Validator(schema)
        >>> for error in sorted(v.iter_errors([2, 3, 4]), key=str):
        ...     print(error.message)
        4 is not one of [1, 2, 3]
        [2, 3, 4] is too long
        Nr   r'   s     r   iter_errorszValidator.iter_errors   r!   r   c                     y)a{  
        Check if the instance is valid under the current `schema`.

        :raises: `jsonschema.exceptions.ValidationError` if the
            instance is invalid

        >>> schema = {"maxItems" : 2}
        >>> Draft202012Validator(schema).validate([2, 3, 4])
        Traceback (most recent call last):
            ...
        ValidationError: [2, 3, 4] is too long
        Nr   r'   s     r   validatezValidator.validate   r!   r   c                     y)al  
        Create a new validator like this one, but with given changes.

        Preserves all other attributes, so can be used to e.g. create a
        validator with a different schema but with the same :kw:`$ref`
        resolution behavior.

        >>> validator = Draft202012Validator({})
        >>> validator.evolve(schema={"type": "number"})
        Draft202012Validator(schema={'type': 'number'}, format_checker=None)

        The returned object satisfies the validator protocol, but may not
        be of the same concrete class! In particular this occurs
        when a :kw:`$ref` occurs to a schema with a different
        :kw:`$schema` than this one (i.e. for a different draft).

        >>> validator.evolve(
        ...     schema={"$schema": Draft7Validator.META_SCHEMA["$id"]}
        ... )
        Draft7Validator(schema=..., format_checker=None)
        Nr   )r   kwargss     r   evolvezValidator.evolve   r!   r   )NN)r   r   r   zRefResolver | Noner   zjsonschema.FormatChecker | NonereturnNone)r   dictr0   r1   )r#   r   r$   strr0   bool)r#   r2   r0   r4   )r#   r2   r0   zIterator[ValidationError])r#   r2   r0   r1   )r0   z'Validator')__name__
__module____qualname____doc____annotations__r   classmethodr    r%   r(   r*   r,   r/   r   r   r   r   r   0   s    *  
  32 76 
 (,:>	 % 8	
 
  	&r   r   )r8   
__future__r   typingr   r   r   r   sysversion_infor
   r   typing_extensions
jsonschemajsonschema.exceptionsr   jsonschema.validatorsr   r   r   r   r   <module>rC      s]    # 9 9 
 v22=  1 - D D Dr   