U
    luf                     @   sP  d Z ddlZddlmZ ddlZddlZddlZddlZddl	Z	ddl
mZ ddlmZ ddlmZmZmZ ddlmZmZmZmZmZmZmZmZ ddlZejrddlmZmZ d	ZG d
d dZe Z e!e!e!dddZ"G dd de#Z$G dd de#Z%G dd de%Z&G dd de%Z'G dd de#Z(G dd de(Z)G dd de(Z*G dd de(Z+G dd  d e(Z,G d!d" d"e(Z-G d#d$ d$e(Z.G d%d& d&e(Z/G d'd( d(e(Z0G d)d* d*e(Z1G d+d, d,e(Z2G d-d. d.e2Z3G d/d0 d0e(Z4G d1d2 d2e5Z6G d3d4 d4e#Z7G d5d6 d6e#Z8e!e!d7d8d9Z9d=e8e$ee! ee! e*d:d;d<Z:dS )>a  A simple template system that compiles templates to Python code.

Basic usage looks like::

    t = template.Template("<html>{{ myvalue }}</html>")
    print(t.generate(myvalue="XXX"))

`Loader` is a class that loads templates from a root directory and caches
the compiled templates::

    loader = template.Loader("/home/btaylor")
    print(loader.load("test.html").generate(myvalue="XXX"))

We compile all templates to raw Python. Error-reporting is currently... uh,
interesting. Syntax for the templates::

    ### base.html
    <html>
      <head>
        <title>{% block title %}Default title{% end %}</title>
      </head>
      <body>
        <ul>
          {% for student in students %}
            {% block student %}
              <li>{{ escape(student.name) }}</li>
            {% end %}
          {% end %}
        </ul>
      </body>
    </html>

    ### bold.html
    {% extends "base.html" %}

    {% block title %}A bolder title{% end %}

    {% block student %}
      <li><span style="bold">{{ escape(student.name) }}</span></li>
    {% end %}

Unlike most other template systems, we do not put any restrictions on the
expressions you can include in your statements. ``if`` and ``for`` blocks get
translated exactly into Python, so you can do complex expressions like::

   {% for student in [p for p in people if p.student and p.age > 23] %}
     <li>{{ escape(student.name) }}</li>
   {% end %}

Translating directly to Python means you can apply functions to expressions
easily, like the ``escape()`` function in the examples above. You can pass
functions in to your template just like any other variable
(In a `.RequestHandler`, override `.RequestHandler.get_template_namespace`)::

   ### Python code
   def add(x, y):
      return x + y
   template.execute(add=add)

   ### The template
   {{ add(1, 2) }}

We provide the functions `escape() <.xhtml_escape>`, `.url_escape()`,
`.json_encode()`, and `.squeeze()` to all templates by default.

Typical applications do not create `Template` or `Loader` instances by
hand, but instead use the `~.RequestHandler.render` and
`~.RequestHandler.render_string` methods of
`tornado.web.RequestHandler`, which load templates automatically based
on the ``template_path`` `.Application` setting.

Variable names beginning with ``_tt_`` are reserved by the template
system and should not be used by application code.

Syntax Reference
----------------

Template expressions are surrounded by double curly braces: ``{{ ... }}``.
The contents may be any python expression, which will be escaped according
to the current autoescape setting and inserted into the output.  Other
template directives use ``{% %}``.

