FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
reko/src/Scripts/Python/RekoEventsAPI.cs at master · gitmesam/reko · GitHub
gitmesam
/
reko
Public
forked from
uxmal/reko
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
reko
/
src
/
Scripts
/
Python
/
RekoEventsAPI.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
82 lines (74 loc) · 2.66 KB
Breadcrumbs
reko
/
src
/
Scripts
/
Python
/
RekoEventsAPI.cs
Copy path
File metadata and controls
82 lines (74 loc) · 2.66 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#region License
/*
* Copyright (C) 1999-2023 Pavel Tomin.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#endregion
using
Microsoft
.
Scripting
.
Hosting
;
using
Reko
.
Core
.
Scripts
;
using
System
;
using
System
.
Collections
.
Generic
;
namespace
Reko
.
Scripts
.
Python
{
using
EventHandlersMap
=
Dictionary
<
ScriptEvent
,
List
<
Action
<
object
>
>
>
;
/// <summary>
/// Event handlers for processing Reko events in user-defined scripts.
/// </summary>
public
class
RekoEventsAPI
{
private
readonly
Dictionary
<
string
,
ScriptEvent
>
events
;
private
readonly
EventHandlersMap
handlers
;
public
RekoEventsAPI
(
ScriptEngine
engine
)
{
events
=
new
Dictionary
<
string
,
ScriptEvent
>
{
{
"program_loaded"
,
ScriptEvent
.
OnProgramLoaded
}
,
{
"program_decompiling"
,
ScriptEvent
.
OnProgramDecompiling
}
,
{
"program_scanned"
,
ScriptEvent
.
OnProgramScanned
}
,
{
"program_decompiled"
,
ScriptEvent
.
OnProgramDecompiled
}
,
}
;
handlers
=
new
EventHandlersMap
(
)
;
this
.
Engine
=
engine
;
}
public
readonly
ScriptEngine
Engine
;
public
ScriptEvent
?
GetEventByName
(
string
name
)
{
if
(
!
events
.
TryGetValue
(
name
,
out
var
eventType
)
)
{
return
null
;
}
return
eventType
;
}
public
void
AddEventHandler
(
ScriptEvent
@event
,
Action
<
object
>
handler
)
{
if
(
!
handlers
.
TryGetValue
(
@event
,
out
var
eventHandlers
)
)
{
eventHandlers
=
new
List
<
Action
<
object
>
>
(
)
;
handlers
[
@event
]
=
eventHandlers
;
}
eventHandlers
.
Add
(
handler
)
;
}
public
void
FireEvent
(
ScriptEvent
@event
,
object
programWrapper
)
{
if
(
!
handlers
.
TryGetValue
(
@event
,
out
var
eventHandlers
)
)
return
;
foreach
(
var
eventHandler
in
eventHandlers
)
{
eventHandler
(
programWrapper
)
;
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL