U
    ARd_,                     @   sx   d Z ddlZddlZddlZddlmZmZmZ ddlm	Z	 ddl
mZ ddlmZ G dd dZeejd	d
dZdS )z6Class to store a key-value pair for the config system.    N)AnyCallableOptional)util)to_snake_case)DeprecationErrorc                   @   s   e Zd ZdZdZdZddddddddedf
eee ee ee	e	ee ee ee e
e	ddd	Zed
ddZeg ef d dddZeed
ddZdeee ddddZe	d
ddZedd ZdS )ConfigOptiona:  Stores a Streamlit configuration option.

    A configuration option, like 'browser.serverPort', which indicates which port
    to use when connecting to the proxy. There are two ways to create a
    ConfigOption:

    Simple ConfigOptions are created as follows:

        ConfigOption('browser.serverPort',
            description = 'Connect to the proxy at this port.',
            default_val = 8501)

    More complex config options resolve their values at runtime as follows:

        @ConfigOption('browser.serverPort')
        def _proxy_port():
            """Connect to the proxy at this port.

            Defaults to 8501.
            """
            return 8501

    NOTE: For complex config options, the function is called each time the
    option.value is evaluated!

    Attributes
    ----------
    key : str
        The fully qualified section.name
    value : any
        The value for this option. If this is a complex config option then
        the callback is called EACH TIME value is evaluated.
    section : str
        The section of this option. Example: 'global'.
    name : str
        See __init__.
    description : str
        See __init__.
    where_defined : str
        Indicates which file set this config option.
        ConfigOption.DEFAULT_DEFINITION means this file.
    is_default: bool
        True if the config value is equal to its default value.
    visibility : {"visible", "hidden"}
        See __init__.
    scriptable : bool
        See __init__.
    deprecated: bool
        See __init__.
    deprecation_text : str or None
        See __init__.
    expiration_date : str or None
        See __init__.
    replaced_by : str or None
        See __init__.
    sensitive : bool
        See __init__.
    env_var: str
        The name of the environment variable that can be used to set the option.
    z	<default>z<streamlit>NZvisibleF)keydescriptiondefault_val
visibility
scriptable
deprecateddeprecation_textexpiration_datereplaced_bytype_	sensitivec                 C   s   || _ d}t|| j }|s.td| j  d|d|d | _| _|| _|| _|| _	|| _
|| _|	| _d| _d| _tj| _|
| _|| _| jrd| _|dkrd| j }| jr|std	|std
|| _t|| _| | dS )a.  Create a ConfigOption with the given name.

        Parameters
        ----------
        key : str
            Should be of the form "section.optionName"
            Examples: server.name, deprecation.v1_0_featureName
        description : str
            Like a comment for the config option.
        default_val : any
            The value for this config option.
        visibility : {"visible", "hidden"}
            Whether this option should be shown to users.
        scriptable : bool
            Whether this config option can be set within a user script.
        deprecated: bool
            Whether this config option is deprecated.
        deprecation_text : str or None
            Required if deprecated == True. Set this to a string explaining
            what to use instead.
        expiration_date : str or None
            Required if deprecated == True. set this to the date at which it
            will no longer be accepted. Format: 'YYYY-MM-DD'.
        replaced_by : str or None
            If this is option has been deprecated in favor or another option,
            set this to the path to the new option. Example:
            'server.runOnSave'. If this is set, the 'deprecated' option
            will automatically be set to True, and deprecation_text will have a
            meaningful default (unless you override it).
        type_ : one of str, int, float or bool
            Useful to cast the config params sent by cmd option parameter.
        sensitive: bool
            Sensitive configuration options cannot be set by CLI parameter.
        z?(?P<section>\_?[a-z][a-zA-Z0-9]*)\.(?P<name>[a-z][a-zA-Z0-9]*)$zKey "z" has invalid format.sectionnameTNzReplaced by %s.z0expiration_date is required for deprecated itemsz1deprecation_text is required for deprecated items)r	   rematchAssertionErrorgroupr   r   r
   r   r   r   r   r   
