Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
b44edcd0
Commit
b44edcd0
authored
4 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[ivette] Globals: adds filters to the list of functions.
parent
4eb0d03e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ivette/src/renderer/Globals.tsx
+78
-7
78 additions, 7 deletions
ivette/src/renderer/Globals.tsx
with
78 additions
and
7 deletions
ivette/src/renderer/Globals.tsx
+
78
−
7
View file @
b44edcd0
...
...
@@ -7,6 +7,22 @@ import { Section, Item } from 'dome/frame/sidebars';
import
*
as
States
from
'
frama-c/states
'
;
import
{
alpha
}
from
'
dome/data/compare
'
;
import
{
functions
,
functionsData
}
from
'
frama-c/api/kernel/ast
'
;
import
{
isComputed
}
from
'
frama-c/api/plugins/eva/general
'
;
import
*
as
Dome
from
'
dome
'
;
// --------------------------------------------------------------------------
// --- Filters
// --------------------------------------------------------------------------
const
defaultFilter
=
{
stdlib
:
false
,
// Show functions from the Frama-C stdlib
builtin
:
false
,
// Show Frama-C builtins
undef
:
true
,
// Show undefined functions
eva_only
:
false
,
// Only show functions analyzed by Eva
selected_only
:
false
,
// Only show functions from a multiple selection
};
// --------------------------------------------------------------------------
// --- Globals Section
...
...
@@ -19,25 +35,80 @@ export default () => {
const
fcts
=
States
.
useSyncArray
(
functions
).
getArray
().
sort
(
(
f
,
g
)
=>
alpha
(
f
.
name
,
g
.
name
),
);
const
[
filter
,
setFilter
]
=
React
.
useState
(
defaultFilter
);
const
multipleSelection
=
selection
?.
multiple
;
const
multipleSelectionActive
=
multipleSelection
?.
allSelections
.
length
>
0
;
const
evaComputed
=
States
.
useRequest
(
isComputed
,
null
);
function
isSelected
(
fct
:
functionsData
)
{
return
multipleSelection
?.
allSelections
.
some
(
(
l
)
=>
fct
.
name
===
l
?.
function
);
}
function
showFunction
(
fct
:
functionsData
)
{
const
visible
=
(
filter
.
stdlib
||
!
fct
.
stdlib
)
&&
(
filter
.
builtin
||
!
fct
.
builtin
)
&&
(
filter
.
undef
||
fct
.
defined
)
&&
(
!
filter
.
eva_only
||
!
evaComputed
||
(
fct
.
eva_analyzed
===
true
))
&&
(
!
filter
.
selected_only
||
!
multipleSelectionActive
||
isSelected
(
fct
));
return
visible
;
}
async
function
onContextMenu
()
{
const
items
:
Dome
.
PopupMenuItem
[]
=
[];
items
.
push
({
label
:
'
Show Frama-C builtins
'
,
checked
:
filter
.
builtin
,
onClick
:
()
=>
setFilter
({
...
filter
,
builtin
:
!
filter
.
builtin
}),
});
items
.
push
({
label
:
'
Show stdlib functions
'
,
checked
:
filter
.
stdlib
,
onClick
:
()
=>
setFilter
({
...
filter
,
stdlib
:
!
filter
.
stdlib
}),
});
items
.
push
({
label
:
'
Show undefined functions
'
,
checked
:
filter
.
undef
,
onClick
:
()
=>
setFilter
({
...
filter
,
undef
:
!
filter
.
undef
}),
});
items
.
push
(
'
separator
'
);
items
.
push
({
label
:
'
Selected only
'
,
enabled
:
multipleSelectionActive
,
checked
:
filter
.
selected_only
,
onClick
:
()
=>
{
setFilter
({
...
filter
,
selected_only
:
!
filter
.
selected_only
});
},
});
items
.
push
({
label
:
'
Analyzed by Eva only
'
,
enabled
:
evaComputed
,
checked
:
filter
.
eva_only
,
onClick
:
()
=>
setFilter
({
...
filter
,
eva_only
:
!
filter
.
eva_only
}),
});
Dome
.
popupMenu
(
items
);
}
// Items
const
current
:
undefined
|
string
=
selection
?.
current
?.
function
;
const
makeFctItem
=
(
fct
:
functionsData
)
=>
{
const
kf
=
fct
.
name
;
const
{
name
}
=
fct
;
return
(
<
Item
key
=
{
kf
}
label
=
{
kf
}
key
=
{
name
}
label
=
{
name
}
title
=
{
fct
.
signature
}
selected
=
{
kf
===
current
}
onSelection
=
{
()
=>
updateSelection
({
location
:
{
function
:
kf
}
})
}
selected
=
{
name
===
current
}
onSelection
=
{
()
=>
updateSelection
({
location
:
{
function
:
name
}
})
}
/>
);
};
return
(
<
Section
label
=
"Functions"
defaultUnfold
>
{
fcts
.
map
(
makeFctItem
)
}
<
Section
label
=
"Functions"
onContextMenu
=
{
onContextMenu
}
defaultUnfold
>
{
fcts
.
filter
(
showFunction
).
map
(
makeFctItem
)
}
</
Section
>
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment