Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F982700
PhabricatorXHProfProfileSymbolView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
PhabricatorXHProfProfileSymbolView.php
View Options
<?php
/*
* Copyright 2011 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
class
PhabricatorXHProfProfileSymbolView
extends
AphrontView
{
private
$profileData
;
private
$baseURI
;
private
$symbol
;
public
function
setProfileData
(
array
$data
)
{
$this
->
profileData
=
$data
;
return
$this
;
}
public
function
setBaseURI
(
$uri
)
{
$this
->
baseURI
=
$uri
;
return
$this
;
}
public
function
setSymbol
(
$symbol
)
{
$this
->
symbol
=
$symbol
;
return
$this
;
}
public
function
render
()
{
DarkConsoleXHProfPluginAPI
::
includeXHProfLib
();
$data
=
$this
->
profileData
;
$GLOBALS
[
'display_calls'
]
=
true
;
$totals
=
array
();
$flat
=
xhprof_compute_flat_info
(
$data
,
$totals
);
unset
(
$GLOBALS
[
'display_calls'
]);
$symbol
=
$this
->
symbol
;
$children
=
array
();
$parents
=
array
();
foreach
(
$this
->
profileData
as
$key
=>
$counters
)
{
if
(
strpos
(
$key
,
'==>'
)
!==
false
)
{
list
(
$parent
,
$child
)
=
explode
(
'==>'
,
$key
,
2
);
}
else
{
continue
;
}
if
(
$parent
==
$symbol
)
{
$children
[
$key
]
=
$child
;
}
else
if
(
$child
==
$symbol
)
{
$parents
[
$key
]
=
$parent
;
}
}
$base_uri
=
$this
->
baseURI
;
$rows
=
array
();
$rows
[]
=
array
(
'Metrics for this Call'
,
''
,
''
,
''
,
''
,
''
,
);
$rows
[]
=
array
(
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$base_uri
.
'?symbol='
.
$symbol
,
),
phutil_escape_html
(
$symbol
)),
$flat
[
$symbol
][
'ct'
],
$flat
[
$symbol
][
'wt'
],
''
,
$flat
[
$symbol
][
'excl_wt'
],
''
,
);
$rows
[]
=
array
(
'Parent Calls'
,
''
,
''
,
''
,
''
,
''
,
);
foreach
(
$parents
as
$key
=>
$name
)
{
$rows
[]
=
array
(
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$base_uri
.
'?symbol='
.
$name
,
),
phutil_escape_html
(
$name
)),
$data
[
$key
][
'ct'
],
$data
[
$key
][
'wt'
],
''
,
$data
[
$key
][
'wt'
],
''
,
);
}
$rows
[]
=
array
(
'Child Calls'
,
''
,
''
,
''
,
''
,
''
,
);
foreach
(
$children
as
$key
=>
$name
)
{
$rows
[]
=
array
(
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$base_uri
.
'?symbol='
.
$name
,
),
phutil_escape_html
(
$name
)),
$data
[
$key
][
'ct'
],
$data
[
$key
][
'wt'
],
''
,
$data
[
$key
][
'wt'
],
''
,
);
}
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setHeaders
(
array
(
'Symbol'
,
'Count'
,
'Incl Wall Time'
,
'%'
,
'Excl Wall Time'
,
'%'
,
));
$table
->
setColumnClasses
(
array
(
'wide pri'
,
'n'
,
'n'
,
'n'
,
'n'
,
'n'
,
));
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
'XHProf Profile'
);
$panel
->
appendChild
(
$table
);
return
$panel
->
render
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 1:55 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
236448
Default Alt Text
PhabricatorXHProfProfileSymbolView.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment