
    ]h                     |    d Z ddlZddlmZ ddlmZmZ ddlmZ ddl	m
Z
mZmZ ddlmZmZ g Zd Zd	 Ze
ez   fd
Zy)z
This modules provides a method to parse an ISO 8601:2004 time string to a
Python datetime.time instance.

It supports all basic and extended formats including time zone specifications
as described in the ISO standard.
    N)time)ROUND_FLOORDecimal)ISO8601Error)TIME_EXT_COMPLETETZ_EXTstrftime)TZ_REGEXbuild_tzinfoc                  p    t         s+d }  | d        | d        | d        | d        | d       t         S )z
    Build regular expressions to parse ISO time string.

    The regular expressions are compiled and stored in TIME_REGEX_CACHE
    for later reuse.
    c                 n    t         j                  t        j                  d| z   t        z   dz                y )Nz\Az\Z)TIME_REGEX_CACHEappendrecompiler
   )
regex_texts    U/var/www/core.comfia.cic-ware.com/crm/lib/python3.12/site-packages/isodate/isotime.pyadd_rez"build_time_regexps.<locals>.add_re-   s(    ##BJJuz/AH/Lu/T$UV    zKT?(?P<hour>[0-9]{2}):(?P<minute>[0-9]{2}):(?P<second>[0-9]{2}([,.][0-9]+)?)zIT?(?P<hour>[0-9]{2})(?P<minute>[0-9]{2})(?P<second>[0-9]{2}([,.][0-9]+)?)z6T?(?P<hour>[0-9]{2}):(?P<minute>[0-9]{2}([,.][0-9]+)?)z5T?(?P<hour>[0-9]{2})(?P<minute>[0-9]{2}([,.][0-9]+)?)z!T?(?P<hour>[0-9]{2}([,.][0-9]+)?))r   )r   s    r   build_time_regexpsr      sN     "	W
 		
 		
 	PQOP78r   c           
         t               }|D ]Y  }|j                  |       }|s|j                         }|j                         D ]  \  }}|	|j	                  dd      ||<    t        |d   |d   t        |d   xs d      t        |d   xs d            }d|v rt        |d         j                  t        d	      t        
      }|t        |      z
  t        d      z  }	t        t        |d         t        |d         t        |      t        |	j                               |      c S d|v rt        |d         }
t        |
t        |
      z
  dz        j                  t        d	      t        
      }|t        |      z
  t        d      z  }	t        t        |d         t        |
      t        |      t        |	j                               |      c S d\  }	}}
t        |d         }|t        |      z
  dz  }
|
t        |
      z
  dz  }|t        |      z
  t        d      z  }	t        t        |      t        |
      t        |      t        |	j                               |      c S  t        d| z        )a  
    Parses ISO 8601 times into datetime.time objects.

    Following ISO 8601 formats are supported:
      (as decimal separator a ',' or a '.' is allowed)
      hhmmss.ssTZD    basic complete time
      hh:mm:ss.ssTZD  extended complete time
      hhmm.mmTZD      basic reduced accuracy time
      hh:mm.mmTZD     extended reduced accuracy time
      hh.hhTZD        basic reduced accuracy time
    TZD is the time zone designator which can be in the following format:
              no designator indicates local time zone
      Z       UTC
      +-hhmm  basic hours and minutes
      +-hh:mm extended hours and minutes
      +-hh    hours
    ,.tznametzsigntzhourr   tzminsecondz.000001)roundingg    .Ahourminute<   )r   r   r   z%Unrecognised ISO 8601 time format: %r)r   match	groupdictitemsreplacer   intr   quantizer   r   to_integralr   )
timestringisotimespatternr#   groupskeyvaluetzinfor   microsecondr!   r    s               r   
parse_timer2   I   s}   $ "#H 4j)__&F$lln :
U$"'--S"9F3K: "x x F8$)*F7O(q)	F 6! !12;;I& <   &F3s3x? v'x()K//12  6! !12 &3v;"6"!<=FFI& G   &F3s3x?v'KK//12  /6+VV6&>*DSY&",Fs6{*b0F!CK/3s8;KD	FFK++-. ]4j >K
LLr   c                     t        | |      S )z
    Format time strings.

    This method is just a wrapper around isodate.isostrf.strftime and uses
    Time-Extended-Complete with extended time zone as default format.
    )r	   )ttimeformats     r   time_isoformatr6      s     E6""r   )__doc__r   datetimer   decimalr   r   isodate.isoerrorr   isodate.isostrfr   r   r	   isodate.isotzinfor
   r   r   r   r2   r6    r   r   <module>r>      sD    
  ( ) ? ? 4 1hHMV "3V!; #r   