o
    xiDM                     @   s`  d Z ddlZddlZddlmZ ddlmZmZmZm	Z	m
Z
 ddlZzddlmZmZmZ dZW n ey;   dZY nw zddlZW n ey]   zddlZW n eyZ   dZY nw Y nw g dZg d	d
dgdgddgdZdZdZ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!dS ) z
    pygments.formatters.img
    ~~~~~~~~~~~~~~~~~~~~~~~

    Formatter for Pixmap output.

    :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
    N)	Formatter)get_bool_optget_int_optget_list_optget_choice_optxrange)Image	ImageDraw	ImageFontTF)ImageFormatterGifImageFormatterJpgImageFormatterBmpImageFormatter) RomanBookNormalRegularMediumObliqueItalicBoldzBold ObliquezBold Italic)NORMALITALICBOLD
BOLDITALICzBitstream Vera Sans MonozCourier Newc                   @      e Zd ZdZdS )PilNotAvailablez,When Python imaging library is not availableN__name__
__module____qualname____doc__ r#   r#   X/home/ubuntu/.local/lib/python3.10/site-packages/wandb/vendor/pygments/formatters/img.pyr   6       r   c                   @   r   )FontNotFoundz(When there are no usable fonts specifiedNr   r#   r#   r#   r$   r&   :   r%   r&   c                   @   s\   e Zd ZdZdddZdd Zdd Zd	d
 Zdd ZdddZ	dd Z
dd Zdd ZdS )FontManagerz>
    Manages a set of fonts: normal, italic, bold, etc...
       c                 C   sr   || _ || _i | _d | _tjdr|st| _ |   d S tjdr.|s(t	| _ | 
  d S |s3t| _ |   d S )Nwindarwin)	font_name	font_sizefontsencodingsysplatform
startswithDEFAULT_FONT_NAME_WIN_create_winDEFAULT_FONT_NAME_MAC_create_macDEFAULT_FONT_NAME_NIX_create_nix)selfr+   r,   r#   r#   r$   __init__C   s   zFontManager.__init__c           	      C   sz   t jdd||f dgt jd d}| \}}|jdkr;| }|D ]}|dr)q!|  d}|r8|  S q!d S d S )Nzfc-listz%s:style=%sfile)stdoutstderrr   s   Fontconfig warning::)	
subprocessPopenPIPEcommunicate
returncode
splitlinesr1   decodestrip)	r8   namestyleprocr;   _lineslinepathr#   r#   r$   _get_nix_font_pathU   s   

zFontManager._get_nix_font_pathc                 C   s   t d D ]}| | j|}|d urt|| j| jd<  nqtd| j dD ]5}t | D ]}| | j|}|d urFt|| j| j|<  nq-|dkrT| jd | j|< q'| jd | j|< q'd S )Nr   No usable fonts named: "%s"r   r   r   r   r   )STYLESrM   r+   r
   truetyper,   r-   r&   )r8   rF   rL   rG   	stylenamer#   r#   r$   r7   c   s*   zFontManager._create_nixc                 C   s   | |d |   S )N )getrE   lower)r8   font_maprF   rG   r#   r#   r$   _get_mac_font_pathx   s   zFontManager._get_mac_font_pathc                    s  i }t jt ddddfD ] | fddt  D  qtd D ]}| || j|}|d ur?t	
|| j| jd<  nq%td| j d	D ]6}t| D ]}| || j|}|d urit	
|| j| j|<  nqO|d
krw| jd | j|< qI| jd | j|< qId S )NHOMEzLibrary/Fonts/z/Library/Fonts/z/System/Library/Fonts/c                 3   s@    | ]}|  d rtj|d   tj |fV  qdS )ttfr   N)rU   endswithosrL   splitextjoin).0ffont_dirr#   r$   	<genexpr>   s    ,z*FontManager._create_mac.<locals>.<genexpr>r   rN   rO   r   r   )r[   rL   r]   getenvupdatelistdirrP   rW   r+   r
   rQ   r,   r-   r&   )r8   rV   rF   rL   rG   rR   r#   r`   r$   r5   {   s<   
zFontManager._create_macFc           
   
   C   sv   dD ]*}|D ]%}zd||od| |f }t ||\}}	|W     S  ty+   Y qw q|r9td||d f d S )N)r   z (TrueType)z%s%s%srS   z"Font %s (%s) not found in registryr   )_winregQueryValueExEnvironmentErrorr&   )
