IP : 3.12.153.216 Hostname : host45.registrar-servers.com Kernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Disable Function : None :) OS : Linux PATH: / home/ ../ ../ sbin/ ../ lib64/ libxslt-plugins/ ../ td-agent-bit/ ../ python2.7/ encodings/ ../ profile.pyc/ /

�
zfc@s$dZddlZddlZddlZddlZddlmZddddgZedd�Z edd �Z
d
�Z e ed �r�ej
d �Znd
Zy+ddlZd�Zed�ZdZWnek
r�nXdfd��YZd�Zd�Zedkr e�ndS(s Class for profiling Python code.i����N(t OptionParsertruntrunctxthelptProfilecCs]t�}y|j|�}Wntk
r/nX|dk rL|j|�n
|j|�SdS(sRun 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.
N(RRt
SystemExittNonet
dump_statst print_stats(t statementtfilenametsorttprof((s/usr/lib64/python2.7/profile.pyR0s 
 cCsct�}y|j|||�}Wntk
r5nX|dk rR|j|�n
|j|�SdS(s�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
N(RRRRRR(R tglobalstlocalsR
R R ((s/usr/lib64/python2.7/profile.pyREs 
 cCsdGHdGHdS(Ns2Documentation for the profile module can be found s?in the Python Library Reference, section 'The Python Profiler'.((((s/usr/lib64/python2.7/profile.pyRWsttimescCs|�}|d|dS(Nii((ttimertt((s/usr/lib64/python2.7/profile.pyt_get_time_times\s icCstjtj�S(N(tresourcet getrusaget RUSAGE_SELF(((s/usr/lib64/python2.7/profile.pyt<lambda>gtcCs|�}|d|dS(Nii((RR((s/usr/lib64/python2.7/profile.pyt_get_time_resourcehs icBs3eZdZdZd"d"d�Zd�Zd�Zd�Zd�Z d�Z
d�Z d �Z d
�Z
ie d 6e
d 6e
d
6e d6e
d6e
d6Zd�Zdd#d��YZdd$d��YZd�Zd�Zdd�Zd�Zd�Zd�Zd�Zd�Zd�Zdd �Zd!�ZRS(%sProfiler 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.
icCs�i|_d|_d|_d|_|dkr<|j}n||_|s�trrt|_|j |_
t |_ q�t
td�r�tj|_|_ |j|_
q�t
td�r�tj|_|j |_
t|_ q�tj|_|_ |j|_
n�||_|j�}yt|�}Wn&tk
rE||_ |j|_
n@X|dkra|j |_
n |j|_
|td�}||_ |j �|_|jd�dS(NRtclockRicSs
||��S(N((Rtsum((s/usr/lib64/python2.7/profile.pytget_time_timer�stprofiler(ttimingsRtcurtcmdt c_func_nametbiast_has_rest resgetrusageRttrace_dispatcht
dispatcherRtget_timethasattrttimeRttrace_dispatch_itosRRtlent TypeErrorttrace_dispatch_lRRt
simulate_call(tselfRR!RtlengthR((s/usr/lib64/python2.7/profile.pyt__init__�sF               
    cCs�|j}|�}|d|d|j|j}|dkrM|j|_n|j||||�r�|�}|d|d|_n"|�}|d|d||_dS(Niitc_call(RRR!t__name__R tdispatch(R/tframeteventtargRRtr((s/usr/lib64/python2.7/profile.pyR$�s      cCsw|j}|�|j|j}|dkr;|j|_n|j||||�rc|�|_n|�||_dS(NR2(RRR!R3R R4(R/R5R6R7RR((s/usr/lib64/python2.7/profile.pyR)�s  cCs�|j}|�d|j|j}|dkr?|j|_n|j||||�rk|�d|_n|�d||_dS(NgN@R2(RRR!R3R R4(R/R5R6R7RR((s/usr/lib64/python2.7/profile.pyttrace_dispatch_mac�s  cCsw|j}|�|j|j}|dkr;|j|_n|j||||�rc|�|_n|�||_dS(NR2(R&RR!R3R R4(R/R5R6R7R&R((s/usr/lib64/python2.7/profile.pyR-�s  c Cs`|j\}}}}}}||k r=|r=|j||�S|||||||f|_dS(Ni(Rttrace_dispatch_return( R/R5Rtrpttrittrettrfntrframetrcur((s/usr/lib64/python2.7/profile.pyttrace_dispatch_exception
s
cCs�|jr�|j|jdk r�|j\}}}}}}t|tj�s�|j|jks�td|||j||jf��|j|d�|jdks�|j|jdks�td|jdf��q�n|j} | j | j
| j f}
|dd|
||jf|_|j } |
| krc| |
\} }
}}}| |
d|||f| |
<nddddif| |
<dS(Ni����sBad callii����i(
Rtf_backt
isinstanceRt
fake_frametAssertionErrorR:Rtf_codet co_filenametco_firstlinenotco_nameR(R/R5RR;R<R=R>R?R@tfcodetfnRtcctnsttttcttcallers((s/usr/lib64/python2.7/profile.pyttrace_dispatch_calls&     c
Cs�dd|jf}|dd|||jf|_|j}||kr~||\}}}}} ||d||| f||<nddddif||<dS(NRii(R RR(
R/R5RRKRRLRMRNRORP((s/usr/lib64/python2.7/profile.pyttrace_dispatch_c_call+s   cCsU||jdk r\||jdjksBtd|jdf��|j|jdd�n|j\}}}}}}||}||}|\} }
} } }
}| |
|| || |
|f|_|j}||\}}}}}|s||}|d}n| |kr&|| d|| <n
d|| <||d||||f||<dS(Ni����s
Bad returni����ii(RRBRER:R(R/R5RR;R<R=R>R@t frame_totaltppttpittpettpfntpframetpcurRRLRMRNRORP((s/usr/lib64/python2.7/profile.pyR:6s$/

# 

 
!tcallt exceptiontreturnR2t c_exceptiontc_returncCs+|jdrdS||_|j|�dS(Ni����(RRR.(R/R((s/usr/lib64/python2.7/profile.pytset_cmdls
 t fake_codecBseZd�Zd�ZRS(cCs(||_||_||_d|_dS(Ni(RGtco_lineRIRH(R/R
tlinetname((s/usr/lib64/python2.7/profile.pyR1rs   cCst|j|j|jf�S(N(treprRGRaRI(R/((s/usr/lib64/python2.7/profile.pyt__repr__xs(R3t
__module__R1Re(((s/usr/lib64/python2.7/profile.pyR`qs RDcBseZd�ZRS(cCs||_||_dS(N(RFRB(R/tcodetprior((s/usr/lib64/python2.7/profile.pyR1|s (R3RfR1(((s/usr/lib64/python2.7/profile.pyRD{scCsa|jdd|�}|jr.|jd}nd}|j||�}|jd||d�dS(Ntprofileii����RZ(R`RRRDR4(R/RcRgRXR5((s/usr/lib64/python2.7/profile.pyR.�s  cCse|j}|�|j}x5|jdrP|jd||jd|�d}qW|�||_dS(Ni����R\i����i(R&RRR4(R/R&R((s/usr/lib64/python2.7/profile.pytsimulate_cmd_complete�s  
i����cCs2ddl}|j|�j�j|�j�dS(Ni����(tpstatstStatst
strip_dirst
sort_statsR(R/R Rk((s/usr/lib64/python2.7/profile.pyR�s cCs:t|d�}|j�tj|j|�|j�dS(Ntwb(topent create_statstmarshaltdumptstatstclose(R/tfiletf((s/usr/lib64/python2.7/profile.pyR�s
cCs|j�|j�dS(N(Rjtsnapshot_stats(R/((s/usr/lib64/python2.7/profile.pyRq�s
c Cs�i|_x{|jj�D]j\}\}}}}}|j�}d}x|j�D]}||7}qSW|||||f|j|<qWdS(Ni(RtRt iteritemstcopyt
itervalues( R/tfuncRLRMRNRORPtnctcallcnt((s/usr/lib64/python2.7/profile.pyRx�s + cCs(ddl}|j}|j|||�S(Ni����(t__main__t__dict__R(R/RRtdict((s/usr/lib64/python2.7/profile.pyR�s  cBs@|j|�ej|j�z|||UWdejd�X|S(N(R_tsyst
setprofileR%R(R/RR
R((s/usr/lib64/python2.7/profile.pyR�s 
cOsI|jt|��tj|j�z|||�SWdtjd�XdS(N(R_RdR�R�R%R(R/R|targstkw((s/usr/lib64/python2.7/profile.pytruncall�s
cCsU|jtk rtd��n|j}d|_z|j||�SWd||_XdS(Ns&Subclasses must override .calibrate().i(t __class__RR,R!t_calibrate_inner(R/tmtverboset
saved_bias((s/usr/lib64/python2.7/profile.pyt calibrate�s  cCs}|j}d�}|d�}||�|�}||�|�}||}|r`dG|GHnt�} |�}| jdt�t��|�}||}
|r�dG|
GHnd} d} xX| jj�D]G\\}
}}\}}}}}|dkr�| |7} | |7} q�q�W|r2d G| GHd
G| GHn| |d krUtd | ��n| |d
| }|rydG|GHn|S(NcSs!xt|�D] }d}q
WdS(Ni(trange(tntitx((s/usr/lib64/python2.7/profile.pytf1scSs%xt|�D]}|d�q
WdS(Nid(R�(R�R�R�((s/usr/lib64/python2.7/profile.pyRw ss elapsed time without profiling =sf(m)selapsed time with profiling =gRwR�s!'CPU seconds' profiler reported =stotal # calls =is internal error: total calls = %dg@s+mean stopwatch overhead per profile event =(RwR�(R&RRR
RRtitemst
ValueError(R/R�R�R&R�Rwtt0tt1telapsed_noprofiletptelapsed_profilet total_callst
reported_timeR
RbtfuncnameRLRMRNRORPtmean((s/usr/lib64/python2.7/profile.pyR��sB   
 
 
    
 1 
   N(((R3Rft__doc__R!RR1R$R)R9R-RARQRRR:R4R_R`RDR.RjRRRqRxRRR�R�R�(((s/usr/lib64/python2.7/profile.pyRos@%3       &


   

1 cGs dGHdS(Ns7Report generating functions are in the "pstats" module((R�((s/usr/lib64/python2.7/profile.pyRl=sc CsXd}td|�}t|_|jddddddd d�|jd
d dd dd
d d�tjds�|j�tjd�n|j �\}}|tj(t
|�dkrJ|d}tj j dt
j j|��t|d��}t|j�|d�}WdQXi|d6dd6dd6}t||d|j|j�n
|j�|S(Ns?profile.py [-o output_file_path] [-s sort] scriptfile [arg] ...tusages-os --outfiletdesttoutfileRsSave stats to <outfile>tdefaults-ss--sortR s?Sort order when printing to stdout, based on pstats.Stats classi����iiitrbtexect__file__RR3t __package__(RtFalsetallow_interspersed_argst
add_optionRR�targvt print_usagetexitt
parse_argsR+tpathtinsertR*tdirnameRptcompiletreadRR�R (R�tparsertoptionsR�tprognametfpRgtglobs((s/usr/lib64/python2.7/profile.pytmain@s2 






R(R�R�R*R(RrtoptparseRt__all__RRRRR'RRR"RR#Rt ImportErrorRRlR�R3(((s/usr/lib64/python2.7/profile.pyt<module> s2        

��  !