To comment out a section so that it is omitted from the output, surround it
with ``{# ... #}``.


To include a literal ``{{``, ``{%``, or ``{#`` in the output, escape them as
``{{!``, ``{%!``, and ``{#!``, respectively.


``{% apply *function* %}...{% end %}``
    Applies a function to the output of all template code between ``apply``
    and ``end``::

        {% apply linkify %}{{name}} said: {{message}}{% end %}

    Note that as an implementation detail apply blocks are implemented
    as nested functions and thus may interact strangely with variables
    set via ``{% set %}``, or the use of ``{% break %}`` or ``{% continue %}``
    within loops.

``{% autoescape *function* %}``
    Sets the autoescape mode for the current file.  This does not affect
    other files, even those referenced by ``{% include %}``.  Note that
    autoescaping can also be configured globally, at the `.Application`
    or `Loader`.::

        {% autoescape xhtml_escape %}
        {% autoescape None %}

``{% block *name* %}...{% end %}``
    Indicates a named, replaceable block for use with ``{% extends %}``.
    Blocks in the parent template will be replaced with the contents of
    the same-named block in a child template.::

        <!-- base.html -->
        <title>{% block title %}Default title{% end %}</title>

        <!-- mypage.html -->
        {% extends "base.html" %}
        {% block title %}My page title{% end %}

``{% comment ... %}``
    A comment which will be removed from the template output.  Note that
    there is no ``{% end %}`` tag; the comment goes from the word ``comment``
    to the closing ``%}`` tag.

``{% extends *filename* %}``
    Inherit from another template.  Templates that use ``extends`` should
    contain one or more ``block`` tags to replace content from the parent
    template.  Anything in the child template not contained in a ``block``
    tag will be ignored.  For an example, see the ``{% block %}`` tag.

``{% for *var* in *expr* %}...{% end %}``
    Same as the python ``for`` statement.  ``{% break %}`` and
    ``{% continue %}`` may be used inside the loop.

``{% from *x* import *y* %}``
    Same as the python ``import`` statement.

``{% if *condition* %}...{% elif *condition* %}...{% else %}...{% end %}``
    Conditional statement - outputs the first section whose condition is
    true.  (The ``elif`` and ``else`` sections are optional)

``{% import *module* %}``
    Same as the python ``import`` statement.

``{% include *filename* %}``
    Includes another template file.  The included file can see all the local
    variables as if it were copied directly to the point of the ``include``
    directive (the ``{% autoescape %}`` directive is an exception).
    Alternately, ``{% module Template(filename, **kwargs) %}`` may be used
    to include another template with an isolated namespace.

``{% module *expr* %}``
    Renders a `~tornado.web.UIModule`.  The output of the ``UIModule`` is
    not escaped::

        {% module Template("foo.html", arg=42) %}

    ``UIModules`` are a feature of the `tornado.web.RequestHandler`
    class (and specifically its ``render`` method) and will not work
    when the template system is used on its own in other contexts.

``{% raw *expr* %}``
    Outputs the result of the given expression without autoescaping.

``{% set *x* = *y* %}``
    Sets a local variable.

``{% try %}...{% except %}...{% else %}...{% finally %}...{% end %}``
    Same as the python ``try`` statement.

``{% while *condition* %}... {% end %}``
    Same as the python ``while`` statement.  ``{% break %}`` and
    ``{% continue %}`` may be used inside the loop.

``{% whitespace *mode* %}``
    Sets the whitespace mode for the remainder of the current file
    (or until the next ``{% whitespace %}`` directive). See
    `filter_whitespace` for available options. New in Tornado 4.3.
    N)StringIO)escape)app_log)
ObjectDictexec_inunicode_type)AnyUnionCallableListDictIterableOptionalTextIO)TupleContextManagerxhtml_escapec                   @   s   e Zd ZdS )_UnsetMarkerN)__name__
__module____qualname__ r   r   4/tmp/pip-unpacked-wheel-bmg6zs32/tornado/template.pyr      s   r   )modetextreturnc                 C   sZ   | dkr|S | dkr4t dd|}t dd|}|S | dkrJt dd|S td	|  d
S )a  Transform whitespace in ``text`` according to ``mode``.

    Available modes are:

    * ``all``: Return all whitespace unmodified.
    * ``single``: Collapse consecutive whitespace with a single whitespace
      character, preserving newlines.
    * ``oneline``: Collapse all runs of whitespace into a single space
      character, removing all newlines in the process.

    .. versionadded:: 4.3
    allsinglez([\t ]+) z
(\s*\n\s*)
Zonelinez(\s+)zinvalid whitespace mode %sN)resub	Exception)r   r   r   r   r   filter_whitespace   s    r#   c                	   @   s   e Zd ZdZddeedfeeef eed ee	e
f eeee
f  ee ddddZeedd	d
Zed edddZed ed dddZdS )TemplatezA compiled template.

    We compile into Python from the given template_string. You can generate
    the template from variables with generate().
    z<string>N