r8   keybasenamestylesfailsuffixrG   valnamevalrI   r#   r#   r$   _lookup_win   s   
zFontManager._lookup_winc                 C   s   z	t t jd}W n ty'   z	t t jd}W n ty$   tdw Y nw zN| || jtd d}t	|| j
| jd< dD ].}| || jt| }|rYt	|| j
| j|< q@|dkrf| jd | j|< q@| jd | j|< q@W t | d S t | w )	Nz2Software\Microsoft\Windows NT\CurrentVersion\Fontsz/Software\Microsoft\Windows\CurrentVersion\Fontsz$Can't open Windows font registry keyr   TrO   r   r   )rf   OpenKeyHKEY_LOCAL_MACHINErh   r&   rp   r+   rP   r
   rQ   r,   r-   CloseKey)r8   ri   rL   rG   r#   r#   r$   r3      s8   
zFontManager._create_winc                 C   s   | j d dS )z)
        Get the character size.
        r   M)r-   getsizer8   r#   r#   r$   get_char_size      zFontManager.get_char_sizec                 C   s8   |r	|r	| j d S |r| j d S |r| j d S | j d S )z>
        Get the font based on bold and italic flags.
        r   r   r   r   )r-   )r8   boldobliquer#   r#   r$   get_font   s   



zFontManager.get_fontN)r(   )F)r   r    r!   r"   r9   rM   r7   rW   r5   rp   r3   rw   r{   r#   r#   r#   r$   r'   >   s    

r'   c                   @   s   e Zd ZdZdZg dZdgZdZdZdd Z	d+d
dZ
dd Zdd Zdd Zdd Zdd Zdd Zdd Zdd Zdd Zdd Zd d! Zd"d# Zd$d% Zd&d' Zd(d) Zd*S ),r   a	  
    Create a PNG image from source code. This uses the Python Imaging Library to
    generate a pixmap from the source code.

    .. versionadded:: 0.10

    Additional options accepted:

    `image_format`
        An image format to output to that is recognised by PIL, these include:

        * "PNG" (default)
        * "JPEG"
        * "BMP"
        * "GIF"

    `line_pad`
        The extra spacing (in pixels) between each line of text.

        Default: 2

    `font_name`
        The font name to be used as the base font from which others, such as
        bold and italic fonts will be generated.  This really should be a
        monospace font to look sane.

        Default: "Bitstream Vera Sans Mono" on Windows, Courier New on \*nix

    `font_size`
        The font size in points to be used.

        Default: 14

    `image_pad`
        The padding, in pixels to be used at each edge of the resulting image.

        Default: 10

    `line_numbers`
        Whether line numbers should be shown: True/False

        Default: True

    `line_number_start`
        The line number of the first line.

        Default: 1

    `line_number_step`
        The step used when printing line numbers.

        Default: 1

    `line_number_bg`
        The background colour (in "#123456" format) of the line number bar, or
        None to use the style background color.

        Default: "#eed"

    `line_number_fg`
        The text color of the line numbers (in "#123456"-like format).

        Default: "#886"

    `line_number_chars`
        The number of columns of line numbers allowable in the line number
        margin.

        Default: 2

    `line_number_bold`
        Whether line numbers will be bold: True/False

        Default: False

    `line_number_italic`
        Whether line numbers will be italicized: True/False

        Default: False

    `line_number_separator`
        Whether a line will be drawn between the line number area and the
        source code area: True/False

        Default: True

    `line_number_pad`
        The horizontal padding (in pixels) between the line number margin, and
        the source code area.

        Default: 6

    `hl_lines`
        Specify a list of lines to be highlighted.

        .. versionadded:: 1.2

        Default: empty list

    `hl_color`
        Specify the color for highlighting lines.

        .. versionadded:: 1.2

        Default: highlight color of the selected style
    img)r|   IMGpngz*.pngFr~   c              	   K   s  t stdtj| fi | d| _t| j| _| jjdu r"d| _n| jj| _t	|dg d| j