is_default_get_val_funcr   DEFAULT_DEFINITIONwhere_definedtyper   r   textwrapdedentr   	set_value)selfr	   r
   r   r   r   r   r   r   r   r   r   Z
key_formatr    r#   ;/tmp/pip-unpacked-wheel-b9et7o5g/streamlit/config_option.py__init__a   s6    1
zConfigOption.__init__)returnc                 C   s
   t | S N)r   repr_r"   r#   r#   r$   __repr__   s    zConfigOption.__repr__)get_val_funcr&   c                 C   s    |j std|j | _|| _| S )a  Assign a function to compute the value for this option.

        This method is called when ConfigOption is used as a decorator.

        Parameters
        ----------
        get_val_func : function
            A function which will be called to get the value of this parameter.
            We will use its docString as the description.

        Returns
        -------
        ConfigOption
            Returns self, which makes testing easier. See config_test.py.

        zAComplex config options require doc strings for their description.)__doc__r   r
   r   )r"   r+   r#   r#   r$   __call__   s    zConfigOption.__call__c                 C   s   | j dkrdS |   S )z$Get the value of this config option.N)r   r)   r#   r#   r$   value   s    
zConfigOption.value)r.   r   r&   c                    s    fdd| _ |dkr tj| _n|| _ | jk| _| jr| jtjkr| j| j| j| j	d}| 
 rvttd| n(ddlm} |t}|td|  dS )	zSet the value of this option.

        Parameters
        ----------
        value
            The new value for this parameter.
        where_defined : str
            New value to remember where this parameter was set.

        c                      s    S r'   r#   r#   r.   r#   r$   <lambda>       z(ConfigOption.set_value.<locals>.<lambda>N)r	   fileZexplanationdateu  
                    ════════════════════════════════════════════════
                    %(key)s IS NO LONGER SUPPORTED.

                    %(explanation)s

                    Please update %(file)s.
                    ════════════════════════════════════════════════
                    r   )
get_loggeru"  
                    ════════════════════════════════════════════════
                    %(key)s IS DEPRECATED.
                    %(explanation)s

                    This option will be removed on or after %(date)s.

                    Please update %(file)s.
                    ════════════════════════════════════════════════
                    )r   r   r   r   r   r   r   r	   r   r   
is_expiredr   r   r    Zstreamlit.loggerr4   __name__warning)r"   r.   r   detailsr4   ZLOGGERr#   r/   r$   r!      s8    
zConfigOption.set_valuec                 C   s&   | j s
dS t| j}tj }||kS )z/Returns true if expiration_date is in the past.F)r   _parse_yyyymmdd_strr   datetimenow)r"   r   r;   r#   r#   r$   r5   &  s
    

zConfigOption.is_expiredc                 C   s    | j dd}dt|  S )z^
        Get the name of the environment variable that can be used to set the option.
        ._Z
STREAMLIT_)r	   replacer   upper)r"   r   r#   r#   r$   env_var/  s    zConfigOption.env_var)N)r6   
__module____qualname__r,   r   ZSTREAMLIT_DEFINITIONstrr   r   boolr   r%   r*   r   r-   propertyr.   r!   r5   r@   r#   r#   r#   r$   r      sD   ?bA	r   )date_strr&   c                 C   s*   dd |  ddD \}}}t|||S )Nc                 S   s   g | ]}t |qS r#   )int).0tokenr#   r#   r$   
<listcomp>9  s     z'_parse_yyyymmdd_str.<locals>.<listcomp>-   )splitr:   )rF   yearmonthdayr#   r#   r$   r9   8  s    r9   )r,   r:   r   r   typingr   r   r   Z	streamlitr   Zstreamlit.case_convertersr   Zstreamlit.errorsr   r   rC   r9   r#   r#   r#   r$   <module>   s     