BaseLoader)template_stringnameloadercompress_whitespace
autoescape
whitespacer   c           	      C   sR  t || _|tk	r0|dk	r$td|r,dnd}|dkrh|rJ|jrJ|j}n|ds^|drdd}nd}|dk	sttt|d t	|t
s|| _n|r|j| _nt| _|r|jni | _t|t ||}t| t|| | _| || _|| _z,tt | jd| jd	d
 ddd| _W n6 tk
rL   t| j }td| j|  Y nX dS )a  Construct a Template.

        :arg str template_string: the contents of the template file.
        :arg str name: the filename from which the template was loaded
            (used for error message).
        :arg tornado.template.BaseLoader loader: the `~tornado.template.BaseLoader` responsible
            for this template, used to resolve ``{% include %}`` and ``{% extend %}`` directives.
        :arg bool compress_whitespace: Deprecated since Tornado 4.3.
            Equivalent to ``whitespace="single"`` if true and
            ``whitespace="all"`` if false.
        :arg str autoescape: The name of a function in the template
            namespace, or ``None`` to disable escaping by default.
        :arg str whitespace: A string specifying treatment of whitespace;
            see `filter_whitespace` for options.

        .. versionchanged:: 4.3
           Added ``whitespace`` parameter; deprecated ``compress_whitespace``.
        Nz2cannot set both whitespace and compress_whitespacer   r   z.htmlz.js z%s.generated.py._execT)dont_inheritz%s code:
%s)r   Z
native_strr'   _UNSETr"   r+   endswithAssertionErrorr#   
isinstancer   r*   _DEFAULT_AUTOESCAPE	namespace_TemplateReader_File_parsefile_generate_pythoncoder(   compileZ
to_unicodereplacecompiled_format_coderstripr   error)	selfr&   r'   r(   r)   r*   r+   readerZformatted_coder   r   r   __init__  sD    




zTemplate.__init__)kwargsr   c                    s   t jt jt jt jt jt jtt jtt	f j
ddt fdddd}| j || t j| ttg t	f |d }t  | S )z0Generate this template with the given arguments.r-   r.   c                    s    j S N)r<   r'   rC   r   r   <lambda>`      z#Template.generate.<locals>.<lambda>)
get_source)r   r   
url_escapejson_encodesqueezelinkifydatetimeZ_tt_utf8Z_tt_string_typesr   
__loader__Z_tt_execute)r   r   rM   rN   rO   rP   rQ   utf8r   bytesr'   r>   r   updater6   r   r?   typingcastr
   	linecache
clearcache)rC   rF   r6   executer   rI   r   generateQ  s$    
zTemplate.generate)r(   r   c                 C   sp   t  }zZi }| |}|  |D ]}||| q"t||||d j}|d | | W S |  X d S Nr   )	r   close_get_ancestorsreversefind_named_blocks_CodeWritertemplater[   getvalue)rC   r(   buffernamed_blocks	ancestorsZancestorwriterr   r   r   r;   l  s    
zTemplate._generate_pythonr8   c                 C   sR   | j g}| j jjD ]:}t|tr|s,td||j| j}||	| q|S )Nz1{% extends %} block found, but no template loader)
r:   bodychunksr4   _ExtendsBlock
ParseErrorloadr'   extendr^   )rC   r(   rf   chunkrb   r   r   r   r^   {  s    
zTemplate._get_ancestors)r   r   r   __doc__r1   r	   strrT   r   boolr   rE   r   r[   r;   r   r^   r   r   r   r   r$      s$   

Kr$   c                   @   s   e Zd ZdZeddfeeeeef  ee ddddZ	ddddZ
deee ed	d
dZdeee ed	ddZeedddZdS )r%   zBase class for template loaders.

    You must use a template loader to use template constructs like
    ``{% extends %}`` and ``{% include %}``. The loader caches all
    templates after they are loaded the first time.
    N)r*   r6   r+   r   c                 C   s*   || _ |pi | _|| _i | _t | _dS )a  Construct a template loader.

        :arg str autoescape: The name of a function in the template
            namespace, such as "xhtml_escape", or ``None`` to disable
            autoescaping by default.
        :arg dict namespace: A dictionary to be added to the default template
            namespace, or ``None``.
        :arg str whitespace: A string specifying default behavior for
            whitespace in templates; see `filter_whitespace` for options.
            Default is "single" for files ending in ".html" and ".js" and
            "all" for other files.

        .. versionchanged:: 4.3
           Added ``whitespace`` parameter.
        N)r*   r6   r+   	templates	threadingRLocklock)rC   r*   r6   r+   r   r   r   rE     s
    