dd| _t|d	d
| _t|dd| _t|dd}t|dd|| _| j \| _| _|dd| _|dd| _t|dd| _t|dd| _t|dd| _t|dd| _t|dd| _t|dd| _t|dd| _t|dd| _| jr| j| j | jd  | _ nd | _ g | _!t"|d!g }|D ]}z
| j!#t$| W q t%y   Y qw |d"| jj&pd#| _'g | _(dS )$zE
        See the class docstring for explanation of options.
        z5Python Imaging Library is required for this formatterlatin1Nz#fffimage_format)r~   jpeggifbmpT)normcase	image_pad
   line_pad   r,   r(   r+   r   line_number_fgz#886line_number_bgz#eedline_number_charsline_number_boldFline_number_italicline_number_pad   line_numbersline_number_separatorline_number_step   line_number_startr   hl_lineshl_colorz#f90))pil_availabler   r   r9   r.   dictrG   rk   background_colorr   default_image_formatr   r   r   r   r'   rT   r-   rw   fontwfonthr   r   r   r   r   r   r   r   r   r   r   line_number_widthr   r   appendint
ValueErrorhighlight_colorr   	drawables)r8   optionsfontsizehl_lines_strrK   r#   r#   r$   r9   J  sp   



zImageFormatter.__init__r   c                 C   s   t d)NzWThe -S option is meaningless for the image formatter. Use -O style=<stylename> instead.)NotImplementedError)r8   argr#   r#   r$   get_style_defs  s   zImageFormatter.get_style_defsc                 C   s   | j | j S )z+
        Get the height of a line.
        )r   r   rv   r#   r#   r$   _get_line_height  s   zImageFormatter._get_line_heightc                 C   s   ||    | j S )z8
        Get the Y coordinate of a line number.
        )r   r   r8   linenor#   r#   r$   _get_line_y  s   zImageFormatter._get_line_yc                 C   s   | j S )z/
        Get the width of a character.
        )r   rv   r#   r#   r$   _get_char_width  s   zImageFormatter._get_char_widthc                 C   s   || j  | j | j S )z?
        Get the X coordinate of a character position.
        )r   r   r   )r8   charnor#   r#   r$   _get_char_x     zImageFormatter._get_char_xc                 C   s   |  || |fS )zL
        Get the actual position for a character and line position.
        )r   r   )r8   r   r   r#   r#   r$   _get_text_pos  s   zImageFormatter._get_text_posc                 C   s   | j | |fS )zI
        Get the actual position for the start of a line number.
        )r   r   r   r#   r#   r$   _get_linenumber_pos  rx   z"ImageFormatter._get_linenumber_posc                 C   s$   |d durd|d  }|S d}|S )zE
        Get the correct color for the token from the style.
        colorN#z#000r#   )r8   rG   fillr#   r#   r$   _get_text_color  s
   zImageFormatter._get_text_colorc                 C   s   | j |d |d S )z5
        Get the correct font for the style.
        ry   italic)r-   r{   )r8   rG   r#   r#   r$   _get_style_font  r   zImageFormatter._get_style_fontc                 C   s$   |  || j | |d | j fS )z.
        Get the required image size.
        r   )r   r   r   )r8   	maxcharno	maxlinenor#   r#   r$   _get_image_size  s   zImageFormatter._get_image_sizec                 C   s8   | j | |t|| j| j| j| j| j	d dS )zA
        Remember a line number drawable to paint later.
        fontr   N)

