U
    祡c+                     @   s   d dl Z d dlmZmZmZmZmZ ddlmZ ddl	m
Z
mZ G dd dZG dd	 d	eZG d
d dZedkre Zeej dS )    N)DictListIOMappingOptional   )DEFAULT_STYLES)Style	StyleTypec                   @   s   e Zd ZU dZeeef ed< dee	ee
f  edddZeedd	d
Zedee ee ed dddZedeed dddZdS )Themea'  A container for style information, used by :class:`~rich.console.Console`.

    Args:
        styles (Dict[str, Style], optional): A mapping of style names on to styles. Defaults to None for a theme with no styles.
        inherit (bool, optional): Inherit default styles. Defaults to True.
    stylesNT)r   inheritc                 C   s8   |rt  ni | _|d k	r4| jdd | D  d S )Nc                 S   s*   i | ]"\}}|t |tr|nt|qS  )
isinstancer	   parse.0namestyler   r   ./tmp/pip-unpacked-wheel-qkhzhrww/rich/theme.py
<dictcomp>   s    z"Theme.__init__.<locals>.<dictcomp>)r   copyr   updateitems)selfr   r   r   r   r   __init__   s    zTheme.__init__returnc                 C   s&   dd dd t| j D  }|S )z-Get contents of a config file for this theme.z	[styles]

c                 s   s    | ]\}}| d | V  qdS )z = Nr   r   r   r   r   	<genexpr>!   s    zTheme.config.<locals>.<genexpr>)joinsortedr   r   )r   configr   r   r   r"      s    
zTheme.config)config_filesourcer   r   c                 C   s:   t  }|j||d dd |dD }t||d}|S )aQ  Load a theme from a text mode file.

        Args:
            config_file (IO[str]): An open conf file.
            source (str, optional): The filename of the open file. Defaults to None.
            inherit (bool, optional): Inherit default styles. Defaults to True.

        Returns:
            Theme: A New theme instance.
        )r$   c                 S   s   i | ]\}}|t |qS r   )r	   r   )r   r   valuer   r   r   r   6   s      z#Theme.from_file.<locals>.<dictcomp>r   )r   )configparserConfigParser	read_filer   r   )clsr#   r$   r   r"   r   themer   r   r   	from_file&   s
    zTheme.from_file)pathr   r   c              
   C   s2   t |d}| j|||dW  5 Q R  S Q R X dS )a  Read a theme from a path.

        Args:
            path (str): Path to a config file readable by Python configparser module.
            inherit (bool, optional): Inherit default styles. Defaults to True.

        Returns:
            Theme: A new theme instance.
        rt)r$   r   N)openr+   )r)   r,   r   r#   r   r   r   read:   s    z
Theme.read)NT)NT)T)__name__
__module____qualname____doc__r   strr	   __annotations__r   r   r
   boolr   propertyr"   classmethodr   r+   r/   r   r   r   r   r      s*   
         r   c                   @   s   e Zd ZdZdS )ThemeStackErrorz5Base exception for errors related to the theme stack.N)r0   r1   r2   r3   r   r   r   r   r9   I   s   r9   c                   @   sB   e Zd ZdZeddddZdeedddd	Zdd
ddZdS )
ThemeStackzJA stack of themes.

    Args:
        theme (Theme): A theme instance
    N)r*   r   c                 C   s   |j g| _| jd j| _d S )N)r   _entriesget)r   r*   r   r   r   r   T   s    
zThemeStack.__init__T)r*   r   r   c                 C   s<   |r| j d |jn|j }| j | | j d j| _dS )zPush a theme on the top of the stack.

        Args:
            theme (Theme): A Theme instance.
            inherit (boolean, optional): Inherit styles from current top of stack.
        r;   N)r<   r   r   appendr=   )r   r*   r   r   r   r   r   
push_themeX   s    	zThemeStack.push_themer   c                 C   s2   t | jdkrtd| j  | jd j| _dS )z%Pop (and discard) the top-most theme.r   zUnable to pop base themer;   N)lenr<   r9   popr=   )r   r   r   r   	pop_themef   s    
zThemeStack.pop_theme)T)	r0   r1   r2   r3   r   r   r6   r?   rB   r   r   r   r   r:   M   s   r:   __main__)r&   typingr   r   r   r   r   Zdefault_stylesr   r   r	   r
   r   	Exceptionr9   r:   r0   r*   printr"   r   r   r   r   <module>   s   A!