Hacked By AnonymousFox

Current Path : /opt/cloudlinux/venv/lib64/python3.11/site-packages/mako/__pycache__/
Upload File :
Current File : //opt/cloudlinux/venv/lib64/python3.11/site-packages/mako/__pycache__/lookup.cpython-311.pyc

�

�܋f�0���ddlZddlZddlZddlZddlZddlmZddlmZddlm	Z	Gd�d��Z
Gd�de
��ZdS)	�N)�
exceptions)�util)�Templatec�,�eZdZdZd�Zdd�Zd�Zd�ZdS)�TemplateCollectiona;Represent a collection of :class:`.Template` objects,
    identifiable via URI.

    A :class:`.TemplateCollection` is linked to the usage of
    all template tags that address other templates, such
    as ``<%include>``, ``<%namespace>``, and ``<%inherit>``.
    The ``file`` attribute of each of those tags refers
    to a string URI that is passed to that :class:`.Template`
    object's :class:`.TemplateCollection` for resolution.

    :class:`.TemplateCollection` is an abstract class,
    with the usual default implementation being :class:`.TemplateLookup`.

    c�^�	|�|��dS#tj$rYdSwxYw)z�Return ``True`` if this :class:`.TemplateLookup` is
        capable of returning a :class:`.Template` object for the
        given ``uri``.

        :param uri: String URI of the template to be resolved.

        TF)�get_templater�TemplateLookupException)�self�uris  �\/builddir/build/BUILD/cloudlinux-venv-1.0.6/venv/lib/python3.11/site-packages/mako/lookup.py�has_templatezTemplateCollection.has_template#sE��	����c�"�"�"��4���1�	�	�	��5�5�	���s��,�,Nc��t���)a�Return a :class:`.Template` object corresponding to the given
        ``uri``.

        The default implementation raises
        :class:`.NotImplementedError`. Implementations should
        raise :class:`.TemplateLookupException` if the given ``uri``
        cannot be resolved.

        :param uri: String URI of the template to be resolved.
        :param relativeto: if present, the given ``uri`` is assumed to
         be relative to this URI.

        )�NotImplementedError)rr�
relativetos   r
r	zTemplateCollection.get_template1s��"�#�#�#�c��|S�z^Convert the given ``filename`` to a URI relative to
        this :class:`.TemplateCollection`.��rr�filenames   r
�filename_to_uriz"TemplateCollection.filename_to_uriAs	���
rc��|S)a�Adjust the given ``uri`` based on the calling ``filename``.

        When this method is called from the runtime, the
        ``filename`` parameter is taken directly to the ``filename``
        attribute of the calling template. Therefore a custom
        :class:`.TemplateCollection` subclass can place any string
        identifier desired in the ``filename`` parameter of the
        :class:`.Template` objects it constructs and have them come back
        here.

        rrs   r
�
adjust_urizTemplateCollection.adjust_uriGs	���
r)N)�__name__�
__module__�__qualname__�__doc__rr	rrrrr
rrs_������
�
����$�$�$�$� �������rrc�~�eZdZdZ																										dd	�Zd
�Zd�Zd�Zd
�Zd�Z	d�Z
d�Zd�ZdS)�TemplateLookupa�	Represent a collection of templates that locates template source files
    from the local filesystem.

    The primary argument is the ``directories`` argument, the list of
    directories to search:

    .. sourcecode:: python

        lookup = TemplateLookup(["/path/to/templates"])
        some_template = lookup.get_template("/index.html")

    The :class:`.TemplateLookup` can also be given :class:`.Template` objects
    programatically using :meth:`.put_string` or :meth:`.put_template`:

    .. sourcecode:: python

        lookup = TemplateLookup()
        lookup.put_string("base.html", '''
            <html><body>${self.next()}</body></html>
        ''')
        lookup.put_string("hello.html", '''
            <%include file='base.html'/>

            Hello, world !
        ''')


    :param directories: A list of directory names which will be
     searched for a particular template URI. The URI is appended
     to each directory and the filesystem checked.

    :param collection_size: Approximate size of the collection used
     to store templates. If left at its default of ``-1``, the size
     is unbounded, and a plain Python dictionary is used to
     relate URI strings to :class:`.Template` instances.
     Otherwise, a least-recently-used cache object is used which
     will maintain the size of the collection approximately to
     the number given.

    :param filesystem_checks: When at its default value of ``True``,
     each call to :meth:`.TemplateLookup.get_template()` will
     compare the filesystem last modified time to the time in
     which an existing :class:`.Template` object was created.
     This allows the :class:`.TemplateLookup` to regenerate a
     new :class:`.Template` whenever the original source has
     been updated. Set this to ``False`` for a very minor
     performance increase.

    :param modulename_callable: A callable which, when present,
     is passed the path of the source file as well as the
     requested URI, and then returns the full path of the
     generated Python module file. This is used to inject
     alternate schemes for Python module location. If left at
     its default of ``None``, the built in system of generation
     based on ``module_directory`` plus ``uri`` is used.

    All other keyword parameters available for
    :class:`.Template` are mirrored here. When new
    :class:`.Template` objects are created, the keywords
    established with this :class:`.TemplateLookup` are passed on
    to each new :class:`.Template`.

    NT���F�strict�beakerrc�Z�d�tj|d��D��|_||_||_||_||_|	�i}	|