_draw_textr   strrjustr   r-   r{   r   r   r   )r8   posnor   r#   r#   r$   _draw_linenumber  s   

zImageFormatter._draw_linenumberc                 K   s   | j ||||f dS )zB
        Remember a single drawable tuple to paint later.
        N)r   r   )r8   postextr   kwr#   r#   r$   r     s   zImageFormatter._draw_textc              	   C   s   d } }}|D ]Y\}}|| j vr|j}|| j vs| j | }|d}|d}t|D ]4\}	}
|
d}|rU| j| |||| || 	|d |t
|7 }t||}|
dr`d}|d7 }q,q|| _|| _dS )z9
        Create drawables for the token content.
        r      T
r   r   N)rk   parent
expandtabsrC   	enumeraterstripr   r   r   r   lenmaxrZ   r   r   )r8   tokensourcer   r   r   ttypevaluerG   rJ   irK   tempr#   r#   r$   _create_drawables  s4   









z ImageFormatter._create_drawablesc                 C   sB   | j sdS t| jD ]}|| j }|| j dkr| || q
dS )z8
        Create drawables for the line numbers.
        Nr   )r   r   r   r   r   r   )r8   pnr#   r#   r$   _draw_line_numbers  s   
z!ImageFormatter._draw_line_numbersc                 C   sx   | j sdS | jdu rdS t|}|jd }| j| j | j }|jd||fg| j	d |j
|df||fg| jd ~dS )z@
        Paint the line number background on the image.
        N)r   r   r   r   )r   r   r	   Drawsizer   r   r   	rectangler   rK   )r8   imdrawrecthrectwr#   r#   r$   _paint_line_number_bg  s   


z$ImageFormatter._paint_line_number_bgc                 C   s   |  | |   td| | j| j| j}| | t	
|}| jrY| j| j | j d }|  }|jd | }| jD ]}| |d }	|j||	f|| |	| fg| jd q=| jD ]\}
}}}|j|
|fd|i| q\||| j  dS )a   
        Format ``tokensource``, an iterable of ``(tokentype, tokenstring)``
        tuples and write it into ``outfile``.

        This implementation calculates where it should draw each token on the
        pixmap, then calculates the required pixmap size and draws the items.
        RGBr   r   r   r   N)r   r   r   newr   r   r   r   r   r	   r   r   r   r   r   r   r   r   r   r   r   r   saver   upper)r8   r   outfiler   r   xr   r   
linenumberyr   r   r   r   r#   r#   r$   format  s*   



zImageFormatter.formatN)r   )r   r    r!   r"   rF   aliases	filenamesunicodeoutputr   r9   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r#   r#   r#   r$   r      s0    l
8
!r   c                   @   s$   e Zd ZdZdZdgZdgZdZdS )r   z
    Create a GIF image from source code. This uses the Python Imaging Library to
    generate a pixmap from the source code.

    .. versionadded:: 1.0
    img_gifr   z*.gifNr   r    r!   r"   rF   r   r   r   r#   r#   r#   r$   r   1  s    r   c                   @   s&   e Zd ZdZdZddgZdgZdZdS )r   z
    Create a JPEG image from source code. This uses the Python Imaging Library to
    generate a pixmap from the source code.

    .. versionadded:: 1.0
    img_jpgjpgr   z*.jpgNr   r#   r#   r#   r$   r   ?      r   c                   @   s&   e Zd ZdZdZddgZdgZdZdS )r   z
    Create a bitmap image from source code. This uses the Python Imaging Library to
    generate a pixmap from the source code.

    .. versionadded:: 1.0
    img_bmpr   bitmapz*.bmpNr   r#   r#   r#   r$   r   M  r   r   )"r"   r[   r/   pygments.formatterr   pygments.utilr   r   r   r   r   r>   PILr   r	   r
   r   ImportErrorrf   winreg__all__rP   r6   r2   r4   r   	Exceptionr&   objectr'   r   r   r   r   r#   r#   r#   r$   <module>   sR   
   ^