zBaseLoader.__init__r   c              	   C   s   | j  i | _W 5 Q R X dS )z'Resets the cache of compiled templates.N)ru   rr   rI   r   r   r   reset  s    zBaseLoader.resetr'   parent_pathr   c                 C   s
   t  dS )z@Converts a possibly-relative path to absolute (used internally).NNotImplementedErrorrC   r'   ry   r   r   r   resolve_path  s    zBaseLoader.resolve_pathc              
   C   sP   | j ||d}| j2 || jkr0| || j|< | j| W  5 Q R  S Q R X dS )zLoads a template.)ry   N)r}   ru   rr   _create_templater|   r   r   r   rl     s
    
zBaseLoader.loadr'   r   c                 C   s
   t  d S rG   rz   rC   r'   r   r   r   r~     s    zBaseLoader._create_template)N)N)r   r   r   ro   r5   rp   r   r   r   rE   rw   r}   r$   rl   r~   r   r   r   r   r%     s   	 r%   c                       sR   e Zd ZdZeedd fddZdeee edddZee	d	d
dZ
  ZS )Loaderz:A template loader that loads from a single root directory.N)root_directoryrF   r   c                    s    t  jf | tj|| _d S rG   )superrE   ospathabspathroot)rC   r   rF   	__class__r   r   rE     s    zLoader.__init__rx   c                 C   s   |r~| ds~| ds~| ds~tj| j|}tjtj|}tjtj||}| | jr~|t| jd d  }|S )N</   )
startswithr   r   joinr   dirnamer   len)rC   r'   ry   current_pathfile_dirrelative_pathr   r   r   r}     s    zLoader.resolve_pathr   c              
   C   sH   t j| j|}t|d$}t| || d}|W  5 Q R  S Q R X d S )Nrbr'   r(   )r   r   r   r   openr$   read)rC   r'   r   frb   r   r   r   r~     s    zLoader._create_template)N)r   r   r   ro   rp   r   rE   r   r}   r$   r~   __classcell__r   r   r   r   r     s   r   c                       sZ   e Zd ZdZeeef edd fddZdeee edddZ	ee
