Skip to content
Snippets Groups Projects
Commit da3b48be authored by David Bühler's avatar David Bühler Committed by Maxime Jacquemin
Browse files

[ivette] Studia can be applied on arbitrary lvalues via a dedicated search mode.

parent f6f0637c
No related branches found
No related tags found
No related merge requests found
...@@ -88,6 +88,8 @@ ...@@ -88,6 +88,8 @@
--meter-subopti: linear-gradient(to bottom, #770 0%, #cc0 20%, #770 100%); --meter-subopti: linear-gradient(to bottom, #770 0%, #cc0 20%, #770 100%);
--meter-evenless: linear-gradient(to bottom, #710 0%, #c50 20%, #710 100%); --meter-evenless: linear-gradient(to bottom, #710 0%, #c50 20%, #710 100%);
--studia-search-mode: #c2c71e;
--eva-evaluation-mode: #714074; --eva-evaluation-mode: #714074;
--eva-state-before: #082032; --eva-state-before: #082032;
--eva-state-after: #321428; --eva-state-after: #321428;
......
...@@ -88,6 +88,8 @@ ...@@ -88,6 +88,8 @@
--meter-subopti: linear-gradient(to bottom, #aa0 0%, #ff0 20%, #aa0 100%); --meter-subopti: linear-gradient(to bottom, #aa0 0%, #ff0 20%, #aa0 100%);
--meter-evenless: linear-gradient(to bottom, #a40 0%, #f80 20%, #a40 100%); --meter-evenless: linear-gradient(to bottom, #a40 0%, #f80 20%, #a40 100%);
--studia-search-mode: #c5dc19;
--eva-evaluation-mode: #dc8fe1; --eva-evaluation-mode: #dc8fe1;
--eva-state-before: #95f5ff; --eva-state-before: #95f5ff;
--eva-state-after: #fff819; --eva-state-after: #fff819;
......
...@@ -20,11 +20,21 @@ ...@@ -20,11 +20,21 @@
/* */ /* */
/* ************************************************************************ */ /* ************************************************************************ */
import React from 'react';
import * as Dome from 'dome'; import * as Dome from 'dome';
import * as States from 'frama-c/states'; import * as States from 'frama-c/states';
import * as Server from 'frama-c/server'; import * as Server from 'frama-c/server';
import * as Toolbars from 'dome/frame/toolbars';
import * as Status from 'frama-c/kernel/Status';
import * as Ast from 'frama-c/kernel/api/ast'; import * as Ast from 'frama-c/kernel/api/ast';
import { getWritesLval, getReadsLval } from 'frama-c/plugins/studia/api/studia'; import { getWritesLval, getReadsLval } from 'frama-c/plugins/studia/api/studia';
import { ipcRenderer } from 'electron';
import './style.css';
const studiaWritesEvent = new Dome.Event('dome.studia.writes');
const studiaReadsEvent = new Dome.Event('dome.studia.reads');
ipcRenderer.on('dome.ipc.studia.writes', () => studiaWritesEvent.emit());
ipcRenderer.on('dome.ipc.studia.reads', () => studiaReadsEvent.emit());
type access = 'Reads' | 'Writes'; type access = 'Reads' | 'Writes';
...@@ -68,3 +78,46 @@ export function buildMenu(props: MenuProps) : void { ...@@ -68,3 +78,46 @@ export function buildMenu(props: MenuProps) : void {
menu.push({ label: reads, enabled, onClick: () => onClick('Reads') }); menu.push({ label: reads, enabled, onClick: () => onClick('Reads') });
menu.push({ label: writes, enabled, onClick: () => onClick('Writes') }); menu.push({ label: writes, enabled, onClick: () => onClick('Writes') });
} }
export function useStudiaMode(): void {
const [selection, setSelection] = States.useSelection();
async function handleError(err: string): Promise<void> {
const msg = `Studia failure: ${err}.`;
Status.setMessage({ text: msg, kind: 'error' });
}
async function onEnter(label: string, kind: access): Promise<void> {
const stmt = selection?.current?.marker;
const data = { stmt, term: label };
const marker = await Server.send(Ast.parseLval, data).catch(handleError);
if (!marker) return;
compute(marker, label, kind).then(setSelection).catch(handleError);
}
const shared = {
placeholder: "lvalue",
icon: 'EDIT',
className: 'studia-search-mode',
hints: () => { return Promise.resolve([]); },
};
const writesMode = {
...shared,
label: 'Studia: select writes',
title: `Select all statements writing the given lvalue`,
onEnter: (pattern:string) => onEnter(pattern, "Writes"),
event: studiaWritesEvent,
};
const readsMode = {
...shared,
label: 'Studia: select reads',
title: `Selects all statements reading the given lvalue`,
onEnter: (pattern:string) => onEnter(pattern, "Reads"),
event: studiaReadsEvent,
};
React.useEffect(() => {
Toolbars.RegisterMode.emit(writesMode);
Toolbars.RegisterMode.emit(readsMode);
return () => {
Toolbars.UnregisterMode.emit(writesMode);
Toolbars.UnregisterMode.emit(readsMode);
};
});
}
.studia-search-mode {
background: var(--studia-search-mode);
fill: var(--text-discrete);
}
...@@ -36,6 +36,7 @@ import * as Controller from './Controller'; ...@@ -36,6 +36,7 @@ import * as Controller from './Controller';
import * as Extensions from './Extensions'; import * as Extensions from './Extensions';
import * as Laboratory from './Laboratory'; import * as Laboratory from './Laboratory';
import * as IvettePrefs from 'ivette/prefs'; import * as IvettePrefs from 'ivette/prefs';
import * as Studia from 'frama-c/plugins/studia/studia';
import './loader'; import './loader';
import './sandbox'; import './sandbox';
...@@ -49,6 +50,8 @@ export default function Application(): JSX.Element { ...@@ -49,6 +50,8 @@ export default function Application(): JSX.Element {
const [viewbar, flipViewbar] = const [viewbar, flipViewbar] =
Dome.useFlipSettings('frama-c.viewbar.unfold', true); Dome.useFlipSettings('frama-c.viewbar.unfold', true);
Studia.useStudiaMode();
return ( return (
<Vfill> <Vfill>
<Toolbar.ToolBar> <Toolbar.ToolBar>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment