forked from xenserver/xsconsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
XSConsoleCurses.py
332 lines (274 loc) · 12.1 KB
/
XSConsoleCurses.py
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
# Copyright (c) 2007-2009 Citrix Systems Inc.
#
# 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; version 2 only.
#
# 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; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import curses, sys, commands
from XSConsoleBases import *
from XSConsoleConfig import *
from XSConsoleLang import *
from XSConsoleState import *
class CursesPalette:
pairIndex = 1
colours = {}
@classmethod
def ColourAttr(cls, inName, inDefault = None):
return cls.colours[inName or inDefault]
@classmethod
def ColourCreate(cls, inForeground, inBackground):
thisIndex = cls.pairIndex
curses.init_pair(thisIndex, inForeground, inBackground)
cls.pairIndex += 1
return curses.color_pair(thisIndex)
@classmethod
def DefineColours(cls):
cls.pairIndex = 1
config = Config.Inst()
if curses.can_change_color():
# Define colours on colour-changing terminals - these are terminals with the ccc
# flag in their capabilities in terminfo
prefix = ''
# Some terminals advertise that they can change colours but don't,
# so the following keeps things at least legible in that case
fgBright = curses.COLOR_WHITE
fgNormal = curses.COLOR_YELLOW
fgDark = curses.COLOR_GREEN
bgBright = curses.COLOR_MAGENTA
bgNormal = curses.COLOR_BLUE
bgDark = curses.COLOR_BLACK
curses.init_color(fgBright, *config.Colour(prefix+'fg_bright'))
curses.init_color(fgNormal, *config.Colour(prefix+'fg_normal'))
curses.init_color(fgDark, *config.Colour(prefix+'fg_dark'))
curses.init_color(bgBright, *config.Colour(prefix+'bg_bright'))
curses.init_color(bgNormal, *config.Colour(prefix+'bg_normal'))
curses.init_color(bgDark, *config.Colour(prefix+'bg_dark'))
else:
# Set sensible defaults for non-colour-changing terminals
fgBright = curses.COLOR_WHITE
fgNormal = curses.COLOR_WHITE
fgDark = curses.COLOR_WHITE
bgDark = curses.COLOR_BLACK # Ensure bgDark != bgBright for MODAL_HIGHLIGHT colour
bgNormal = curses.COLOR_RED
bgBright = curses.COLOR_RED
if curses.has_colors():
cls.colours['MAIN_BASE'] = cls.ColourCreate(fgNormal, bgNormal)
cls.colours['MENU_BASE'] = cls.ColourCreate(fgNormal, bgNormal)
cls.colours['MENU_BRIGHT'] = cls.ColourCreate(fgBright, bgNormal)
cls.colours['MENU_HIGHLIGHT'] = cls.ColourCreate(bgDark, fgBright)
cls.colours['MENU_SELECTED'] = cls.ColourCreate(bgDark, fgBright)
cls.colours['MODAL_BASE'] = cls.ColourCreate(fgNormal, bgBright)
cls.colours['MODAL_BRIGHT'] = cls.ColourCreate(fgBright, bgBright)
cls.colours['MODAL_HIGHLIGHT'] = cls.ColourCreate(fgNormal, bgBright) # Text entry
cls.colours['MODAL_SELECTED'] = cls.ColourCreate(bgDark, fgBright)
cls.colours['MODAL_FLASH'] = cls.ColourCreate(fgBright, bgBright) | curses.A_BLINK
cls.colours['HELP_BASE'] = cls.ColourCreate(fgNormal, bgDark)
cls.colours['HELP_BRIGHT'] = cls.ColourCreate(fgBright, bgDark)
cls.colours['HELP_FLASH'] = cls.ColourCreate(fgBright, bgDark) | curses.A_BLINK
cls.colours['TOPLINE_BASE'] = cls.ColourCreate(fgDark, bgDark)
else:
# Monochrome terminal
for name in ['MAIN_BASE', 'MENU_BASE', 'MENU_BRIGHT', 'MENU_HIGHLIGHT',
'MENU_SELECTED', 'MODAL_BASE', 'MODAL_BRIGHT', 'MODAL_HIGHLIGHT',
'MODAL_SELECTED', 'MODAL_FLASH', 'HELP_BASE', 'HELP_BRIGHT',
'HELP_FLASH', 'TOPLINE_BASE']:
cls.colours[name] = curses.color_pair(0)
for key, value in cls.colours.items():
if key.endswith('_SELECTED'):
cls.colours[key] |= curses.A_REVERSE
elif key.endswith('_FLASH'):
cls.colours[key] |= curses.A_BLINK
elif key.endswith('_BRIGHT'):
cls.colours[key] |= curses.A_BOLD
class CursesPane:
debugBackground = 0
def __init__(self, inXPos, inYPos, inXSize, inYSize, inXOffset, inYOffset):
self.xPos = inXPos
self.yPos = inYPos
self.xSize = inXSize
self.ySize = inYSize
self.xOffset = inXOffset
self.yOffset = inYOffset
self.yClipMin = 0
self.yClipMax = self.ySize
self.title = ""
def HasBox(self):
return self.hasBox
def Win(self):
return self.win
def XSize(self):
return self.xSize
def YSize(self):
return self.ySize
def XPos(self):
return self.xPos
def YPos(self):
return self.yPos
def XOffset(self):
return self.xOffset
def YOffset(self):
return self.yOffset
def OffsetSet(self, inXOffset, inYOffset):
self.xOffset = inXOffset
self.yOffset = inYOffset
def YClipMinSet(self, inYClipMin):
if inYClipMin < 0 or inYClipMin > self.ySize:
raise Exception("Bad YClipMin "+str(inYClipMin))
self.yClipMin = inYClipMin
def YClipMaxSet(self, inYClipMax):
if inYClipMax > self.ySize:
raise Exception("Bad YClipMax "+str(inYClipMax))
self.yClipMax = inYClipMax
def TitleSet(self, inTitle):
self.title = inTitle
def ClippedAddStr(self, inString, inX, inY, inColour): # Internal use
xPos = inX
clippedStr = inString
# Is text on the screen at all?
if inY >= self.yClipMin and inY < self.yClipMax and xPos < self.xSize:
# Clip against left hand side
if xPos < 0:
clippedStr = clippedStr[-xPos:]
xPos = 0
# Clip against right hand side
clippedStr = clippedStr[:self.xSize - xPos]
if len(clippedStr) > 0:
try:
encodedStr = clippedStr
if isinstance(clippedStr, unicode):
encodedStr = clippedStr.encode('utf-8')
# Clear field here since addstr will clear len(encodedStr)-len(clippedStr) too few spaces
self.win.addstr(inY, xPos, len(clippedStr)*' ', CursesPalette.ColourAttr(FirstValue(inColour, self.defaultColour)))
self.win.refresh()
self.win.addstr(inY, xPos, encodedStr, CursesPalette.ColourAttr(FirstValue(inColour, self.defaultColour)))
except Exception, e:
if xPos + len(inString) == self.xSize and inY + 1 == self.ySize:
# Curses incorrectly raises an exception when writing the bottom right
# character in a window, but still completes the write, so ignore it
pass
else:
raise Exception("addstr failed with "+Lang(e)+" for '"+inString+"' at "+str(xPos)+', '+str(inY))
def AddBox(self):
self.hasBox = True
def AddText(self, inString, inX, inY, inColour = None):
self.ClippedAddStr(inString, inX, inY, inColour)
def AddWrappedText(self, inString, inX, inY, inColour = None):
yPos = inY
width = self.xSize - inX - 1
if width >= 1: # Text inside window
text = inString+" "
while len(text) > 0 and yPos < self.ySize:
spacePos = text.rfind(' ', 0, width)
if spacePos == -1:
lineLength = width
else:
lineLength = spacePos
thisLine = text[0:lineLength]
text = text[lineLength+1:]
self.ClippedAddStr(thisLine, inX, inY, inColour)
yPos += 1
def AddHCentredText(self, inString, inY, inColour = None):
xStart = self.xSize / 2 - len(inString) / 2
self.ClippedAddStr(inString, xStart, inY, inColour)
def Decorate(self):
if self.hasBox:
self.Box()
if self.title != "":
self.AddHCentredText(" "+self.title+" ", 0)
def Erase(self):
self.win.erase()
self.Decorate()
def Clear(self):
self.win.clear()
self.Decorate()
def Box(self):
self.win.box(0, 0)
def Refresh(self):
self.win.noutrefresh()
def Redraw(self):
self.win.redrawwin()
self.Decorate()
self.win.noutrefresh()
def GetCh(self):
return self.win.getch()
def GetKey(self):
self.win.timeout(1000) # Return from getkey after x milliseconds if no key pressed
return self.win.getkey()
def GetKeyBlocking(self):
self.win.timeout(-1) # Wait for ever
return self.win.getkey()
def DefaultColourSet(self, inName):
self.defaultColour = inName
self.win.bkgdset(ord(' '), CursesPalette.ColourAttr(self.defaultColour))
def CursorOn(self, inXPos = None, inYPos = None):
try:
curses.curs_set(2)
except:
pass
if inXPos is not None and inYPos is not None:
clippedXPos = max(min(inXPos, self.xSize-1), 0)
clippedYPos = max(min(inYPos, self.ySize-1), 0)
self.win.move(clippedYPos, clippedXPos)
self.win.cursyncup()
def CursorOff(self):
try:
curses.curs_set(0)
except:
pass
self.win.cursyncup()
def Snapshot(self):
retVal = []
if self.title != "":
retVal.append(self.title)
if self.hasBox:
for i in range(1, self.ySize-1):
retVal.append(self.win.instr(i, 1, self.xSize-2))
else:
for i in range(self.ySize):
retVal.append(self.win.instr(i, 0, self.xSize))
return retVal
class CursesWindow(CursesPane):
def __init__(self, inXPos, inYPos, inXSize, inYSize, inParent):
CursesPane.__init__(self, inXPos, inYPos, inXSize, inYSize, inParent.xOffset, inParent.yOffset)
if inParent:
self.win = inParent.Win().subwin(self.ySize, self.xSize, self.yPos+inParent.YOffset(), self.xPos+inParent.XOffset())
else:
raise Exception("Orphan windows not supported - supply parent")
self.win = curses.newwin(self.ySize, self.xSize, self.yPos, self.xPos) # Old behaviour
self.win.keypad(1)
self.title = ""
self.hasBox = False
self.win.timeout(1000) # Return from getkey after x milliseconds if no key pressed
def Delete(self):
# We rely on the garbage collector to call delwin(self.win), in the binding for PyCursesWindow_Dealloc
del self.win
class CursesScreen(CursesPane):
def __init__(self):
self.win = curses.initscr()
(ySize, xSize) = self.win.getmaxyx()
CursesPane.__init__(self, 0, 0, xSize, ySize, 0, 0)
curses.noecho()
curses.cbreak()
curses.start_color()
CursesPalette.DefineColours()
try:
curses.curs_set(0) # Make cursor invisible
except:
pass
self.win.keypad(1)
self.win.timeout(1000) # Return from getkey after x milliseconds if no key pressed
def Exit(self):
curses.nocbreak()
self.win.keypad(0)
curses.echo()
curses.endwin()
def UseColor(self):
return curses.has_color()