d	d
dZ  ZS )
DictLoaderz/A template loader that loads from a dictionary.N)dictrF   r   c                    s   t  jf | || _d S rG   )r   rE   r   )rC   r   rF   r   r   r   rE     s    zDictLoader.__init__rx   c                 C   sB   |r>| ds>| ds>| ds>t|}tt||}|S )Nr   r   )r   	posixpathr   normpathr   )rC   r'   ry   r   r   r   r   r}     s    
zDictLoader.resolve_pathr   c                 C   s   t | j| || dS )Nr   )r$   r   r   r   r   r   r~     s    zDictLoader._create_template)N)r   r   r   ro   r   rp   r   rE   r   r}   r$   r~   r   r   r   r   r   r     s   r   c                   @   sL   e Zd Zed  dddZdddddZee ee	d	f dd
ddZ
dS )_Noderv   c                 C   s   dS )Nr   r   rI   r   r   r   
each_child  s    z_Node.each_childra   Nrg   r   c                 C   s
   t  d S rG   rz   rC   rg   r   r   r   r[     s    z_Node.generate_NamedBlockr(   re   r   c                 C   s   |   D ]}||| qd S rG   )r   r`   )rC   r(   re   childr   r   r   r`     s    z_Node.find_named_blocks)r   r   r   r   r   r[   r   r%   r   rp   r`   r   r   r   r   r     s    
r   c                   @   s@   e Zd ZedddddZddddd	Zed
 dddZdS )r8   
_ChunkListN)rb   rh   r   c                 C   s   || _ || _d| _d S r\   )rb   rh   line)rC   rb   rh   r   r   r   rE     s    z_File.__init__ra   r   c              	   C   s\   | d| j | < | d| j | d| j | j| | d| j W 5 Q R X d S )Nzdef _tt_execute():_tt_buffer = []_tt_append = _tt_buffer.append$return _tt_utf8('').join(_tt_buffer))
write_liner   indentrh   r[   r   r   r   r   r[     s    
z_File.generater   rv   c                 C   s   | j fS rG   rh   rI   r   r   r   r     s    z_File.each_child)r   r   r   r$   rE   r[   r   r   r   r   r   r   r8     s   r8   c                   @   sB   e Zd Zee ddddZdddddZed	 d
ddZdS )r   N)ri   r   c                 C   s
   || _ d S rG   ri   )rC   ri   r   r   r   rE     s    z_ChunkList.__init__ra   r   c                 C   s   | j D ]}|| qd S rG   )ri   r[   )rC   rg   rn   r   r   r   r[     s    
z_ChunkList.generater   rv   c                 C   s   | j S rG   r   rI   r   r   r   r     s    z_ChunkList.each_child)	r   r   r   r   r   rE   r[   r   r   r   r   r   r   r     s   r   c                   @   sb   e Zd ZeeeeddddZed dddZ	d	dd
ddZ
ee eed f ddddZdS )r   N)r'   rh   rb   r   r   c                 C   s   || _ || _|| _|| _d S rG   )r'   rh   rb   r   )rC   r'   rh   rb   r   r   r   r   rE   $  s    z_NamedBlock.__init__r   rv   c                 C   s   | j fS rG   r   rI   r   r   r   r   *  s    z_NamedBlock.each_childra   r   c              	   C   s8   |j | j }||j| j |j| W 5 Q R X d S rG   )re   r'   includerb   r   rh   r[   )rC   rg   blockr   r   r   r[   -  s    z_NamedBlock.generater   c                 C   s   | || j < t| || d S rG   )r'   r   r`   )rC   r(   re   r   r   r   r`   2  s    
z_NamedBlock.find_named_blocks)r   r   r   rp   r   r$   intrE   r   r   r[   r   r%   r   r`   r   r   r   r   r   #  s    
r   c                   @   s   e Zd ZeddddZdS )rj   Nr   c                 C   s
   || _ d S rG   rH   r   r   r   r   rE   :  s    z_ExtendsBlock.__init__)r   r   r   rp   rE   r   r   r   r   rj   9  s   rj   c                   @   sN   e Zd ZededdddZee eee	f ddddZ
