FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
reko/src/Scripts/Python/PythonAPI.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
/
PythonAPI.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
78 lines (73 loc) · 2.71 KB
Breadcrumbs
reko
/
src
/
Scripts
/
Python
/
PythonAPI.cs
Copy path
File metadata and controls
78 lines (73 loc) · 2.71 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
#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
.
Configuration
;
using
Reko
.
Core
.
Services
;
using
System
;
using
System
.
Collections
.
Generic
;
using
System
.
IO
;
namespace
Reko
.
Scripts
.
Python
{
/// <summary>
/// Сlass for evaluation of Python API definitions which can be used in
/// user-defined scripts.
/// </summary>
public
class
PythonAPI
{
public
PythonAPI
(
IConfigurationService
cfgSvc
,
IFileSystemService
fsSvc
,
ScriptEngine
engine
)
{
this
.
CreateProgramWrapper
=
EvaluatePythonDefinitions
(
cfgSvc
,
fsSvc
,
engine
,
"_program.py"
,
"Program"
)
;
this
.
CreateRekoWrapper
=
EvaluatePythonDefinitions
(
cfgSvc
,
fsSvc
,
engine
,
"_reko.py"
,
"Reko"
)
;
}
public
readonly
Func
<
object
,
object
>
CreateProgramWrapper
;
public
readonly
Func
<
object
,
object
>
CreateRekoWrapper
;
private
static
Func
<
object
,
object
>
EvaluatePythonDefinitions
(
IConfigurationService
cfgSvc
,
IFileSystemService
fsSvc
,
ScriptEngine
engine
,
string
fileName
,
string
className
)
{
var
scope
=
engine
.
CreateScope
(
)
;
var
fileDirectory
=
"Python"
;
var
absolutePath
=
cfgSvc
.
GetInstallationRelativePath
(
fileDirectory
,
fileName
)
;
var
src
=
CreateScriptSource
(
fsSvc
,
engine
,
absolutePath
)
;
src
.
Execute
(
scope
)
;
return
scope
.
GetVariable
<
Func
<
object
,
object
>
>
(
className
)
;
}
private
static
ScriptSource
CreateScriptSource
(
IFileSystemService
fsSvc
,
ScriptEngine
engine
,
string
path
)
{
var
bytes
=
fsSvc
.
ReadAllBytes
(
path
)
;
var
stream
=
new
MemoryStream
(
bytes
)
;
using
var
rdr
=
new
StreamReader
(
stream
)
;
var
script
=
rdr
.
ReadToEnd
(
)
;
return
engine
.
CreateScriptSourceFromString
(
script
,
path
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL