2007-09-20 18:09:08 -04:00
|
|
|
! Copyright (C) 2007 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: ui.tools.workspace kernel quotations tools.profiler
|
|
|
|
ui.commands ui.gadgets ui.gadgets.panes ui.gadgets.scrollers
|
2008-11-28 01:02:02 -05:00
|
|
|
ui.gadgets.tracks ui.gestures ui.gadgets.buttons accessors fry ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: ui.tools.profiler
|
|
|
|
|
2008-07-11 01:01:22 -04:00
|
|
|
TUPLE: profiler-gadget < track pane ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: <profiler-gadget> ( -- gadget )
|
2008-09-27 15:36:04 -04:00
|
|
|
{ 0 1 } profiler-gadget new-track
|
2008-11-20 22:58:30 -05:00
|
|
|
add-toolbar
|
2008-09-27 15:36:04 -04:00
|
|
|
<pane> >>pane
|
|
|
|
dup pane>> <scroller> 1 track-add ;
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
: with-profiler-pane ( gadget quot -- )
|
2008-11-28 01:02:02 -05:00
|
|
|
[ pane>> ] dip with-pane ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: com-full-profile ( gadget -- )
|
|
|
|
[ profile. ] with-profiler-pane ;
|
|
|
|
|
|
|
|
: com-vocabs-profile ( gadget -- )
|
|
|
|
[ vocabs-profile. ] with-profiler-pane ;
|
|
|
|
|
2008-02-16 16:54:53 -05:00
|
|
|
: com-method-profile ( gadget -- )
|
|
|
|
[ method-profile. ] with-profiler-pane ;
|
|
|
|
|
2008-06-08 16:32:55 -04:00
|
|
|
: profiler-help ( -- ) "ui-profiler" help-window ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
\ profiler-help H{ { +nullary+ t } } define-command
|
|
|
|
|
|
|
|
profiler-gadget "toolbar" f {
|
|
|
|
{ f com-full-profile }
|
|
|
|
{ f com-vocabs-profile }
|
2008-02-16 16:54:53 -05:00
|
|
|
{ f com-method-profile }
|
2007-09-20 18:09:08 -04:00
|
|
|
{ T{ key-down f f "F1" } profiler-help }
|
|
|
|
} define-command-map
|
|
|
|
|
|
|
|
GENERIC: profiler-presentation ( obj -- quot )
|
|
|
|
|
|
|
|
M: usage-profile profiler-presentation
|
2008-11-28 01:02:02 -05:00
|
|
|
word>> '[ _ usage-profile. ] ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
M: vocab-profile profiler-presentation
|
2008-11-28 01:02:02 -05:00
|
|
|
vocab>> '[ _ vocab-profile. ] ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
M: f profiler-presentation
|
|
|
|
drop [ vocabs-profile. ] ;
|
|
|
|
|
|
|
|
M: profiler-gadget call-tool* ( obj gadget -- )
|
|
|
|
swap profiler-presentation with-profiler-pane ;
|