r|	�d|
��|r|	�d|��|r|	�d|��id|�d|�d|�d	|�d
|
�d|�d|�d
|�d|�d|	�d|�d|�d|�d|�d|�d|�d|�||d��|_|dkri|_	i|_
n2tj|��|_	tj|��|_
tj
��|_dS)Nc�6�g|]}tj|����Sr)�	posixpath�normpath)�.0�ds  r
�
<listcomp>z+TemplateLookup.__init__.<locals>.<listcomp>�s0��
�
�
�&'�I��q�!�!�
�
�
rr�dir�url�type�format_exceptions�
error_handler�include_error_handler�output_encoding�
cache_impl�encoding_errors�input_encoding�module_directory�
module_writer�
cache_args�
cache_enabled�default_filters�buffer_filters�strict_undefined�imports�future_imports�enable_loop)�preprocessor�	lexer_clsr!)r�to_list�directoriesr5�modulename_callable�filesystem_checks�collection_size�
setdefault�
template_args�_collection�
_uri_cache�LRUCache�	threading�Lock�_mutex)rrBr5rDrEr.r/r1r3r7r2r8�
cache_type�	cache_dir�	cache_urlrCr6r9r:r;r<r=r>r4r?r@r0s                           r
�__init__zTemplateLookup.__init__�s���<
�
�+/�<��R�+H�+H�
�
�
���!1���#6�� �!2���.������J��	4��!�!�%��3�3�3��	4��!�!�%��3�3�3��	6��!�!�&�*�5�5�5�
��!2�
��]�
�
$�%:�
�
��	
�

�*�
�
��

�
�n�
�
� 0�
�
�]�
�
�*�
�
�]�
�
��
�
�n�
�
� 0�
�
�w�
� 
�n�!
�"
�;�#
�$)�"�'
�
�
���,�b� � �!�D�� �D�O�O�#�}�_�=�=�D��"�m�O�<�<�D�O��n�&�&����rc�&�	|jr!|�||j|��S|j|S#t$r�}t	jdd|��}|jD]�}|�tj	j
tj
��}tjtj
||����}tj	�|��r|�||��ccYd}~S��t!jd|z��|�d}~wwxYw)z�Return a :class:`.Template` object corresponding to the given
        ``uri``.

        .. note:: The ``relativeto`` argument is not supported here at
           the moment.

        z^\/+�N� Can't locate template for uri %r)rD�_checkrH�KeyError�re�subrB�replace�os�path�sepr&r'�join�isfile�_loadr�TopLevelLookupException)rr�e�u�dir_�srcfiles      r
