FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bpython/bpython/curtsies.py at master · bassdeveloper/bpython · GitHub
bassdeveloper
/
bpython
Public
forked from
bpython/bpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
bpython
/
bpython
/
curtsies.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
231 lines (198 loc) · 7.93 KB
Breadcrumbs
bpython
/
bpython
/
curtsies.py
Copy path
File metadata and controls
231 lines (198 loc) · 7.93 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
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
from
__future__
import
absolute_import
import
collections
import
io
import
logging
import
sys
from
optparse
import
Option
import
curtsies
import
curtsies
.
window
import
curtsies
.
input
import
curtsies
.
events
from
bpython
.
curtsiesfrontend
.
repl
import
BaseRepl
from
bpython
.
curtsiesfrontend
.
coderunner
import
SystemExitFromCodeRunner
from
bpython
.
curtsiesfrontend
.
interpreter
import
Interp
from
bpython
import
args
as
bpargs
from
bpython
import
translations
from
bpython
.
translations
import
_
from
bpython
.
importcompletion
import
find_iterator
from
bpython
.
curtsiesfrontend
import
events
as
bpythonevents
from
bpython
import
inspection
from
bpython
.
repl
import
extract_exit_value
logger
=
logging
.
getLogger
(
__name__
)
repl
=
None
# global for `from bpython.curtsies import repl`
# WARNING Will be a problem if more than one repl is ever instantiated this way
class
FullCurtsiesRepl
(
BaseRepl
):
def
__init__
(
self
,
config
,
locals_
,
banner
,
interp
=
None
,
paste
=
None
):
self
.
input_generator
=
curtsies
.
input
.
Input
(
keynames
=
'curtsies'
,
sigint_event
=
True
,
paste_threshold
=
None
)
self
.
window
=
curtsies
.
window
.
CursorAwareWindow
(
sys
.
stdout
,
sys
.
stdin
,
keep_last_line
=
True
,
hide_cursor
=
False
,
extra_bytes_callback
=
self
.
input_generator
.
unget_bytes
)
self
.
_request_refresh
=
self
.
input_generator
.
event_trigger
(
bpythonevents
.
RefreshRequestEvent
)
self
.
_schedule_refresh
=
self
.
input_generator
.
scheduled_event_trigger
(
bpythonevents
.
ScheduledRefreshRequestEvent
)
self
.
_request_reload
=
self
.
input_generator
.
threadsafe_event_trigger
(
bpythonevents
.
ReloadEvent
)
self
.
interrupting_refresh
=
(
self
.
input_generator
.
threadsafe_event_trigger
(
lambda
:
None
))
self
.
request_undo
=
self
.
input_generator
.
event_trigger
(
bpythonevents
.
UndoEvent
)
with
self
.
input_generator
:
pass
# temp hack to get .original_stty
BaseRepl
.
__init__
(
self
,
locals_
=
locals_
,
config
=
config
,
banner
=
banner
,
interp
=
interp
,
orig_tcattrs
=
self
.
input_generator
.
original_stty
)
def
get_term_hw
(
self
):
return
self
.
window
.
get_term_hw
()
def
get_cursor_vertical_diff
(
self
):
return
self
.
window
.
get_cursor_vertical_diff
()
def
get_top_usable_line
(
self
):
return
self
.
window
.
top_usable_row
def
on_suspend
(
self
):
self
.
window
.
__exit__
(
None
,
None
,
None
)
self
.
input_generator
.
__exit__
(
None
,
None
,
None
)
def
after_suspend
(
self
):
self
.
input_generator
.
__enter__
()
self
.
window
.
__enter__
()
self
.
interrupting_refresh
()
def
process_event_and_paint
(
self
,
e
):
"""If None is passed in, just paint the screen"""
try
:
if
e
is
not
None
:
self
.
process_event
(
e
)
except
(
SystemExitFromCodeRunner
,
SystemExit
)
as
err
:
array
,
cursor_pos
=
self
.
paint
(
about_to_exit
=
True
,
user_quit
=
isinstance
(
err
,
SystemExitFromCodeRunner
))
scrolled
=
self
.
window
.
render_to_terminal
(
array
,
cursor_pos
)
self
.
scroll_offset
+=
scrolled
raise
else
:
array
,
cursor_pos
=
self
.
paint
()
scrolled
=
self
.
window
.
render_to_terminal
(
array
,
cursor_pos
)
self
.
scroll_offset
+=
scrolled
def
mainloop
(
self
,
interactive
=
True
,
paste
=
None
):
if
interactive
:
# Add custom help command
# TODO: add methods to run the code
self
.
initialize_interp
()
# run startup file
self
.
process_event
(
bpythonevents
.
RunStartupFileEvent
())
# handle paste
if
paste
:
self
.
process_event
(
paste
)
# do a display before waiting for first event
self
.
process_event_and_paint
(
None
)
inputs
=
combined_events
(
self
.
input_generator
)
for
unused
in
find_iterator
:
e
=
inputs
.
send
(
0
)
if
e
is
not
None
:
self
.
process_event_and_paint
(
e
)
for
e
in
inputs
:
self
.
process_event_and_paint
(
e
)
def
main
(
args
=
None
,
locals_
=
None
,
banner
=
None
,
welcome_message
=
None
):
"""
banner is displayed directly after the version information.
welcome_message is passed on to Repl and displayed in the statusbar.
"""
translations
.
init
()
config
,
options
,
exec_args
=
bpargs
.
parse
(
args
, (
'curtsies options'
,
None
, [
Option
(
'--log'
,
'-L'
,
action
=
'count'
,
help
=
_
(
"log debug messages to bpython.log"
)),
Option
(
'--paste'
,
'-p'
,
action
=
'store_true'
,
help
=
_
(
"start by pasting lines of a file into session"
)),
]))
if
options
.
log
is
None
:
options
.
log
=
0
logging_levels
=
[
logging
.
ERROR
,
logging
.
INFO
,
logging
.
DEBUG
]
level
=
logging_levels
[
min
(
len
(
logging_levels
)
-
1
,
options
.
log
)]
logging
.
getLogger
(
'curtsies'
).
setLevel
(
level
)
logging
.
getLogger
(
'bpython'
).
setLevel
(
level
)
if
options
.
log
:
handler
=
logging
.
FileHandler
(
filename
=
'bpython.log'
)
logging
.
getLogger
(
'curtsies'
).
addHandler
(
handler
)
logging
.
getLogger
(
'curtsies'
).
propagate
=
False
logging
.
getLogger
(
'bpython'
).
addHandler
(
handler
)
logging
.
getLogger
(
'bpython'
).
propagate
=
False
interp
=
None
paste
=
None
if
exec_args
:
if
not
options
:
raise
ValueError
(
"don't pass in exec_args without options"
)
exit_value
=
()
if
options
.
paste
:
paste
=
curtsies
.
events
.
PasteEvent
()
encoding
=
inspection
.
get_encoding_file
(
exec_args
[
0
])
with
io
.
open
(
exec_args
[
0
],
encoding
=
encoding
)
as
f
:
sourcecode
=
f
.
read
()
paste
.
events
.
extend
(
sourcecode
)
else
:
try
:
interp
=
Interp
(
locals
=
locals_
)
bpargs
.
exec_code
(
interp
,
exec_args
)
except
SystemExit
as
e
:
exit_value
=
e
.
args
if
not
options
.
interactive
:
return
extract_exit_value
(
exit_value
)
else
:
# expected for interactive sessions (vanilla python does it)
sys
.
path
.
insert
(
0
,
''
)
if
not
options
.
quiet
:
print
(
bpargs
.
version_banner
())
if
banner
is
not
None
:
print
(
banner
)
global
repl
repl
=
FullCurtsiesRepl
(
config
,
locals_
,
welcome_message
,
interp
,
paste
)
try
:
with
repl
.
input_generator
:
with
repl
.
window
as
win
:
with
repl
:
repl
.
height
,
repl
.
width
=
win
.
t
.
height
,
win
.
t
.
width
exit_value
=
repl
.
mainloop
()
except
(
SystemExitFromCodeRunner
,
SystemExit
)
as
e
:
exit_value
=
e
.
args
return
extract_exit_value
(
exit_value
)
def
_combined_events
(
event_provider
,
paste_threshold
):
"""Combines consecutive keypress events into paste events."""
timeout
=
yield
'nonsense_event'
# so send can be used immediately
queue
=
collections
.
deque
()
while
True
:
e
=
event_provider
.
send
(
timeout
)
if
isinstance
(
e
,
curtsies
.
events
.
Event
):
timeout
=
yield
e
continue
elif
e
is
None
:
timeout
=
yield
None
continue
else
:
queue
.
append
(
e
)
e
=
event_provider
.
send
(
0
)
while
not
(
e
is
None
or
isinstance
(
e
,
curtsies
.
events
.
Event
)):
queue
.
append
(
e
)
e
=
event_provider
.
send
(
0
)
if
len
(
queue
)
>=
paste_threshold
:
paste
=
curtsies
.
events
.
PasteEvent
()
paste
.
events
.
extend
(
queue
)
queue
.
clear
()
timeout
=
yield
paste
else
:
while
len
(
queue
):
timeout
=
yield
queue
.
popleft
()
def
combined_events
(
event_provider
,
paste_threshold
=
3
):
g
=
_combined_events
(
event_provider
,
paste_threshold
)
next
(
g
)
return
g
if
__name__
==
'__main__'
:
sys
.
exit
(
main
())
Back
|
FazBrowse Home
|
New Git URL