pmacs3/method/introspect.py

156 lines
5.7 KiB
Python
Raw Normal View History

import os, commands, re, sets, tempfile
from subprocess import Popen, PIPE, STDOUT
2008-10-29 10:58:06 -04:00
import buffer, buffer.console
import completer, default, dirutil, regex, util, window
2008-05-29 16:35:21 -04:00
import mode.mini
from point import Point
from method import DATATYPES, Method, Argument
2008-05-12 18:12:56 -04:00
class DumpContext(Method):
'''debug context'''
def _execute(self, w, **vargs):
lines = []
if w.mode.context:
for i in range(0, len(w.mode.context.namelines)):
lines.append("LINE %d: %r" % (i + 1, repr(w.mode.context.namelines[i])))
else:
lines.append("no context")
output = "\n".join(lines)
w.application.data_buffer("context-dump", output, switch_to=True)
class DumpRegions(Method):
'''debug region highlighting'''
def _execute(self, w, **vargs):
lines = []
for hr in w.application.highlighted_ranges:
(w, p1, p2, fg, bg) = hr
lines.append("%r %s %s" % (w, p1, p2))
output = "\n".join(lines)
w.application.data_buffer("region-dump", output, switch_to=True)
class DumpMarkers(Method):
'''Dump all tab markers (tab debugging)'''
def _execute(self, w, **vargs):
lines = []
if w.mode.tabber:
keys = w.mode.tabber.lines.keys()
keys.sort()
for i in keys:
line = w.mode.tabber.lines[i]
2008-05-12 18:12:56 -04:00
lines.append("LINE %d: %r" % (i + 1, line))
lines.append(" %s" % repr(w.mode.tabber.record[i]))
else:
lines.append("no tokens")
output = "\n".join(lines)
w.application.data_buffer("marker-dump", output, switch_to=True)
class DumpTokens(Method):
'''Dump all lexical tokens (syntax highlighting debugging)'''
def _execute(self, w, **vargs):
modename = w.mode.name()
lines = []
if modename in w.buffer.highlights:
tokens = w.buffer.highlights[modename].tokens
for i in range(0, len(tokens)):
2008-05-29 19:05:15 -04:00
lines.append("LINE %d" % (i + 1))
group = tokens[i]
for token in group:
fqname = token.fqname()
p1 = Point(token.x, token.y)
if token.parent is None:
pcoord = ''
else:
pcoord = '[%d, %d]' % (token.parent.x, token.parent.y)
if fqname in w.mode.ghist and p1 in w.mode.ghist[fqname]:
g = '[' + w.mode.ghist[fqname][p1].name() + ']'
else:
g = ''
fields = (str(p1), pcoord, token.fqname(), g, token.string)
lines.append(' %-10s %-10s %-20s %-10s %r' % fields)
else:
lines.append("no tokens")
output = "\n".join(lines)
w.application.data_buffer("token-dump", output, switch_to=True)
class DumpAggregateTokenData(Method):
'''Dump all lexical tokens into an aggregated format'''
def _execute(self, w, **vargs):
name = w.mode.name()
lines = []
2008-09-29 20:53:20 -04:00
if name in w.buffer.highlights:
tokens = w.buffer.highlights[name].tokens
for group in tokens:
for token in group:
s1 = token.name
s2 = token.fqname()
n = len(token.string)
lines.append('%-s %-s %3d %-s' % (s1, s2, n, token.string))
output = "\n".join(lines)
w.application.data_buffer("token-dump", output, switch_to=True)
class GetToken(Method):
'''View type and data of the "current" token'''
def _execute(self, w, **vargs):
token = w.get_token()
if token is None:
w.set_error('No Token')
else:
w.set_error('Token: %r (%s)' % (token.string, token.fqname()))
2008-05-30 14:13:26 -04:00
class TokenComplete(Method):
'''Complete token names based on other tokens in the buffer'''
_mini_prompt = 'Token Complete'
_tabber = completer.TokenCompleter(None)
2008-06-06 09:11:46 -04:00
class Dummy(object): pass
def _complete(self, s):
dw = self.Dummy()
dw.buffer = self.Dummy()
dw.buffer.method = self
return self._tabber.tab_string(s, dw)
2008-05-30 14:13:26 -04:00
def _execute(self, w, **vargs):
self.old_window = w
t = w.get_token2()
if t is None:
w.set_error("No token to complete!")
return
elif regex.reserved_token_names.match(t.name):
w.set_error("Will not complete reserved token")
return
2008-06-06 09:11:46 -04:00
dw = self.Dummy()
dw.buffer = self.Dummy()
2008-05-30 14:13:26 -04:00
dw.buffer.method = self
2008-06-06 09:11:46 -04:00
(s2, exists, complete) = self._tabber.tab_string(t.string, dw)
2008-05-30 14:13:26 -04:00
p1 = Point(t.x, t.y)
p2 = Point(t.end_x(), t.y)
def callback(s):
w.buffer.delete(p1, p2)
w.insert_string(p1, s)
w.application.close_mini_buffer()
if exists and complete:
w.set_error("Unique completion: %r" % s2)
callback(s2)
return
else:
w.application.open_mini_buffer("%s: " % self._mini_prompt, callback,
2008-06-06 09:11:46 -04:00
method=self, tabber=self._tabber,
startvalue=s2)
2008-05-30 14:13:26 -04:00
class OpenConsole(Method):
'''Evaluate python expressions (for advanced use and debugging only)'''
def execute(self, w, **vargs):
a = w.application
if not a.has_buffer_name('*Console*'):
2008-10-29 10:58:06 -04:00
b = buffer.console.ConsoleBuffer()
a.add_buffer(b)
window.Window(b, a)
b = a.bufferlist.get_buffer_by_name('*Console*')
if a.window().buffer is not b:
a.switch_buffer(b)
f = lambda x: None
w.application.open_mini_buffer('>>> ', f, self, None, 'consolemini')