r	zTemplateLookup.get_template�s��	��%�
-��{�{�3��(8��(=�>�>�>��'��,�,���	�	�	���w��C�(�(�A��(�

�

���|�|�B�G�K���?�?��#�,�Y�^�D�!�-D�-D�E�E���7�>�>�'�*�*�4��:�:�g�s�3�3�3�3�3�3�3�3�3�3�4�!�8�6��<���������	���s&�'7�7�
D�B+D�,D�2D�Dc���||f}||jvr
|j|S|ddkr
|x}|j|<nC|�2tjtj|��|��x}|j|<nd|zx}|j|<|S)z9Adjust the given ``uri`` based on the given relative URI.r�/)rIr&r]�dirname)rrr�key�vs     r
rzTemplateLookup.adjust_uris����J����$�/�!�!��?�3�'�'��q�6�S�=�=�'*�*�A����$�$�
�
#�'0�~��!�*�-�-�s�(�(�
�A����$�$�(+�S�y�0�A����$��rc��	|j|S#t$r$|�|��}||j|<|cYSwxYwr)rIrV�_relativeize)rr�values   r
rzTemplateLookup.filename_to_urisW��	��?�8�,�,���	�	�	��%�%�h�/�/�E�(-�D�O�H�%��L�L�L�	���s��+=�=c��tj|��}|jD]6}|dt|���|kr|t|��d�cS�7dS)zhReturn the portion of a filename that is 'relative'
        to the directories in this lookup.

        rN)r&r'rB�len)rrrcs   r
rkzTemplateLookup._relativeizesg���%�h�/�/���$�	�	�D���C��I�I�
�&�$�.�.���D�	�	���,�,�,�,�/��4rc��|j���		|j||j���S#t$rYnwxYw	|j�|�||��}nd}t
d|tj|��||d�|j	��x|j|<}||j���S#|j�
|d���xYw#|j���wxYw)N)rr�lookup�module_filenamer)rM�acquirerH�releaserVrCrr&r'rG�pop)rrrrq�templates     r
r_zTemplateLookup._load+s>���������	"�
��'��,�.
�K���!�!�!�!��-�
�
�
���
����
��+�7�&*�&>�&>�x��&M�&M�O�O�&*�O�3;�4��&�/��9�9��$3�	4�4�
�(�4�4��� ��%�� �
�K���!�!�!�!��
�� �$�$�S�$�/�/�/�������K���!�!�!�!���s6�A�
A�C!�A�C!�AC�C�C!�!C<c��|j�|S	tj|j��}|jj|tjkr|S|j�|d��|�|j|��S#t$r8}|j�|d��tjd|z��|�d}~wwxYw)NrT)rrZ�stat�module�_modified_time�ST_MTIMErHrtr_�OSErrorrr
)rrru�
template_statras     r
rUzTemplateLookup._checkJs�����$��O�
	��G�H�$5�6�6�M���-��t�}�1M�M�M����� � ��d�+�+�+��:�:�h�/��5�5�5���	�	�	��� � ��d�+�+�+��4�2�S�8����
�����	���s�:A<�5A<�<
B>�3B9�9B>c�@�t|f||d�|j��|j|<dS)z�Place a new :class:`.Template` object into this
        :class:`.TemplateLookup`, based on the given string of
        ``text``.

        )rprN)rrGrH)rr�texts   r
�
put_stringzTemplateLookup.put_stringZs>��!)��!
��3�!
�!
�*.�*<�!
�!
������rc��||j|<dS)z�Place a new :class:`.Template` object into this
        :class:`.TemplateLookup`, based on the given
        :class:`.Template` object.

        N)rH)rrrus   r
�put_templatezTemplateLookup.put_templateds��!)������r)NNTr!FNNr"Nr#TNNNNNNrFNNTNNNN)
rrrrrQr	rrrkr_rUrr�rrr
r r Vs������>�>�D������� ������� �����������"�7L'�L'�L'�L'�\���8���"	�	�	����"�"�"�>��� 
�
�
�)�)�)�)�)rr )rZr&rWrwrK�makorr�
mako.templaterrr rrr
�<module>r�s���
�	�	�	�����	�	�	�	���������������������"�"�"�"�"�"�A�A�A�A�A�A�A�A�HT)�T)�T)�T)�T)�'�T)�T)�T)�T)�T)r

Hacked By AnonymousFox1.0, Coded By AnonymousFox