????
Your IP : 3.141.244.160
a
�DOgnY�@svdZddlZddlZddlZddlZgd�ZGdd�d�Zddd�Zdd d
�ZGdd�d�Z d
d�Z
edkrre
�dS)z Class for profiling Python code.�N)�run�runctx�Profilec@s0eZdZdZdd�Zdd�Zdd�Zdd �Zd
S)�_Utilsz�Support class for utility functions which are shared by
profile.py and cProfile.py modules.
Not supposed to be used directly.
cCs
||_dS�N)�profiler)�selfr�r �,/opt/alt/python39/lib64/python3.9/profile.py�__init__0sz_Utils.__init__cCsR|��}z4z|�|�Wnty*Yn0W|�|||�n|�|||�0dSr)rr�
SystemExit�_show)r� statement�filename�sort�profr r r
r3sz
_Utils.runcCsV|��}z8z|�|||�Wnty.Yn0W|�|||�n|�|||�0dSr)rrrr
)rr�globals�localsrrrr r r
r<sz
_Utils.runctxcCs"|dur|�|�n
|�|�dSr)�
dump_stats�print_stats)rrrrr r r
r
Esz_Utils._showN)�__name__�
__module__�__qualname__�__doc__rrrr
r r r r
r*s
r���cCstt��|||�S)aRun statement under profiler optionally saving results in filename
This function takes a single argument that can be passed to the
"exec" statement, and an optional file name. In all cases this
routine attempts to "exec" its first argument and gather profiling
statistics from the execution. If no file name is present, then this
function automatically prints a simple profiling report, sorted by the
standard name string (file/line/function-name) that is presented in
each line.
)rrr)rrrr r r
rQsrcCstt��|||||�S)z�Run statement under profiler, supplying your own globals and locals,
optionally saving results in filename.
statement and filename have the same semantics as profile.run
)rrr)rrrrrr r r
r^src@s�eZdZdZdZd4dd�Zdd�Zdd �Zd
d�Zdd
�Z dd�Z
dd�Zdd�Zdd�Z
ee
e
ee
e
d�Zdd�ZGdd�d�ZGdd�d�Zdd�Zdd �Zd5d"d#�Zd$d%�Zd&d'�Zd(d)�Zd*d+�Zd,d-�Zd.d/�Zd6d0d1�Zd2d3�ZdS)7raProfiler class.
self.cur is always a tuple. Each such tuple corresponds to a stack
frame that is currently active (self.cur[-2]). The following are the
definitions of its members. We use this external "parallel stack" to
avoid contaminating the program that we are profiling. (old profiler
used to write into the frames local dictionary!!) Derived classes
can change the definition of some entries, as long as they leave
[-2:] intact (frame and previous tuple). In case an internal error is
detected, the -3 element is used as the function name.
[ 0] = Time that needs to be charged to the parent frame's function.
It is used so that a function call will not have to access the
timing data for the parent frame.
[ 1] = Total time spent in this frame's function, excluding time in
subfunctions (this latter is tallied in cur[2]).
[ 2] = Total time spent in subfunctions, excluding time executing the
frame's function (this latter is tallied in cur[1]).
[-3] = Name of the function that corresponds to this frame.
[-2] = Actual frame that we correspond to (used to sync exception handling).
[-1] = Our parent 6-tuple (corresponds to frame.f_back).
Timing data for each function is stored as a 5-tuple in the dictionary
self.timings[]. The index is always the name stored in self.cur[-3].
The following are the definitions of the members:
[0] = The number of times this function was called, not counting direct
or indirect recursion,
[1] = Number of times this function appears on the stack, minus one
[2] = Total time spent internal to this function
[3] = Cumulative time that this function was present on the stack. In
non-recursive functions, this is the total execution time from start
to finish of each invocation of a function, including time spent in
all subfunctions.
[4] = A dictionary indicating for each function name, the number of times
it was called by us.
rNcCs�i|_d|_d|_d|_|dur&|j}||_|sHtj|_|_|j |_
nj||_|��}zt|�}Wn ty�||_|j |_
Yn00|dkr�|j
|_
n|j|_
|tfdd�}||_|��|_|�d�dS)N��cSs
||��Srr )�timer�sumr r r
�get_time_timer�sz(Profile.__init__.<locals>.get_time_timerr)�timings�cur�cmd�c_func_name�bias�time�process_timer�get_time�trace_dispatch_i�
dispatcher�len� TypeError�trace_dispatch�trace_dispatch_lr�t�
simulate_call)rrr$r.Zlengthrr r r
r�s0
zProfile.__init__cCs�|j}|�}|d|d|j|j}|dkr8|j|_|j||||�rd|�}|d|d|_n|�}|d|d||_dS)Nr��c_call�rr.r$rr#�dispatch)r�frame�event�argrr.�rr r r
r,�szProfile.trace_dispatchcCsT|j}|�|j|j}|dkr(|j|_|j||||�rD|�|_n|�||_dS�Nr1r2�rr4r5r6rr.r r r
r(�s
zProfile.trace_dispatch_icCs`|j}|�d|j|j}|dkr,|j|_|j||||�rL|�d|_n|�d||_dS)NgN@r1r2r9r r r
�trace_dispatch_mac�szProfile.trace_dispatch_maccCsT|j}|�|j|j}|dkr(|j|_|j||||�rD|�|_n|�||_dSr8)r'r.r$rr#r3)rr4r5r6r'r.r r r
r-�s
zProfile.trace_dispatch_lc CsD|j\}}}}}}||ur*|r*|�||�S|||||||f|_dS�Nr0)r!�trace_dispatch_return) rr4r.�rpt�rit�ret�rfn�rframe�rcurr r r
�trace_dispatch_exception�s
z Profile.trace_dispatch_exceptioncCs|jr�|j|jdur�|j\}}}}}}t|tj�s�|j|jusXJd|||j||jf��|�|d�|jdus�|j|jdus�Jd|jdf��|j} | j| j| j f}
|dd|
||jf|_|j
}|
|vr�||
\}}
}}}||
d|||f||
<nddddif||
<dS)N���zBad callr���r0)r!�f_back�
isinstancer�
fake_framer<�f_code�co_filename�co_firstlineno�co_namer )rr4r.r=r>r?r@rArBZfcode�fnr �cc�ns�tt�ct�callersr r r
�trace_dispatch_calls0�
���zProfile.trace_dispatch_callc
Csndd|jf}|dd|||jf|_|j}||vrX||\}}}}} ||d||| f||<nddddif||<dS)Nrrr0)r#r!r )
rr4r.rMr rNrOrPrQrRr r r
�trace_dispatch_c_callszProfile.trace_dispatch_c_callcCs�||jdurB||jdjus0Jd|jdf��|�|jdd�|j\}}}}}}||}||}|\} }
}}}
}| |
|||||
|f|_|j}||\}}}}}|s�||}|d}||vr�||d||<nd||<||d||||f||<dS)NrDz
Bad returnrErr0)r!rFr<r )rr4r.r=r>r?r@rBZframe_totalZpptZpitZpetZpfn�pframeZpcurr rNrOrPrQrRr r r
r<"s$"zProfile.trace_dispatch_return)�callZ exception�returnr1Zc_exceptionZc_returncCs"|jdrdS||_|�|�dS)Nr)r!r"r/)rr"r r r
�set_cmdXszProfile.set_cmdc@seZdZdd�Zdd�ZdS)zProfile.fake_codecCs||_||_||_d|_dS�Nr)rJ�co_linerLrK)rr�line�namer r r
r^szProfile.fake_code.__init__cCst|j|j|jf�Sr)�reprrJrZrL�rr r r
�__repr__dszProfile.fake_code.__repr__N)rrrrr_r r r r
� fake_code]sr`c@seZdZdd�ZdS)zProfile.fake_framecCs||_||_dSr)rIrF)r�codeZpriorr r r
rhszProfile.fake_frame.__init__N)rrrrr r r r
rHgsrHcCsF|�dd|�}|jr |jd}nd}|�||�}|jd||d�dS)NZprofilerrDrV)r`r!rHr3)rr\rarUr4r r r
r/lszProfile.simulate_callcCsJ|j}|�|j}|jdr:|jd||jd|�d}q|�||_dS)NrrWrDr)r'r.r!r3)rr'r.r r r
�simulate_cmd_completexs
zProfile.simulate_cmd_completercCs$ddl}|�|����|���dSrY)�pstatsZStatsZ
strip_dirsZ
sort_statsr)rrrcr r r
r�szProfile.print_statscCsDt|d��&}|��t�|j|�Wd�n1s60YdS)N�wb)�open�create_stats�marshal�dump�stats)r�file�fr r r
r�szProfile.dump_statscCs|��|��dSr)rb�snapshot_statsr^r r r
rf�szProfile.create_statsc Cs^i|_|j��D]H\}\}}}}}|��}d}|��D]}||7}q6|||||f|j|<qdSrY)rir �items�copy�values) r�funcrNrOrPrQrRZncZcallcntr r r
rl�s
zProfile.snapshot_statscCsddl}|j}|�|||�SrY)�__main__�__dict__r)rr"rq�dictr r r
r�szProfile.runc CsB|�|�t�|j�zt|||�Wt�d�nt�d�0|Sr)rX�sys�
setprofiler)�exec)rr"rrr r r
r�s
zProfile.runctxc OsF|�t|��t�|j�z||i|��Wt�d�St�d�0dSr)rXr]rtrur))rrp�args�kwr r r
�runcall�s
�zProfile.runcallcCs@|jturtd��|j}d|_z|�||�W||_S||_0dS)Nz&Subclasses must override .calibrate().r)� __class__rr+r$�_calibrate_inner)r�m�verboseZ
saved_biasr r r
� calibrate�s
�zProfile.calibratecCs|j}dd�}|fdd�}||�|�}||�|�}||}|rLtd|�t�} |�}| �dt�t��|�}||}
|r�td|
�d}d}| j��D]0\\}
}}\}}}}}|d vr�||7}||7}q�|r�td
|�td|�||dkr�td
|��||d|}|�rtd|�|S)NcSst|�D]}d}qdSr;��range)�n�i�xr r r
�f1�sz$Profile._calibrate_inner.<locals>.f1cSst|�D]}|d�qdS)N�dr)r|r�r�r r r
rk�sz#Profile._calibrate_inner.<locals>.fz elapsed time without profiling =zf(m)zelapsed time with profiling =g)rkr�z!'CPU seconds' profiler reported =ztotal # calls =r0z internal error: total calls = %dg@z+mean stopwatch overhead per profile event =) r'�printrrrrr rm�
ValueError)rr|r}r'r�rkZt0�t1Zelapsed_noprofile�pZelapsed_profileZtotal_callsZ
reported_timerr[�funcnamerNrOrPrQrRZmeanr r r
r{�sB
�
zProfile._calibrate_inner)NN)r)r)rrrrr$rr,r(r:r-rCrSrTr<r3rXr`rHr/rbrrrfrlrrryr~r{r r r r
rgs@&
''�
1
rc
Cs�ddl}ddlm}d}||d�}d|_|jdddd dd
�|jddd
ddd�|jdddddd
�tjdd�s�|��t�d�|� �\}}|tjdd�<|j
dur�|j�|j
�|_
t
|�dk�r�|jr�ddl}d}|j|dd�}nh|d} tj�d|j�| ��t�| �� }
t|
��| d�}Wd�n1�s:0Y| dddd�}zt||d|j
|j�Wn8t�y�}zdt_t�|j�WYd}~n
d}~00n|��|S)Nr)�OptionParserzMprofile.py [-o output_file_path] [-s sort] [-m module | scriptfile] [arg] ...)�usageFz-oz --outfile�outfilezSave stats to <outfile>)�dest�help�defaultz-m�module�
store_truezProfile a library module.)r��actionr�r�z-sz--sortrz?Sort order when printing to stdout, based on pstats.Stats classrr0rz(run_module(modname, run_name='__main__'))�
run_module�modnamervrq)�__file__r�__package__�
__cached__)�osZoptparser�Zallow_interspersed_argsZ
add_optionrt�argvZprint_usage�exit�
parse_argsr��path�abspathr*r��runpyr��insert�dirname�io� open_code�compile�readrr�BrokenPipeError�stdout�errno)r�r�r��parserZoptionsrwr�raZglobsZprogname�fp�excr r r
�main)sZ
�
�
�
�0�$r�rq)Nr)Nr)rr�rtr%rg�__all__rrrrr�rr r r r
�<module> s
'
E9