##
# Specification entity object
#
# Collects information about a particular system entity or aspect.
#
# The entity is of a general kind
# It is defined by the particular aspects defined for it
# The aspects must be 'compatible', which can be relatively checked.
# The specobject is used for:
# * generating tests
# * generating docs
# * generating help
# * by creating docstrings
# * by providing interactive help
#
# For test generation, it will delegate to test implementators.
# For doc generation, it will delegate to doc implementators.
#
# The functionality needed here is therefore limited.
#
# name
# aspects
#
# There is one predefine root
# - should we call it Universe?
#
# The name can be full, a dotted name, or the short, last part.
#
# The name is treated as an aspect.
#
# Each aspect definition has a primary kind
# Aspect kinds
from guppy.gsl.Exceptions import *
class SpecObject:
def __init__(self, mod):
self.mod = mod
##
# Specification environment
# Collects specifications from several files
# Maps names to specification objects
class SpecEnv:
def __init__(self, mod):
self.mod = mod
self.unknown_nodes = []
self.files = []
def visit_default(self, node):
print('add_unknown', node.tag)
self.unknown_nodes.append(node)
def visit_file(self, node):
print('visit_file')
file = FileEnv(self, node)
self.files.append(file)
def get_predefined_subjects(self, env):
return (GuppyWorld(env),)
class FileEnv:
def __init__(self, env, node):
mod = env.mod
self.mod = mod
self.name = self.filename = node.arg
self.subjects = {}
for s in env.get_predefined_subjects(self):
self.subjects[s.name] = s
file = Subject(self, node, self.name)
node.children_accept(file)
def visit_aspects_of(self, node):
name = node.arg
subject = self.find_subject(node, name)
subject.add_aspects(node)
def def_subject(self, node, name, subject):
if name in self.subjects:
self.error_node(node, 'Redefinition of %r.' % name)
self.error_node(self.subjects[name].node,
'Previous definition of %r.' % name)
else:
self.subjects[name] = subject
def error_node(self, node, msg, exception=None):
index = node.index
lineno = index + 1
print('%s:%s:' % (self.filename, lineno))
print(' %r' % self.get_line(index))
print(' %s' % msg)
print()
def find_subject(self, node, name):
subject = self.subjects.get(name)
if subject is None:
self.error_node(node, 'No such subject: %r.' % name)
return subject
def get_line(self, index):
try:
with open(self.filename) as f:
text = list(f.readlines())[index].rstrip()
except Exception:
text = None
return text
def get_subject(self, name):
subject = self.subjects.get(name)
if subject is None:
subject = self.subjects[name] = Subject(self, name)
return subject
def get_aspect_subject(self, env, node):
name = env.name+'::'+node.tag
return self.get_subject(name)
class Subject:
def __init__(self, file, node, name):
self.file = file
self.node = node
self.name = name
self.aspects = []
def visit_default(self, node):
of = node.tag.endswith('_of')
name = node.arg
define = name.startswith(':')
if define:
if of:
self.file.error_node(node, "Both 'of' and '::'.")
name = name[1:].strip()
if of:
ofsubject = self.file.find_subject(node, name)
subject = self.new_subject_of(node, ofsubject)
else:
subject = Subject(self.file, node, name)
if define:
self.file.def_subject(node, name, subject)
self.aspects.append(subject)
node.children_accept(subject)
def new_subject_of(self, node, of):
tag = node.tag
if tag == 'aspects_of':
return AspectsOf(self.file, node, of)
else:
return SubjectOf(self.file, node, of)
class AspectsOf(Subject):
def __init__(self, file, node, of):
self.node = node
self.of = of
self.aspects = []
def visit_default(self, node):
self.of.visit_default(node)
class SubjectOf(Subject):
def __init__(self, file, node, of):
self.node = node
self.of = of
self.aspects = []
class GuppyWorld(Subject):
def __init__(self, env):
self.file = env
self.name = "Guppy World"
self.node = None
self.aspects = []
##
# A node represented with argument splitted in components of the form:
# .tag: arg
# text
# ..child
# ...
# ..child
# ...
#
# @param tag the text of the first line before the colon
# @param arg the text of the first line after the colon (stripped)
# @param text the text after the the first line before the first children
# @param children the child nodes
# @param index line index
# @param src describes the source
class SpecNode(object):
__slots__ = 'tag', 'arg', 'children', 'index', 'src'
def __init__(self, tag, arg, children=(), index=0, src=None):
self.tag = tag
self.arg = arg
self.children = tuple(children)
self.index = index
self.src = src
def __repr__(self):
return '%s(%r,%r,%r)' % (
self.__class__.__name__, self.tag, self.arg, self.children)
def __str__(self):
return '%s(%r,%r,%s)' % (
self.__class__.__name__, self.tag, self.arg,
'(%s)' % (','.join([str(c) for c in self.children])))
def arg_accept(self, visitor, prefix='visit_'):
if self.arg:
node = SpecNode('text', self.arg, (), self.index)
node.accept(visitor, prefix)
self.children_accept(visitor, prefix)
def copy(self, tag=None, arg=None, children=None, index=None, src=None):
if tag is None:
tag = self.tag
if arg is None:
arg = self.arg
if children is None:
children = self.children
if index is None:
index = self.index
if src is None:
src = self.src
return self.__class__(tag, arg, children, index, src)
def children_accept(self, visitor, prefix='visit_'):
for c in self.children:
c.accept(visitor, prefix)
def accept(self, visitor, prefix='visit_'):
m = getattr(visitor, (prefix+self.tag), None)
if m is None:
m = getattr(visitor, (prefix+'default'), None)
if m is None:
msg = 'accept: unknown: %r, %r in %r' % (
prefix, self.tag, visitor)
print(msg)
raise ValueError(msg)
return
m(self)
def error(self, msg, node=None):
if node is None:
node = self
node.src.error(msg, node)
def get_text(self):
" Get the total text of all text children, joined with and ended with '\n' "
text = []
for c in self.children:
if c.tag == 'text':
text.append(c.arg)
if not c.arg.endswith('\n'):
text.append('\n')
return ''.join(text)
def get_arg(self):
arg = self.arg.strip()
if arg.startswith(':'):
arg = arg[1:].strip()
return arg
def get_arglist(self):
arg = self.arg
if arg.startswith(':'):
arg = arg[1:]
names = [x.strip() for x in arg.split(',')]
if names == ['']:
names = []
return names
def get_arg_children(self):
if self.arg:
children = [SpecNode('text', self.arg, (), self.index, self.src)]
children.extend(self.children)
else:
children = self.children
return children
def get_arg_rest(self, nostrip=0):
arg = self.arg
if not nostrip:
arg = arg.strip()
return arg, self.children
def get_arg_norest(self):
''' Get the arg as by self.arg,
but make sure there are no more children.
'''
if self.children:
raise SyntaxError('No children nodes expected in node: %s' % self)
return self.arg.strip()
def get_namearg(self):
''' Get the argument in the form of a name
It is the argument stripped.
And not allowed to contain : or , or new line.
'''
name = self.arg.strip()
if '\n' in name or ':' in name or ',' in name:
raise SyntaxError('Invalid name: %r' % name)
return name
def split_attrs(self, tag=None, attrdict=False):
if tag is None:
tag = self.tag
if attrdict:
attrs = {}
def addattr(tag, attr, node):
if tag in attrs:
node.error('Duplicate attribute: %s' % attr)
else:
attrs[tag] = attr
else:
attrs = []
def addattr(tag, attr, node):
attrs.append((tag, attr))
children = []
for ch in self.children:
if ch.tag == "with":
for opt in ch.children:
if opt.arg:
arg = opt.arg
else:
self.error('Bad attribute, no argument.', opt)
if opt.children:
self.error(
'Expected no children to attribute.', opt.children[0])
if opt.arg:
addattr(opt.tag, arg, opt)
elif ch.tag[-1:] == '=':
addattr(ch.tag[:-1], ch.arg, ch)
else:
children.append(ch)
if len(children) == len(self.children):
node = self
else:
node = self.__class__(
tag, self.arg, children, self.index, self.src)
return node, attrs
class Source:
def __init__(self, name, lines=None, string=None, nostrip=0, debug=0, max_errors=10):
self.filename = name
self.lines = lines
self.string = string
self.nostrip = nostrip
self.debug = debug
self.error_reports = []
self.max_errors = max_errors
self.num_warnings = 0
self.num_errors = 0
def errmsg_context(self, context):
linetext = ''
filename = '