d	dd
ddZdS )_IncludeBlockr7   N)r'   rD   r   r   c                 C   s   || _ |j | _|| _d S rG   )r'   template_namer   )rC   r'   rD   r   r   r   r   rE   ?  s    z_IncludeBlock.__init__r   c                 C   s.   |d k	st || j| j}|j|| d S rG   )r3   rl   r'   r   r:   r`   )rC   r(   re   includedr   r   r   r`   D  s    z_IncludeBlock.find_named_blocksra   r   c              	   C   sL   |j d k	st|j | j| j}||| j |jj	| W 5 Q R X d S rG   )
r(   r3   rl   r'   r   r   r   r:   rh   r[   )rC   rg   r   r   r   r   r[   K  s    z_IncludeBlock.generate)r   r   r   rp   r   rE   r   r%   r   r   r`   r[   r   r   r   r   r   >  s    
r   c                   @   sB   e Zd ZeeeddddZed dddZd	dd
ddZ	dS )_ApplyBlockN)methodr   rh   r   c                 C   s   || _ || _|| _d S rG   )r   r   rh   )rC   r   r   rh   r   r   r   rE   S  s    z_ApplyBlock.__init__r   rv   c                 C   s   | j fS rG   r   rI   r   r   r   r   X  s    z_ApplyBlock.each_childra   r   c              	   C   s   d|j  }| j d7  _ |d| | j | < |d| j |d| j | j| |d| j W 5 Q R X |d| j|f | j d S )Nz_tt_apply%dr   z	def %s():r   r   r   z_tt_append(_tt_utf8(%s(%s()))))apply_counterr   r   r   rh   r[   r   )rC   rg   method_namer   r   r   r[   [  s    

 z_ApplyBlock.generate
r   r   r   rp   r   r   rE   r   r   r[   r   r   r   r   r   R  s   r   c                   @   sB   e Zd ZeeeddddZee dddZddd	d
dZ	dS )_ControlBlockN)	statementr   rh   r   c                 C   s   || _ || _|| _d S rG   )r   r   rh   )rC   r   r   rh   r   r   r   rE   j  s    z_ControlBlock.__init__rv   c                 C   s   | j fS rG   r   rI   r   r   r   r   o  s    z_ControlBlock.each_childra   r   c              	   C   sF   | d| j | j |   | j| | d| j W 5 Q R X d S )N%s:pass)r   r   r   r   rh   r[   r   r   r   r   r[   r  s    
z_ControlBlock.generater   r   r   r   r   r   i  s   r   c                   @   s.   e Zd ZeeddddZdddddZdS )	_IntermediateControlBlockNr   r   r   c                 C   s   || _ || _d S rG   r   r   rC   r   r   r   r   r   rE   {  s    z"_IntermediateControlBlock.__init__ra   r   c                 C   s0   | d| j | d| j | j| d  d S )Nr   r   r   )r   r   r   indent_sizer   r   r   r   r[     s    z"_IntermediateControlBlock.generater   r   r   rp   r   rE   r[   r   r   r   r   r   z  s   r   c                   @   s.   e Zd ZeeddddZdddddZdS )	
_StatementNr   c                 C   s   || _ || _d S rG   r   r   r   r   r   rE     s    z_Statement.__init__ra   r   c                 C   s   | | j| j d S rG   )r   r   r   r   r   r   r   r[     s    z_Statement.generater   r   r   r   r   r     s   r   c                   @   s2   e Zd Zd
eeeddddZddddd	ZdS )_ExpressionFN)
expressionr   rawr   c                 C   s   || _ || _|| _d S rG   )r   r   r   )rC   r   r   r   r   r   r   rE     s    z_Expression.__init__ra   r   c                 C   sj   | d| j | j | d| j | d| j | jsX|jjd k	rX| d|jj | j | d| j d S )Nz_tt_tmp = %szEif isinstance(_tt_tmp, _tt_string_types): _tt_tmp = _tt_utf8(_tt_tmp)z&else: _tt_tmp = _tt_utf8(str(_tt_tmp))z_tt_tmp = _tt_utf8(%s(_tt_tmp))z_tt_append(_tt_tmp))r   r   r   r   current_templater*   r   r   r   r   r[     s    
z_Expression.generate)F)r   r   r   rp   r   rq   rE   r[   r   r   r   r   r     s   r   c                       s&   e Zd Zeedd fddZ  ZS )_ModuleN)r   r   r   c                    s   t  jd| |dd d S )Nz_tt_modules.Tr   )r   rE   )rC   r   r   r   r   r   rE     s    z_Module.__init__)r   r   r   rp   r   rE   r   r   r   r   r   r     s   r   c                   @   s0   e Zd ZeeeddddZdddddZdS )	_TextN)valuer   r+   r   c                 C   s   || _ || _|| _d S rG   )r   r   r+   )rC   r   r   r+   r   r   r   rE     s    z_Text.__init__ra   r   c                 C   s:   | j }d|krt| j|}|r6|dt| | j d S )Nz<pre>z_tt_append(%r))r   r#   r+   r   r   rS   r   )rC   rg   r   r   r   r   r[     s
    z_Text.generater   r   r   r   r   r     s   r   c                   @   s8   e Zd ZdZd
eee eddddZeddd	ZdS )rk   zRaised for template syntax errors.

    ``ParseError`` instances have ``filename`` and ``lineno`` attributes
    indicating the position of the error.

    .. versionchanged:: 4.3
       Added ``filename`` and ``lineno`` attributes.
    Nr   )messagefilenamelinenor   c                 C   s   || _ || _|| _d S rG   r   r   r   )rC   r   r   r   r   r   r   rE     s    zParseError.__init__rv   c                 C   s   d| j | j| jf S )Nz%s at %s:%dr   rI   r   r   r   __str__  s    zParseError.__str__)Nr   )	r   r   r   ro   rp   r   r   rE   r   r   r   r   r   rk     s   
     	rk   c                   @   sv   e Zd Zeeeef ee e	ddddZ
