/usr/share/gps/plug-ins/modeling.py is in gnat-gps-common 6.1.2016-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 | """
This plug-in adds support for QGen (the GNAT Modeling Compiler) which generates
Ada (SPARK 2014?) and C code from Simulink models.
To use this plugin, you must have "mdl2json" available on your
PATH. Your project must also add the "Simulink" language to its
Languages attribute. At this point, opening an .mdl file will
show a diagram instead of showing the text of the .mdl file.
Double-click on a system block to open it and see other diagrams.
The project can optionally include an output directory for the
generated code:
package QGen is
for Output_Dir use "generated_src";
end QGen;
The project can also be used to override the types file used when
generating code. The default is to use a file with the same name
as the .mdl, but with extension _types.txt. If some other file is
needed, you can use:
package QGen is
for Switches ("myfile.mdl") use ("-t", "mytypes.txt");
end QGen;
A contextual menu is provided when you right-click on an .mdl file,
to generate code from that file. This menu is available in particular
in the project view and in the diagrams themselves.
Whenever qgen has finished running, GPS will automatically reload the
project to make the newly generated files available.
"""
import json
import GPS
import GPS.Browsers
import glob
import gps_utils
import gpsbrowsers
import modules
import os
import os.path
import os_utils
import re
from workflows.promises import Promise, ProcessWrapper
logger = GPS.Logger('MODELING')
class Project_Support(object):
"""
This class provides an interface to the project facilities, to be
used by QGen.
"""
def register_languages(self):
"""Add support for the Simulink language"""
GPS.parse_xml("""<?xml version='1.0' ?>
<GPS>
<Language>
<Name>Simulink</Name>
<Body_Suffix>.mdl</Body_Suffix>
<Obj_Suffix>-</Obj_Suffix>
</Language>
<Language>
<Name>Simulink_Json</Name>
<Body_Suffix>.mdl.json</Body_Suffix>
<Obj_Suffix>-</Obj_Suffix>
</Language>
</GPS>""")
def register_tool(self):
"""Register the QGENC tool and its switches"""
GPS.parse_xml("""<?xml version='1.0' ?>
<GPS>
<project_attribute
package="QGen"
name="Output_Dir"
editor_page="QGen"
label="Output directory"
description="The location of all generated source code files"
hide_in="wizard library_wizard">
<string type="directory"/>
</project_attribute>
<project_attribute
package="QGen"
name="Switches"
editor_page="QGen"
list="true"
label="Switches"
hide_in="wizard library_wizard">
<index attribute='Languages'>
<string />
</index>
</project_attribute>
<target-model name="QGenc" category="">
<description>Generic launch of QGen</description>
<iconname>gps-build-all-symbolic</iconname>
<switches>
</switches>
</target-model>
<target model="QGenc" category="_File_" name="QGen for file">
<in-toolbar>FALSE</in-toolbar>
<in-menu>FALSE</in-menu>
<launch-mode>MANUALLY_WITH_NO_DIALOG</launch-mode>
<read-only>TRUE</read-only>
<command-line>
<arg>qgenc</arg>
<arg>%(option_incremental)s</arg>
<arg>%(option_language)s</arg>
<arg>ada</arg>
</command-line>
</target>
<tool
name="QGENC"
package="QGen"
index="Simulink">
<language>Simulink</language>
<switches>
<title line="1">Files</title>
<title line="2">Generation</title>
<title line="3">Output</title>
<field
line="1"
label="Matlab file"
switch="%(option_matlab)s"
separator=" "
as-file="true"
tip="Provides variable declarations of the Matlab workspace"/>
<field
line="1"
label="Typing file"
switch="%(option_typing)s"
separator=" "
as-file="true"
tip="Provides Simulink block typing information"/>
<field
line="1"
label="Library directory"
switch="%(option_library)s"
separator=" "
as-directory="true"
tip=""/>
<combo
line="2"
label="Target language"
switch="%(option_language)s"
separator=" "
tip="The language used by QGENC to produce the generated files">
<combo-entry label="Ada" value="ada"/>
<combo-entry label="C" value="c"/>
</combo>
<check
line="2"
label="Flatten model"
switch="%(option_flatten)s"
tip=""/>
<radio line="3">
<radio-entry
label="Delete"
switch="%(option_clean)s"
tip="Delete contents of output directory between compilations"/>
<radio-entry
label="Preserve"
switch="%(option_incremental)s"
tip="Preserve contents of output directory between compilations"/>
</radio>
</switches>
</tool>
</GPS>""" % {
"option_clean": CLI.OPTION_CLEAN,
"option_flatten": CLI.OPTION_FLATTEN,
"option_incremental": CLI.OPTION_INCREMENTAL,
"option_language": CLI.OPTION_LANGUAGE,
"option_library": CLI.OPTION_LIBRARY,
"option_matlab": CLI.OPTION_MATLAB,
"option_typing": CLI.OPTION_TYPING
})
def get_output_dir(self, file):
"""
Return the output directory to use when generating code for file.
It default to the project's object directory.
:param GPS.File file: the .mdl file
"""
dir = file.project().get_attribute_as_string(
package='QGen', attribute='Output_Dir')
if not dir:
try:
return file.project().object_dirs()[0]
except:
return GPS.Project.root().object_dirs()[0]
return dir
def get_switches(self, file):
"""
Return the wswitches to use for a specific file
:param GPS.File file: the .mdl file
:return str: the list of switches
"""
try:
switches = file.project().get_attribute_as_string(
attribute='Switches', package='QGen',
index=os.path.basename(file.name()))
if not switches:
switches = file.project().get_attribute_as_string(
attribute='Switches', package='QGen',
index='simulink')
except:
switches = ''
return switches
class CLI(GPS.Process):
"""
An interface to the mdl2json executable. This is responsible for
converting an mdl file to a JSON format that can be displayed by GPS.
"""
mdl2json = os_utils.locate_exec_on_path('mdl2json')
# path to mdl2json
qgenc = os_utils.locate_exec_on_path('qgenc')
# path to qgenc
OPTION_CLEAN = "-c"
OPTION_FLATTEN = "--full-flattening"
OPTION_INCREMENTAL = "-i"
OPTION_LANGUAGE = "-l"
OPTION_LIBRARY = "-b"
OPTION_MATLAB = "-m"
OPTION_OUTPUT = "-o"
OPTION_TYPING = "-t"
OPTION_DEBUG = "--debug"
# The names of various QGENC and CLI options
@staticmethod
def is_available():
"""
Whether mdl2json is available on the system.
"""
# Testing None or empty string
if CLI.mdl2json:
return True
else:
return False
@staticmethod
def get_json(file):
"""
Compute the JSON to display the given .mdl file
:param GPS.File file: the .mdl file to analyze
:return: a promise, that passes the full output of the process
when resolved
"""
promise = Promise()
# Get switches, but remove the ones that do not apply to mdl2json
switches = re.sub(
CLI.OPTION_FLATTEN, "", project_support.get_switches(file))
outdir = project_support.get_output_dir(file)
# ??? Should output result on stdout
cmd = ' '.join(
[CLI.mdl2json,
file.name(),
switches])
def __on_exit(proc, exit_status, output):
if exit_status == 0:
promise.resolve(output)
else:
GPS.Console().write('When running mdl2json: %s\n' % (
output), mode='error')
# mdl2json is relatively fast, and since the user is waiting for
# its output to see the diagram, we run in active mode below.
GPS.Process(command=cmd, on_exit=__on_exit, active=True)
return promise
###########
# Compiling models
###########
@staticmethod
def is_model_file(ctx):
"""
Whether the current context is a model file.
:param GPS.Context ctx:
"""
try:
return ctx.file().language() == 'simulink'
except:
return False
@staticmethod
def is_model_block_and_debugger(ctx):
"""
Whether the current context is a model block.
"""
try:
debug = GPS.Debugger.get()
return (
debug is not None # in a debugger
and hasattr(ctx, "modeling_item") # see on_create_context
and CLI.is_model_file(ctx))
except:
return False
@staticmethod
def __compile_file_to_source_code(file, on_exit=None):
"""
Generate code for a specific source file
:param GPS.File file:
:param func on_exit: called when the code generation finishes
"""
# Compute the extra switches. The user can override -t, for instance,
# by setting the project attribute Switches("file.mdl") with a
# proper version of -t.
switches = [
CLI.OPTION_OUTPUT,
project_support.get_output_dir(file),
CLI.OPTION_TYPING,
"%s_types.txt" % os.path.splitext(
os.path.basename(file.name()))[0]]
switches = (' '.join(switches) +
' ' + project_support.get_switches(file) +
' ' + file.name())
target = GPS.BuildTarget('QGen for file')
target.execute(
synchronous=False,
file=file,
extra_args=switches,
on_exit=on_exit)
@staticmethod
def compile_context_to_source_code():
"""
Generate code from the model file from the current context.
This function should only be called when is_model_file returns
True.
"""
ctxt = GPS.contextual_context() or GPS.current_context()
# On exit, recompute the project to include generated sources
def on_exit(status):
if not status:
GPS.Project.recompute()
CLI.__compile_file_to_source_code(
file=ctxt.file(),
on_exit=on_exit)
@staticmethod
def compile_project_to_source_code():
"""
Generate code for all simulink files in the project
"""
# ??? qgenc should allow multipe files on the command line
def all_simulink_files():
for s in GPS.Project.root().sources(recursive=True):
if s.language() == 'simulink':
yield s
all_files = all_simulink_files()
def on_exit(status):
try:
next_file = next(all_files)
CLI.__compile_file_to_source_code(next_file, on_exit=on_exit)
except:
# no more files
GPS.Project.recompute()
on_exit(0) # start processing the files
class QGEN_Diagram(gpsbrowsers.JSON_Diagram):
def on_selection_changed(self, item, *args):
"""React to a change in selection of an item."""
pass
class QGEN_Diagram_Viewer(GPS.Browsers.View):
"""
A Simulink diagram viewer. It might be associated with several
diagrams, which are used as the user opens blocks.
"""
file = None # The associated .mdl file
diags = None # The list of diagrams read from this file
def __init(self):
self.__events = {}
super(QGEN_Diagram_Viewer, self).__init__()
@staticmethod
def __get_or_create_view(file):
"""
Get an existing viewer for file, or create a new empty view.
:return: (view, newly_created)
"""
for win in GPS.MDI.children():
if hasattr(win, '_gmc_viewer'):
v = win._gmc_viewer
if v.file == file:
win.raise_window()
return (v, False)
v = QGEN_Diagram_Viewer()
v.file = file
v.diags = None # a gpsbrowsers.JSON_Diagram_File
v.create(
diagram=GPS.Browsers.Diagram(), # a temporary diagram
title=os.path.basename(file.name()),
save_desktop=v.save_desktop)
v.set_read_only(True)
c = GPS.MDI.get_by_child(v)
c._gmc_viewer = v
return (v, True)
@staticmethod
def get_or_create(file, on_loaded=None):
"""
Get an existing diagram for the file, or create a new one.
The actual diagrams are loaded asynchronously, so might not be
available as soon as the instance is constructed. They are however
automatically loaded in the view as soon as possible.
:param GPS.File file: the file to display
:param callable on_loaded: called when the diagram is loaded, or
immediately if the diagram was already loaded. The funtion
receives a single parameter, which is the viewer itself.
:return QGEN_Diagram_Viewer: the viewer.
It might not contain any diagram yet, since those are read
asynchronously.
"""
v, newly_created = QGEN_Diagram_Viewer.__get_or_create_view(file)
if newly_created:
def __on_json(json):
v.diags = GPS.Browsers.Diagram.load_json_data(
json, diagramFactory=QGEN_Diagram)
if v.diags:
v.diagram = v.diags.get()
if on_loaded:
on_loaded(v)
CLI.get_json(file).then(__on_json)
else:
if on_loaded:
on_loaded(v)
return v
@staticmethod
def open_json(file, data):
"""
Open an existing JSON file that contains a Simulink diagram.
:param GPS.File file: the file associated with the JSON data,
so that we do not open multiple viewers for the same file.
:param data: the actual json data to display.
"""
v, newly_created = QGEN_Diagram_Viewer.__get_or_create_view(file)
if newly_created:
v.diags = GPS.Browsers.Diagram.load_json_data(
data, diagramFactory=QGEN_Diagram)
if v.diags:
v.diagram = v.diags.get()
return v
def save_desktop(self, child):
"""Save the contents of the viewer in the desktop"""
info = {
'file': self.file.name(),
'scale': self.scale,
'topleft': self.topleft}
return (module.name(), json.dumps(info))
def perform_action(self, action, item):
"""
Perform the action described by the parameter.
:param str action: an action described in the JSON file, to be
executed when the user interacts with an item. The list of
valid actions is documented in the code below.
"""
# Split the command into its name and arguments
(name, args) = action.split('(', 1)
if args and args[-1] != ')':
GPS.Console().write(
"Invalid command: %s (missing closing parenthesis)\n" % (
action, ))
return
args = args[:-1].split(',') # ??? fails if arguments contain nested ,
for idx, a in enumerate(args):
if a[0] in ('"', "'") and a[-1] == a[0]:
args[idx] = a[1:-1]
elif a.isdigit():
args[idx] = int(a)
else:
GPS.Console().write("Invalid command: %s\n" % (action, ))
return
if name == 'showdiagram':
self.diagram = self.diags.get(args[0])
# @overriding
def on_item_double_clicked(self, topitem, item, x, y, *args):
"""
Called when the user double clicks on an item.
"""
action = topitem.data.get('dblclick')
if action:
self.perform_action(action, topitem)
# @overriding
def on_create_context(self, context, topitem, item, x, y, *args):
"""
Called when the user right-clicks in an item.
"""
context.set_file(self.file)
context.modeling_item = item
context.modeling_topitem = topitem
class Mapping_File(object):
"""
Support for the mapping file generated by qgen, which maps from source
lines to blocks, and back.
"""
def __init__(self, filename=None):
self.mapping = {"blocks": {}, "files": {}}
self.lines = dict() # filename -> {linenum -> [blocks]}
def load(self, filename):
"""
Load a mapping file from the disk
"""
self.load_from_json(json.load(open(filename)))
def load_from_json(self, json):
"""
Load a mapping from existing JSON data
"""
self.lines = dict()
self.mapping = json
for block_name, files in self.mapping['blocks'].iteritems():
for file, pos in files.iteritems():
pos = list(pos) # copy
lines = self.lines.setdefault(file, {})
while pos:
start = pos.pop(0)
end = pos.pop(0)
for line in range(start, end + 1):
blocks = lines.setdefault(line, [])
blocks.append(block_name)
def get_breakpoints(self, block_name):
"""
Returns the (filename, line) tuples on which we should set or
remove breakpoints, for a given block.
"""
result = []
files = self.mapping['blocks'].get(block_name, {})
for file, pos in files.iteritems():
# get pos[0], pos[2], ... i.e. the start line of each range
result.extend((file, p) for p in pos[::2])
return result
def get_blocks(self, filename, line):
"""
The list of block names corresponding to a given source line
"""
return self.lines.get(os.path.basename(filename), {}).get(line, [])
def get_mdl_file(self, filename):
"""
Return the name of the MDL file used to generate the given file
"""
return self.mapping['files'].get(os.path.basename(filename))
def create_mapping(self):
"""
Create the mapping from source to block by parsing the sources.
"""
block_start = re.compile('-- Block (?P<block_name>.*)$')
block_end = re.compile('-- End Block (?P<block_name>.*)$')
result = dict(blocks=dict(),
files={ # ??? Hard-coded for now
'controller4.adb': 'Controller4.mdl',
'controller4.ads': 'Controller4.mdl',
'derivator.adb': 'Controller4.mdl',
'derivator.ads': 'Controller4.mdl',
'filter2.adb': 'Filter2.mdl',
'filter2.ads': 'Filter2.mdl',
'pid.adb': 'Controller4.mdl',
'pid.ads': 'Controller4.mdl'})
def register(block_name, filename, start_line, end_line):
name = os.path.basename(filename)
for_file = result['blocks'].setdefault(block_name, {})
if name in for_file:
for_file[name].extend([start_line, end_line])
else:
for_file[name] = [start_line, end_line]
def parse_adb(filename):
blocks = dict()
# Current block: 'block_name' => start line
with open(filename) as f:
for num, line in enumerate(f.readlines()):
g = block_start.search(line)
if g:
block_name = g.group('block_name')
if block_name not in blocks:
blocks[block_name] = num + 1
else:
g = block_end.search(line)
if g:
block_name = g.group('block_name')
if block_name in blocks:
# Do not include the comment lines in the block
register(
block_name, filename,
blocks[block_name] + 1, num)
del blocks[block_name]
GPS.Console().write("Generating mapping file\n")
for f in GPS.Project.root().sources(recursive=True):
if f.name().endswith('.adb'):
parse_adb(f.name())
self.load_from_json(result)
project_support = Project_Support()
project_support.register_languages() # available before project is loaded
if not CLI.is_available():
logger.log('mdl2json not found on the PATH')
else:
project_support.register_tool()
class QGEN_Debugger_Support(object):
"""
Support for interaction with the debugger.
"""
@staticmethod
@gps_utils.hook('debugger_executable_changed')
def __on_debugger_executable_changed(debugger):
debugger._modeling_map = Mapping_File()
debugger._modeling_map.create_mapping()
@staticmethod
@gps_utils.hook('debugger_process_stopped')
def __on_debugger_process_stopped(debugger):
ed = GPS.EditorBuffer.get(open=False)
if ed and hasattr(debugger, '_modeling_map'):
view = ed.current_view()
filename = ed.file().name()
blocks = debugger._modeling_map.get_blocks(
filename, view.cursor().line())
mdl = debugger._modeling_map.get_mdl_file(filename)
if mdl:
def __on_loaded(viewer):
"""
The diagrams have been loaded from the MDL file
"""
assert isinstance(viewer, QGEN_Diagram_Viewer)
# Unselect items from the previous step
# ??? Should do the same for all open viewers
viewer.diags.clear_selection()
# Select the blocks corresponding to the current line
for block in blocks:
item = viewer.diags.get_diagram_for_item(block)
viewer.diagram = item[0]
viewer.diagram.select(item[1])
QGEN_Diagram_Viewer.get_or_create(
GPS.File(mdl), on_loaded=__on_loaded)
@staticmethod
def set_breakpoint():
"""
Set a breakpoint, in the current debugger, on the current block
"""
ctx = GPS.contextual_context() or GPS.current_context()
debug = GPS.Debugger.get()
if debug and hasattr(debug, "_modeling_map"):
it = ctx.modeling_item
while it and not hasattr(it, "id"):
it = it.parent
if it:
br = debug._modeling_map.get_breakpoints(it.id)
if br:
for b in br:
debug.send("break %s:%s" % (b[0], b[1]))
else:
GPS.Console().write("No breakpoint for '%s'\n" % it.id)
class QGEN_Module(modules.Module):
@staticmethod
@gps_utils.hook('open_file_action_hook', last=False)
def __on_open_file_action(file, *args):
if file.language() == 'simulink':
logger.log('Open %s' % file)
viewer = QGEN_Diagram_Viewer.get_or_create(file)
return True
if file.language() == 'simulink_json':
logger.log('Open %s' % file)
viewer = QGEN_Diagram_Viewer.open_json(
file, open(file.name()).read())
return True
return False
def load_desktop(self, data):
"""Restore the contents from the desktop"""
info = json.loads(data)
f = GPS.File(info['file'])
if f.name().endswith('.mdl'):
viewer = QGEN_Diagram_Viewer.get_or_create(f)
else:
viewer = QGEN_Diagram_Viewer.open_json(
f, open(f.name()).read())
viewer.scale = info['scale']
viewer.topleft = info['topleft']
return GPS.MDI.get_by_child(viewer)
def setup(self):
"""
Initialize the support for modeling in GPS.
This is only called when the necessary command line executables
are found.
"""
gps_utils.make_interactive(
name='compile model file',
filter=CLI.is_model_file,
contextual='Generate code for %f',
callback=CLI.compile_context_to_source_code)
gps_utils.make_interactive(
name='compile model',
contextual='Generate code for project',
callback=CLI.compile_project_to_source_code)
gps_utils.make_interactive(
name='break debugger on block',
contextual='Breakpoint on this block',
filter=CLI.is_model_block_and_debugger,
callback=QGEN_Debugger_Support.set_breakpoint)
module = QGEN_Module()
|