a �DOg('�@s�dZddlZddlZddlmZddlmZgd�ZiZdZ gd�Z dd �Z dd d �Z d d�Z dd�ZGdd�d�Zddd�Zee fdd�Zdd�Zdd�Zedkr�e�dS)z�Utilities for comparing files and directories. Classes: dircmp Functions: cmp(f1, f2, shallow=True) -> int cmpfiles(a, b, common) -> ([], [], []) clear_cache() �N)� filterfalse)� GenericAlias)� clear_cache�cmp�dircmp�cmpfiles�DEFAULT_IGNORESi )�RCS�CVS�tagsz.gitz.hgz.bzr�_darcs� __pycache__cCs t��dS)zClear the filecmp cache.N)�_cache�clear�rr�/usr/lib64/python3.9/filecmp.pyrsrTcCs�tt�|��}tt�|��}|dtjks8|dtjkr prints a report on the differences between dir1 and dir2 or x.report_partial_closure() -> prints report on differences between dir1 and dir2, and reports on common immediate subdirectories. x.report_full_closure() -> like report_partial_closure, but fully recursive. Attributes: left_list, right_list: The files in dir1 and dir2, filtered by hide and ignore. common: a list of names in both dir1 and dir2. left_only, right_only: names only in dir1, dir2. common_dirs: subdirectories in both dir1 and dir2. common_files: files in both dir1 and dir2. common_funny: names in both dir1 and dir2 where the type differs between dir1 and dir2, or the name is not stat-able. same_files: list of identical files. diff_files: list of filenames which differ. funny_files: list of files which could not be compared. subdirs: a dictionary of dircmp objects, keyed by names in common_dirs. NcCsD||_||_|dur$tjtjg|_n||_|dur:t|_n||_dSr!)�left�rightr�curdir�pardir�hider�ignore)�self�a�br5r4rrr�__init__zszdircmp.__init__cCsPtt�|j�|j|j�|_tt�|j�|j|j�|_|j� �|j� �dSr!) �_filterr�listdirr0r4r5� left_listr1� right_list�sort�r6rrr�phase0�s  �  � z dircmp.phase0cCs�ttttjj|j�|j��}ttttjj|j�|j��}tt|j t |j |���|_ tt|j t |j |���|_tt|j t |j |���|_dSr!)�dict�zip�mapr�path�normcaser<r=�list� __getitem__�filter� __contains__�commonr� left_only� right_only)r6r7r8rrr�phase1�s z dircmp.phase1c Csg|_g|_g|_|jD]�}tj�|j|�}tj�|j|�}d}zt� |�}Wnt ydd}Yn0zt� |�}Wnt y�d}Yn0|r�t � |j �}t � |j �}||kr�|j� |�nrLr_r`rarNrPr?rrr�report�s,           z dircmp.reportcCs*|��|j��D]}t�|��qdSr!)rordrhrnrjrrr�report_partial_closure�szdircmp.report_partial_closurecCs*|��|j��D]}t�|��qdSr!)rordrhrn�report_full_closurerjrrrrq�szdircmp.report_full_closure) rdr_r`rarNrOrPrJrKrLr<r=cCs*||jvrt|��|j||�t||�Sr!)� methodmap�AttributeError�getattr)r6�attrrrr� __getattr__�s zdircmp.__getattr__)NN)�__name__� __module__� __qualname__�__doc__r9r@rMr^rcrgrirorprqrArrrv� classmethodr�__class_getitem__rrrrrXs&! # �rcCsJgggf}|D]6}tj�||�}tj�||�}|t|||��|�q|S)a]Compare common files in two directories. a, b -- directory names common -- list of file names found in both directories shallow -- if true, do comparison based solely on stat() information Returns a tuple of three lists: files that compare equal files that are different filenames that aren't regular files. )rrDrQ�_cmprS)r7r8rJr�resrV�ax�bxrrrr�s rcCs.z|||||�� WSty(YdS0dS)N�)rR)r7r8�sh�absrrrrr}s r}cCstt|j|��Sr!)rFrrI)�flist�skiprrrr:#sr:cCsrddl}ddl}|�|jdd�d�\}}t|�dkrB|�dd��t|d|d�}d|vrf|��n|��dS)Nrr�rr�zneed exactly two args)z-r�)�sys�getopt�argvr� GetoptErrorrrqro)r�r��options�args�ddrrr�demo)s   r��__main__)T)T)rzrr� itertoolsr�typesr�__all__rr(rrrrrrrr�r}r:r�rwrrrr�s(    ( (