edddZddd	d
Ze	eddddZdeeee ddddZdS )ra   N)r:   re   r(   r   r   c                 C   s.   || _ || _|| _|| _d| _g | _d| _d S r\   )r:   re   r(   r   r   include_stack_indent)rC   r:   re   r(   r   r   r   r   rE     s    z_CodeWriter.__init__rv   c                 C   s   | j S rG   r   rI   r   r   r   r     s    z_CodeWriter.indent_sizer   c                    s   G  fdddt }| S )Nc                       s2   e Zd Zdd fddZedd fddZdS )	z$_CodeWriter.indent.<locals>.Indenterra   rv   c                    s     j d7  _  S )Nr   r   r.   rI   r   r   	__enter__  s    z._CodeWriter.indent.<locals>.Indenter.__enter__Nargsr   c                    s     j dkst  j d8  _ d S )Nr   r   )r   r3   r.   r   rI   r   r   __exit__  s    z-_CodeWriter.indent.<locals>.Indenter.__exit__r   r   r   r   r   r   r   rI   r   r   Indenter  s   r   )object)rC   r   r   rI   r   r     s    	z_CodeWriter.indent)rb   r   r   c                    s2    j  j|f | _G  fdddt}| S )Nc                       s2   e Zd Zdd fddZedd fddZdS )	z,_CodeWriter.include.<locals>.IncludeTemplatera   rv   c                    s    S rG   r   r   rI   r   r   r     s    z6_CodeWriter.include.<locals>.IncludeTemplate.__enter__Nr   c                    s    j  d  _d S r\   )r   popr   r   rI   r   r   r     s    z5_CodeWriter.include.<locals>.IncludeTemplate.__exit__r   r   rI   r   r   IncludeTemplate  s   r   )r   appendr   r   )rC   rb   r   r   r   rI   r   r     s    z_CodeWriter.include)r   line_numberr   r   c                 C   sh   |d kr| j }d| jj|f }| jrJdd | jD }|ddt| 7 }td| | | | jd d S )Nz	  # %s:%dc                 S   s   g | ]\}}d |j |f qS )z%s:%drH   ).0tmplr   r   r   r   
<listcomp>  s    z*_CodeWriter.write_line.<locals>.<listcomp>z	 (via %s)z, z    )r:   )r   r   r'   r   r   reversedprintr:   )rC   r   r   r   Zline_commentrf   r   r   r   r     s    z_CodeWriter.write_line)N)r   r   r   r   r   rp   r   r   r%   r$   rE   r   r   r   r   r   r   r   r   r   ra     s    
   ra   c                   @   s   e Zd ZeeeddddZdeeee edddZdee ed	d
dZedddZ	edddZ
eeef edddZedddZeddddZdS )r7   N)r'   r   r+   r   c                 C   s"   || _ || _|| _d| _d| _d S )Nr   r   )r'   r   r+   r   pos)rC   r'   r   r+   r   r   r   rE     s
    z_TemplateReader.__init__r   )needlestartendr   c                 C   sn   |dkst || j}||7 }|d kr6| j||}n$||7 }||ksJt | j|||}|dkrj||8 }|S )Nr   )r3   r   r   find)rC   r   r   r   r   indexr   r   r   r     s    z_TemplateReader.find)countr   c                 C   sX   |d krt | j| j }| j| }|  j| jd| j|7  _| j| j| }|| _|S )Nr   )r   r   r   r   r   )rC   r   Znewpossr   r   r   consume#  s    
