HAL  v4.5.0-83-g30c8f0afc
The Hardware Analyzer - a comprehensive reverse engineering and manipulation framework for gate-level netlists.
dataflow_interaction.h
Go to the documentation of this file.
1 // MIT License
2 //
3 // Copyright (c) 2019 Ruhr University Bochum, Chair for Embedded Security. All Rights reserved.
4 // Copyright (c) 2019 Marc Fyrbiak, Sebastian Wallat, Max Hoffmann ("ORIGINAL AUTHORS"). All rights reserved.
5 // Copyright (c) 2021 Max Planck Institute for Security and Privacy. All Rights reserved.
6 // Copyright (c) 2021 Jörn Langheinrich, Julian Speith, Nils Albartus, René Walendy, Simon Klix ("ORIGINAL AUTHORS").
7 // All Rights reserved.
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in all
17 // copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 // SOFTWARE.
26 
27 #pragma once
28 
29 #include "QGVCore/QGVScene.h"
30 #include "hal_core/defines.h"
31 #include <QHash>
32 
33 namespace hal {
34  class Module;
35 
39  class DataflowInteraction : public QGVInteraction {
40  Q_OBJECT
41  public:
47  DataflowInteraction(QGVScene* parent);
48 
54  void registerNode(QGVNode* node) override;
55 
61  void registerEdge(QGVEdge* scene) override;
62 
63  private Q_SLOTS:
69  void handleHALSelectionChanged(void* sender);
70 
76  void handleHALModuleNameChanged(Module* m);
77 
81  void handleQGVSelectionChanged();
82 
88  void handleEdgeContextMenu(QGVEdge* edge);
89 
90  private:
92  QHash<u32, QGVNode*> mModuleHash;
93 
95  QHash<QGVNode*, u32> mNodeHash;
96 
98  QGVScene* mScene;
99  };
100 
107  QGVInteraction* constructDataflowInteraction(QGVScene* parent);
113  static DataflowInteractionRegistration sRegistration;
114 
115  public:
120  };
121 
122 }
123 
void registerNode(QGVNode *node) override
void registerEdge(QGVEdge *scene) override
DataflowInteraction(QGVScene *parent)
Definition: defines.h:45
QGVInteraction * constructDataflowInteraction(QGVScene *parent)