z_TemplateReader.consumerv   c                 C   s   t | j| j S rG   )r   r   r   rI   r   r   r   	remaining,  s    z_TemplateReader.remainingc                 C   s   |   S rG   )r   rI   r   r   r   __len__/  s    z_TemplateReader.__len__)keyr   c                 C   s   t |tr`t| }||\}}}|d kr2| j}n
|| j7 }|d k	rN|| j7 }| jt||| S |dk rr| j| S | j| j|  S d S r\   )r4   slicer   indicesr   r   )rC   r   sizer   stopstepr   r   r   __getitem__2  s    



z_TemplateReader.__getitem__c                 C   s   | j | jd  S rG   )r   r   rI   r   r   r   r   B  s    z_TemplateReader.__str__)msgr   c                 C   s   t || j| jd S rG   )rk   r'   r   )rC   r   r   r   r   raise_parse_errorE  s    z!_TemplateReader.raise_parse_error)r   N)N)r   r   r   rp   rE   r   r   r   r   r   r   r	   r   r   r   r   r   r   r   r   r7     s   	r7   )r<   r   c                    s<   |   }dttt|d   d fddt|D S )Nz%%%dd  %%s
r   r,   c                    s    g | ]\}} |d  |f qS )r   r   )r   ir   formatr   r   r   L  s     z _format_code.<locals>.<listcomp>)
splitlinesr   reprr   	enumerate)r<   linesr   r   r   r@   I  s    r@   )rD   rb   in_blockin_loopr   c                 C   sX  t g }d}| d|}|dks0|d |  krb|rB| d|  |jt|  | j| j	 |S | |d  dkr||d7 }q|d |  k r| |d  dkr| |d  dkr|d7 }qqq|dkr| |}|jt|| j| j	 | d}| j}|  r.| d dkr.| d |jt||| j	 q|d	krp| d
}	|	dkrV| d | |	
 }
| d q|dkr| d}	|	dkr| d | |	
 }
| d |
s| d |jt|
| q|dkst|| d}	|	dkr| d | |	
 }
| d |
s,| d |
d\}}}|
 }tddddgtdgtdgtdgd}||}|d k	r|s| d||f  ||kr| d||f  |jt|
| qq|dkr|s| d |S |dkrJ|dkrq|d kr8|
d!
d"}|s,| d# t|}n|d$kr^|sR| d% t|
|}n|d&kr|
d!
d"}|s| d' t|| |}n|d(kr|s| d) t||}n~|d*kr|
 }|d+krd }||_qnT|d,kr|
 }t|d- || _	qn.|d.kr&t||d/d0}n|d1kr:t||}|j| qq|d2kr|d3krnt| |||}n(|d4krt| ||d }nt| |||}|d4kr|s| d5 t|||}n6|d6kr|s| d7 t||||}nt|
||}|j| qq|d8krD|s.| d|tddgf  |jt|
| qq| d9|  qd S ):Nr   {r   r   z Missing {%% end %%} block for %s)r  %#   !z{#z#}zMissing end comment #}z{{z}}zMissing end expression }}zEmpty expressionz{%z%}zMissing end block %}zEmpty block tag ({% %})r   ifforwhiletry)elseelifexceptfinallyz%s outside %s blockz'%s block cannot be attached to %s blockr   zExtra {% end %} block)
extendsr   setimportfromcommentr*   r+   r   moduler  r  "'zextends missing file path)r  r  zimport missing statementr   zinclude missing file pathr  zset missing statementr*   Noner+   r,   r   Tr   r  )applyr   r  r	  r
  r  )r
  r  r  zapply missing method namer   zblock missing name)breakcontinuezunknown operator: %r)r   r   r   r   ri   r   r   r   r   r+   stripr   r3   	partitionr  getr   rj   r   r   r*   r#   r   r9   r   r   r   )rD   rb   r  r  rh   ZcurlyZconsZstart_bracer   r   contentsoperatorspacesuffixZintermediate_blocksZallowed_parentsr   fnr   Z
block_bodyr   r   r   r9   O  s    


















































r9   )NN);ro   rQ   ior   rX   os.pathr   r   r    rs   Ztornador   Ztornado.logr   Ztornado.utilr   r   r   rV   r   r	   r
   r   r   r   r   r   TYPE_CHECKINGr   r   r5   r   r1   rp   r#   r   r$   r%   r   r   r   r8   r   r   rj   r   r   r   r   r   r   r   r   r"   rk   ra   r7   r@   r9   r   r   r   r   <module>   sd    8( =	:<	  