2014-10-25 01:24:05 +00:00
|
|
|
import operator
|
|
|
|
import os
|
2012-10-28 01:15:29 +00:00
|
|
|
import abc
|
2015-05-02 22:11:51 +00:00
|
|
|
import pyparsing as pp
|
2012-07-24 00:46:14 +00:00
|
|
|
|
2016-05-07 18:14:39 +00:00
|
|
|
from six.moves import reduce
|
|
|
|
|
2015-05-02 04:17:00 +00:00
|
|
|
from .. import utils
|
|
|
|
from . import generators, exceptions
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2016-05-07 18:14:39 +00:00
|
|
|
|
2015-06-18 09:07:33 +00:00
|
|
|
class Settings(object):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-15 21:42:47 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
2015-06-18 16:12:11 +00:00
|
|
|
is_client=False,
|
|
|
|
staticdir=None,
|
|
|
|
unconstrained_file_access=False,
|
|
|
|
request_host=None,
|
|
|
|
websocket_key=None,
|
|
|
|
protocol=None,
|
2015-05-15 21:42:47 +00:00
|
|
|
):
|
2015-06-08 08:45:17 +00:00
|
|
|
self.is_client = is_client
|
2015-05-15 21:42:47 +00:00
|
|
|
self.staticdir = staticdir
|
|
|
|
self.unconstrained_file_access = unconstrained_file_access
|
|
|
|
self.request_host = request_host
|
2015-06-08 08:45:17 +00:00
|
|
|
self.websocket_key = websocket_key # TODO: refactor this into the protocol
|
|
|
|
self.protocol = protocol
|
2015-05-15 21:42:47 +00:00
|
|
|
|
|
|
|
|
2015-05-02 09:42:09 +00:00
|
|
|
Sep = pp.Optional(pp.Literal(":")).suppress()
|
|
|
|
|
|
|
|
|
2014-10-25 04:27:08 +00:00
|
|
|
v_integer = pp.Word(pp.nums)\
|
2012-04-28 00:42:03 +00:00
|
|
|
.setName("integer")\
|
|
|
|
.setParseAction(lambda toks: int(toks[0]))
|
|
|
|
|
2012-04-28 05:12:39 +00:00
|
|
|
|
|
|
|
v_literal = pp.MatchFirst(
|
2012-04-28 00:42:03 +00:00
|
|
|
[
|
2014-10-25 01:24:05 +00:00
|
|
|
pp.QuotedString(
|
|
|
|
"\"",
|
|
|
|
unquoteResults=True,
|
|
|
|
multiline=True
|
|
|
|
),
|
|
|
|
pp.QuotedString(
|
|
|
|
"'",
|
|
|
|
unquoteResults=True,
|
|
|
|
multiline=True
|
|
|
|
),
|
2012-04-28 00:42:03 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2012-04-28 05:12:39 +00:00
|
|
|
v_naked_literal = pp.MatchFirst(
|
2012-04-28 00:42:03 +00:00
|
|
|
[
|
2012-04-28 05:12:39 +00:00
|
|
|
v_literal,
|
2012-10-30 20:48:55 +00:00
|
|
|
pp.Word("".join(i for i in pp.printables if i not in ",:\n@\'\""))
|
2012-04-28 00:42:03 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-05-02 20:02:13 +00:00
|
|
|
class Token(object):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2012-10-29 23:36:38 +00:00
|
|
|
"""
|
2015-05-03 00:53:28 +00:00
|
|
|
A token in the specification language. Tokens are immutable. The token
|
|
|
|
classes have no meaning in and of themselves, and are combined into
|
|
|
|
Components and Actions to build the language.
|
2012-10-29 23:36:38 +00:00
|
|
|
"""
|
2012-10-28 09:00:19 +00:00
|
|
|
__metaclass__ = abc.ABCMeta
|
2014-10-25 01:24:05 +00:00
|
|
|
|
2015-04-19 20:56:47 +00:00
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls): # pragma: no cover
|
2012-10-29 23:36:38 +00:00
|
|
|
"""
|
|
|
|
A parse expression.
|
|
|
|
"""
|
2012-10-28 09:00:19 +00:00
|
|
|
return None
|
|
|
|
|
2012-10-30 20:32:21 +00:00
|
|
|
@abc.abstractmethod
|
2015-05-30 00:03:13 +00:00
|
|
|
def spec(self): # pragma: no cover
|
2012-10-29 23:36:38 +00:00
|
|
|
"""
|
|
|
|
A parseable specification for this token.
|
|
|
|
"""
|
2012-10-28 09:00:19 +00:00
|
|
|
return None
|
|
|
|
|
2015-05-16 22:43:30 +00:00
|
|
|
@property
|
|
|
|
def unique_name(self):
|
|
|
|
"""
|
|
|
|
Controls uniqueness constraints for tokens. No two tokens with the
|
|
|
|
same name will be allowed. If no uniquness should be applied, this
|
|
|
|
should be None.
|
|
|
|
"""
|
2015-05-17 04:42:59 +00:00
|
|
|
return self.__class__.__name__.lower()
|
2015-05-16 22:43:30 +00:00
|
|
|
|
2015-06-18 16:05:09 +00:00
|
|
|
def resolve(self, settings_, msg_):
|
2012-10-30 01:46:18 +00:00
|
|
|
"""
|
|
|
|
Resolves this token to ready it for transmission. This means that
|
|
|
|
the calculated offsets of actions are fixed.
|
2015-05-02 20:51:57 +00:00
|
|
|
|
|
|
|
settings: a language.Settings instance
|
|
|
|
msg: The containing message
|
2012-10-30 01:46:18 +00:00
|
|
|
"""
|
|
|
|
return self
|
|
|
|
|
2012-10-29 23:36:38 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return self.spec()
|
|
|
|
|
2012-10-28 09:00:19 +00:00
|
|
|
|
2015-05-03 00:53:28 +00:00
|
|
|
class _TokValueLiteral(Token):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2012-04-28 00:42:03 +00:00
|
|
|
def __init__(self, val):
|
2016-05-07 18:14:39 +00:00
|
|
|
self.val = val
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2015-06-18 16:05:09 +00:00
|
|
|
def get_generator(self, settings_):
|
2015-05-02 20:51:57 +00:00
|
|
|
return self.val
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2015-06-18 16:05:09 +00:00
|
|
|
def freeze(self, settings_):
|
2012-10-30 20:32:21 +00:00
|
|
|
return self
|
|
|
|
|
2012-06-28 22:42:15 +00:00
|
|
|
|
2015-05-03 00:53:28 +00:00
|
|
|
class TokValueLiteral(_TokValueLiteral):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-02 22:11:51 +00:00
|
|
|
"""
|
|
|
|
A literal with Python-style string escaping
|
|
|
|
"""
|
2012-04-28 00:42:03 +00:00
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
2012-04-28 00:42:03 +00:00
|
|
|
e = v_literal.copy()
|
2015-06-18 09:07:33 +00:00
|
|
|
return e.setParseAction(cls.parseAction)
|
2014-10-26 03:27:25 +00:00
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def parseAction(cls, x):
|
|
|
|
v = cls(*x)
|
2014-10-26 03:27:25 +00:00
|
|
|
return v
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2012-10-23 22:32:53 +00:00
|
|
|
def spec(self):
|
2015-05-02 22:11:51 +00:00
|
|
|
inner = self.val.encode("string_escape")
|
|
|
|
inner = inner.replace(r"\'", r"\x27")
|
|
|
|
return "'" + inner + "'"
|
2012-10-23 22:32:53 +00:00
|
|
|
|
2012-06-28 22:42:15 +00:00
|
|
|
|
2015-05-03 00:53:28 +00:00
|
|
|
class TokValueNakedLiteral(_TokValueLiteral):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2012-06-28 22:42:15 +00:00
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
2012-06-28 22:42:15 +00:00
|
|
|
e = v_naked_literal.copy()
|
2015-06-18 09:07:33 +00:00
|
|
|
return e.setParseAction(lambda x: cls(*x))
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2012-10-23 22:32:53 +00:00
|
|
|
def spec(self):
|
|
|
|
return self.val.encode("string_escape")
|
|
|
|
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2015-05-03 00:53:28 +00:00
|
|
|
class TokValueGenerate(Token):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2012-04-28 00:42:03 +00:00
|
|
|
def __init__(self, usize, unit, datatype):
|
|
|
|
if not unit:
|
|
|
|
unit = "b"
|
|
|
|
self.usize, self.unit, self.datatype = usize, unit, datatype
|
|
|
|
|
|
|
|
def bytes(self):
|
2012-07-23 03:03:56 +00:00
|
|
|
return self.usize * utils.SIZE_UNITS[self.unit]
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2015-06-18 16:05:09 +00:00
|
|
|
def get_generator(self, settings_):
|
2015-05-02 04:17:00 +00:00
|
|
|
return generators.RandomGenerator(self.datatype, self.bytes())
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2012-10-30 20:32:21 +00:00
|
|
|
def freeze(self, settings):
|
|
|
|
g = self.get_generator(settings)
|
2015-05-03 00:53:28 +00:00
|
|
|
return TokValueLiteral(g[:].encode("string_escape"))
|
2012-10-30 20:32:21 +00:00
|
|
|
|
2012-04-28 00:42:03 +00:00
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
2012-04-29 02:20:27 +00:00
|
|
|
e = pp.Literal("@").suppress() + v_integer
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2014-10-25 01:24:05 +00:00
|
|
|
u = reduce(
|
|
|
|
operator.or_,
|
|
|
|
[pp.Literal(i) for i in utils.SIZE_UNITS.keys()]
|
2014-10-25 04:27:08 +00:00
|
|
|
).leaveWhitespace()
|
2012-04-28 00:42:03 +00:00
|
|
|
e = e + pp.Optional(u, default=None)
|
|
|
|
|
2012-04-29 02:20:27 +00:00
|
|
|
s = pp.Literal(",").suppress()
|
2015-05-02 04:17:00 +00:00
|
|
|
s += reduce(
|
|
|
|
operator.or_,
|
|
|
|
[pp.Literal(i) for i in generators.DATATYPES.keys()]
|
|
|
|
)
|
2012-04-28 00:42:03 +00:00
|
|
|
e += pp.Optional(s, default="bytes")
|
2015-06-18 09:07:33 +00:00
|
|
|
return e.setParseAction(lambda x: cls(*x))
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2012-10-23 22:32:53 +00:00
|
|
|
def spec(self):
|
2015-05-30 00:03:13 +00:00
|
|
|
s = "@%s" % self.usize
|
2012-10-23 22:32:53 +00:00
|
|
|
if self.unit != "b":
|
|
|
|
s += self.unit
|
|
|
|
if self.datatype != "bytes":
|
2015-05-30 00:03:13 +00:00
|
|
|
s += ",%s" % self.datatype
|
2012-10-23 22:32:53 +00:00
|
|
|
return s
|
|
|
|
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2015-05-03 00:53:28 +00:00
|
|
|
class TokValueFile(Token):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2012-04-28 00:42:03 +00:00
|
|
|
def __init__(self, path):
|
2012-10-29 04:33:10 +00:00
|
|
|
self.path = str(path)
|
2012-04-28 00:42:03 +00:00
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
2012-04-28 00:42:03 +00:00
|
|
|
e = pp.Literal("<").suppress()
|
2012-04-28 05:12:39 +00:00
|
|
|
e = e + v_naked_literal
|
2015-06-18 09:07:33 +00:00
|
|
|
return e.setParseAction(lambda x: cls(*x))
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2015-06-18 16:05:09 +00:00
|
|
|
def freeze(self, settings_):
|
2012-10-30 20:32:21 +00:00
|
|
|
return self
|
|
|
|
|
2012-04-28 00:42:03 +00:00
|
|
|
def get_generator(self, settings):
|
2015-04-22 03:49:17 +00:00
|
|
|
if not settings.staticdir:
|
2015-05-02 04:17:00 +00:00
|
|
|
raise exceptions.FileAccessDenied("File access disabled.")
|
2012-07-22 11:46:56 +00:00
|
|
|
s = os.path.expanduser(self.path)
|
2015-04-22 03:49:17 +00:00
|
|
|
s = os.path.normpath(
|
|
|
|
os.path.abspath(os.path.join(settings.staticdir, s))
|
|
|
|
)
|
|
|
|
uf = settings.unconstrained_file_access
|
|
|
|
if not uf and not s.startswith(settings.staticdir):
|
2015-05-02 04:17:00 +00:00
|
|
|
raise exceptions.FileAccessDenied(
|
2014-10-25 01:24:05 +00:00
|
|
|
"File access outside of configured directory"
|
|
|
|
)
|
2012-07-22 11:46:56 +00:00
|
|
|
if not os.path.isfile(s):
|
2015-05-02 04:17:00 +00:00
|
|
|
raise exceptions.FileAccessDenied("File not readable")
|
|
|
|
return generators.FileGenerator(s)
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2012-10-23 22:32:53 +00:00
|
|
|
def spec(self):
|
2015-05-30 00:03:13 +00:00
|
|
|
return "<'%s'" % self.path.encode("string_escape")
|
2012-04-28 00:42:03 +00:00
|
|
|
|
|
|
|
|
2015-05-03 00:53:28 +00:00
|
|
|
TokValue = pp.MatchFirst(
|
2012-04-28 00:42:03 +00:00
|
|
|
[
|
2015-05-03 00:53:28 +00:00
|
|
|
TokValueGenerate.expr(),
|
|
|
|
TokValueFile.expr(),
|
|
|
|
TokValueLiteral.expr()
|
2012-04-28 00:42:03 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-05-03 00:53:28 +00:00
|
|
|
TokNakedValue = pp.MatchFirst(
|
2012-06-28 22:42:15 +00:00
|
|
|
[
|
2015-05-03 00:53:28 +00:00
|
|
|
TokValueGenerate.expr(),
|
|
|
|
TokValueFile.expr(),
|
|
|
|
TokValueLiteral.expr(),
|
|
|
|
TokValueNakedLiteral.expr(),
|
2012-06-28 22:42:15 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-05-03 00:53:28 +00:00
|
|
|
TokOffset = pp.MatchFirst(
|
2014-10-25 01:24:05 +00:00
|
|
|
[
|
|
|
|
v_integer,
|
|
|
|
pp.Literal("r"),
|
|
|
|
pp.Literal("a")
|
|
|
|
]
|
|
|
|
)
|
2012-07-23 05:19:25 +00:00
|
|
|
|
|
|
|
|
2015-05-02 20:02:13 +00:00
|
|
|
class _Component(Token):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2012-10-28 21:00:41 +00:00
|
|
|
"""
|
2015-05-02 20:02:13 +00:00
|
|
|
A value component of the primary specification of an message.
|
2015-05-02 20:51:57 +00:00
|
|
|
Components produce byte values desribe the bytes of the message.
|
2012-10-28 21:00:41 +00:00
|
|
|
"""
|
2015-05-30 00:03:13 +00:00
|
|
|
|
|
|
|
def values(self, settings): # pragma: no cover
|
2012-10-28 04:39:58 +00:00
|
|
|
"""
|
2015-05-02 20:51:57 +00:00
|
|
|
A sequence of values, which can either be strings or generators.
|
2012-10-28 04:39:58 +00:00
|
|
|
"""
|
2015-05-02 20:51:57 +00:00
|
|
|
pass
|
2012-10-28 01:15:29 +00:00
|
|
|
|
|
|
|
def string(self, settings=None):
|
2012-10-28 04:39:58 +00:00
|
|
|
"""
|
2012-10-28 09:00:19 +00:00
|
|
|
A string representation of the object.
|
2012-10-28 04:39:58 +00:00
|
|
|
"""
|
2012-10-28 01:15:29 +00:00
|
|
|
return "".join(i[:] for i in self.values(settings or {}))
|
|
|
|
|
|
|
|
|
2015-05-02 10:32:57 +00:00
|
|
|
class KeyValue(_Component):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-02 10:32:57 +00:00
|
|
|
"""
|
|
|
|
A key/value pair.
|
2015-06-18 09:07:33 +00:00
|
|
|
cls.preamble: leader
|
2015-05-02 10:32:57 +00:00
|
|
|
"""
|
2015-05-30 00:03:13 +00:00
|
|
|
|
2012-10-27 01:00:50 +00:00
|
|
|
def __init__(self, key, value):
|
|
|
|
self.key, self.value = key, value
|
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
|
|
|
e = pp.Literal(cls.preamble).suppress()
|
2015-05-03 00:53:28 +00:00
|
|
|
e += TokValue
|
2012-10-27 01:00:50 +00:00
|
|
|
e += pp.Literal("=").suppress()
|
2015-05-03 00:53:28 +00:00
|
|
|
e += TokValue
|
2015-06-18 09:07:33 +00:00
|
|
|
return e.setParseAction(lambda x: cls(*x))
|
2012-10-27 01:00:50 +00:00
|
|
|
|
2012-10-29 03:31:35 +00:00
|
|
|
def spec(self):
|
2015-05-30 00:03:13 +00:00
|
|
|
return "%s%s=%s" % (self.preamble, self.key.spec(), self.value.spec())
|
2012-10-29 03:31:35 +00:00
|
|
|
|
2012-10-30 20:32:21 +00:00
|
|
|
def freeze(self, settings):
|
2015-05-02 10:32:57 +00:00
|
|
|
return self.__class__(
|
|
|
|
self.key.freeze(settings), self.value.freeze(settings)
|
2014-10-25 01:24:05 +00:00
|
|
|
)
|
2012-11-15 22:31:04 +00:00
|
|
|
|
|
|
|
|
2015-05-02 09:27:11 +00:00
|
|
|
class CaselessLiteral(_Component):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-02 09:27:11 +00:00
|
|
|
"""
|
|
|
|
A caseless token that can take only one value.
|
|
|
|
"""
|
2015-05-30 00:03:13 +00:00
|
|
|
|
2015-04-22 03:49:17 +00:00
|
|
|
def __init__(self, value):
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
|
|
|
spec = pp.CaselessLiteral(cls.TOK)
|
|
|
|
spec = spec.setParseAction(lambda x: cls(*x))
|
2015-04-22 03:49:17 +00:00
|
|
|
return spec
|
|
|
|
|
|
|
|
def values(self, settings):
|
2015-04-28 22:02:16 +00:00
|
|
|
return self.TOK
|
2015-04-22 03:49:17 +00:00
|
|
|
|
|
|
|
def spec(self):
|
2015-04-28 22:02:16 +00:00
|
|
|
return self.TOK
|
2015-04-22 03:49:17 +00:00
|
|
|
|
2015-06-18 16:05:09 +00:00
|
|
|
def freeze(self, settings_):
|
2015-04-22 03:49:17 +00:00
|
|
|
return self
|
|
|
|
|
|
|
|
|
2015-05-02 09:27:11 +00:00
|
|
|
class OptionsOrValue(_Component):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-02 09:27:11 +00:00
|
|
|
"""
|
|
|
|
Can be any of a specified set of options, or a value specifier.
|
|
|
|
"""
|
2015-05-02 10:32:57 +00:00
|
|
|
preamble = ""
|
2015-05-03 01:54:52 +00:00
|
|
|
options = []
|
2015-05-30 00:03:13 +00:00
|
|
|
|
2012-06-24 05:23:37 +00:00
|
|
|
def __init__(self, value):
|
2015-05-03 00:59:21 +00:00
|
|
|
# If it's a string, we were passed one of the options, so we lower-case
|
2012-06-24 05:23:37 +00:00
|
|
|
# it to be canonical. The user can specify a different case by using a
|
|
|
|
# string value literal.
|
2015-05-02 10:32:57 +00:00
|
|
|
self.option_used = False
|
2012-06-24 05:23:37 +00:00
|
|
|
if isinstance(value, basestring):
|
2015-05-03 01:54:52 +00:00
|
|
|
for i in self.options:
|
|
|
|
# Find the exact option value in a case-insensitive way
|
|
|
|
if i.lower() == value.lower():
|
|
|
|
self.option_used = True
|
|
|
|
value = TokValueLiteral(i)
|
|
|
|
break
|
2012-06-24 05:23:37 +00:00
|
|
|
self.value = value
|
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
|
|
|
parts = [pp.CaselessLiteral(i) for i in cls.options]
|
2012-06-24 05:23:37 +00:00
|
|
|
m = pp.MatchFirst(parts)
|
2015-05-03 00:53:28 +00:00
|
|
|
spec = m | TokValue.copy()
|
2015-06-18 09:07:33 +00:00
|
|
|
spec = spec.setParseAction(lambda x: cls(*x))
|
|
|
|
if cls.preamble:
|
|
|
|
spec = pp.Literal(cls.preamble).suppress() + spec
|
2012-06-24 05:23:37 +00:00
|
|
|
return spec
|
|
|
|
|
2012-10-28 01:15:29 +00:00
|
|
|
def values(self, settings):
|
|
|
|
return [
|
|
|
|
self.value.get_generator(settings)
|
|
|
|
]
|
|
|
|
|
2012-10-29 03:31:35 +00:00
|
|
|
def spec(self):
|
|
|
|
s = self.value.spec()
|
2015-05-02 09:27:11 +00:00
|
|
|
if s[1:-1].lower() in self.options:
|
2012-10-29 03:31:35 +00:00
|
|
|
s = s[1:-1].lower()
|
2015-05-30 00:03:13 +00:00
|
|
|
return "%s%s" % (self.preamble, s)
|
2012-10-29 03:31:35 +00:00
|
|
|
|
2012-10-30 20:32:21 +00:00
|
|
|
def freeze(self, settings):
|
2015-05-02 09:27:11 +00:00
|
|
|
return self.__class__(self.value.freeze(settings))
|
2012-10-30 20:32:21 +00:00
|
|
|
|
2012-06-24 05:23:37 +00:00
|
|
|
|
2015-05-02 09:42:09 +00:00
|
|
|
class Integer(_Component):
|
2015-05-16 23:31:02 +00:00
|
|
|
bounds = (None, None)
|
|
|
|
preamble = ""
|
|
|
|
|
2015-05-02 09:42:09 +00:00
|
|
|
def __init__(self, value):
|
2015-05-16 23:31:02 +00:00
|
|
|
v = int(value)
|
|
|
|
outofbounds = any([
|
|
|
|
self.bounds[0] is not None and v < self.bounds[0],
|
|
|
|
self.bounds[1] is not None and v > self.bounds[1]
|
|
|
|
])
|
|
|
|
if outofbounds:
|
|
|
|
raise exceptions.ParseException(
|
2015-05-30 00:03:13 +00:00
|
|
|
"Integer value must be between %s and %s." % self.bounds,
|
2015-05-16 23:31:02 +00:00
|
|
|
0, 0
|
|
|
|
)
|
2015-05-02 09:42:09 +00:00
|
|
|
self.value = str(value)
|
2012-10-28 21:00:41 +00:00
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
2012-10-28 21:00:41 +00:00
|
|
|
e = v_integer.copy()
|
2015-06-18 09:07:33 +00:00
|
|
|
if cls.preamble:
|
|
|
|
e = pp.Literal(cls.preamble).suppress() + e
|
|
|
|
return e.setParseAction(lambda x: cls(*x))
|
2012-10-28 21:00:41 +00:00
|
|
|
|
|
|
|
def values(self, settings):
|
2015-05-02 20:51:57 +00:00
|
|
|
return self.value
|
2012-10-28 21:00:41 +00:00
|
|
|
|
2012-10-29 03:31:35 +00:00
|
|
|
def spec(self):
|
2015-05-30 00:03:13 +00:00
|
|
|
return "%s%s" % (self.preamble, self.value)
|
2012-10-29 03:31:35 +00:00
|
|
|
|
2015-06-18 16:05:09 +00:00
|
|
|
def freeze(self, settings_):
|
2015-05-02 09:27:11 +00:00
|
|
|
return self
|
2012-10-30 20:32:21 +00:00
|
|
|
|
2012-10-28 21:00:41 +00:00
|
|
|
|
2015-05-03 00:54:25 +00:00
|
|
|
class Value(_Component):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-02 09:42:09 +00:00
|
|
|
"""
|
2015-05-03 00:53:28 +00:00
|
|
|
A value component lead by an optional preamble.
|
2015-05-02 09:42:09 +00:00
|
|
|
"""
|
2015-05-03 00:53:28 +00:00
|
|
|
preamble = ""
|
|
|
|
|
2012-10-28 21:00:41 +00:00
|
|
|
def __init__(self, value):
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
2015-05-03 00:53:28 +00:00
|
|
|
e = (TokValue | TokNakedValue)
|
2015-06-18 09:07:33 +00:00
|
|
|
if cls.preamble:
|
|
|
|
e = pp.Literal(cls.preamble).suppress() + e
|
|
|
|
return e.setParseAction(lambda x: cls(*x))
|
2012-10-28 21:00:41 +00:00
|
|
|
|
|
|
|
def values(self, settings):
|
|
|
|
return [self.value.get_generator(settings)]
|
|
|
|
|
2012-10-29 03:31:35 +00:00
|
|
|
def spec(self):
|
2015-05-30 00:03:13 +00:00
|
|
|
return "%s%s" % (self.preamble, self.value.spec())
|
2012-10-29 03:31:35 +00:00
|
|
|
|
2012-10-30 20:32:21 +00:00
|
|
|
def freeze(self, settings):
|
2015-05-02 09:42:09 +00:00
|
|
|
return self.__class__(self.value.freeze(settings))
|
2015-05-03 01:54:52 +00:00
|
|
|
|
|
|
|
|
2015-05-15 21:42:47 +00:00
|
|
|
class FixedLengthValue(Value):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-15 21:42:47 +00:00
|
|
|
"""
|
|
|
|
A value component lead by an optional preamble.
|
|
|
|
"""
|
|
|
|
preamble = ""
|
|
|
|
length = None
|
|
|
|
|
|
|
|
def __init__(self, value):
|
|
|
|
Value.__init__(self, value)
|
|
|
|
lenguess = None
|
|
|
|
try:
|
|
|
|
lenguess = len(value.get_generator(Settings()))
|
|
|
|
except exceptions.RenderError:
|
|
|
|
pass
|
|
|
|
# This check will fail if we know the length upfront
|
|
|
|
if lenguess is not None and lenguess != self.length:
|
|
|
|
raise exceptions.RenderError(
|
2015-05-30 00:03:13 +00:00
|
|
|
"Invalid value length: '%s' is %s bytes, should be %s." % (
|
2015-05-15 21:42:47 +00:00
|
|
|
self.spec(),
|
|
|
|
lenguess,
|
|
|
|
self.length
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
def values(self, settings):
|
|
|
|
ret = Value.values(self, settings)
|
|
|
|
l = sum(len(i) for i in ret)
|
|
|
|
# This check will fail if we don't know the length upfront - i.e. for
|
|
|
|
# file inputs
|
|
|
|
if l != self.length:
|
|
|
|
raise exceptions.RenderError(
|
2015-05-30 00:03:13 +00:00
|
|
|
"Invalid value length: '%s' is %s bytes, should be %s." % (
|
2015-05-15 21:42:47 +00:00
|
|
|
self.spec(),
|
|
|
|
l,
|
|
|
|
self.length
|
|
|
|
)
|
|
|
|
)
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
2015-05-03 22:48:35 +00:00
|
|
|
class Boolean(_Component):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-03 22:48:35 +00:00
|
|
|
"""
|
|
|
|
A boolean flag.
|
|
|
|
name = true
|
|
|
|
-name = false
|
|
|
|
"""
|
|
|
|
name = ""
|
|
|
|
|
|
|
|
def __init__(self, value):
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
2015-05-03 22:48:35 +00:00
|
|
|
e = pp.Optional(pp.Literal("-"), default=True)
|
2015-06-18 09:07:33 +00:00
|
|
|
e += pp.Literal(cls.name).suppress()
|
2015-05-03 22:48:35 +00:00
|
|
|
|
2015-06-18 16:05:09 +00:00
|
|
|
def parse(s_, loc_, toks):
|
2015-05-03 22:48:35 +00:00
|
|
|
val = True
|
|
|
|
if toks[0] == "-":
|
|
|
|
val = False
|
2015-06-18 09:07:33 +00:00
|
|
|
return cls(val)
|
2015-05-03 22:48:35 +00:00
|
|
|
|
|
|
|
return e.setParseAction(parse)
|
|
|
|
|
|
|
|
def spec(self):
|
2015-05-30 00:03:13 +00:00
|
|
|
return "%s%s" % ("-" if not self.value else "", self.name)
|
2015-05-03 22:48:35 +00:00
|
|
|
|
|
|
|
|
2015-05-03 01:54:52 +00:00
|
|
|
class IntField(_Component):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-05-03 01:54:52 +00:00
|
|
|
"""
|
|
|
|
An integer field, where values can optionally specified by name.
|
|
|
|
"""
|
|
|
|
names = {}
|
|
|
|
max = 16
|
|
|
|
preamble = ""
|
|
|
|
|
|
|
|
def __init__(self, value):
|
|
|
|
self.origvalue = value
|
|
|
|
self.value = self.names.get(value, value)
|
|
|
|
if self.value > self.max:
|
|
|
|
raise exceptions.ParseException(
|
2015-05-30 00:03:13 +00:00
|
|
|
"Value can't exceed %s" % self.max, 0, 0
|
2015-05-03 01:54:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
|
|
|
parts = [pp.CaselessLiteral(i) for i in cls.names.keys()]
|
2015-05-03 01:54:52 +00:00
|
|
|
m = pp.MatchFirst(parts)
|
|
|
|
spec = m | v_integer.copy()
|
2015-06-18 09:07:33 +00:00
|
|
|
spec = spec.setParseAction(lambda x: cls(*x))
|
|
|
|
if cls.preamble:
|
|
|
|
spec = pp.Literal(cls.preamble).suppress() + spec
|
2015-05-03 01:54:52 +00:00
|
|
|
return spec
|
|
|
|
|
|
|
|
def values(self, settings):
|
|
|
|
return [str(self.value)]
|
|
|
|
|
|
|
|
def spec(self):
|
2015-05-30 00:03:13 +00:00
|
|
|
return "%s%s" % (self.preamble, self.origvalue)
|
2015-06-04 06:14:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NestedMessage(Token):
|
2015-06-18 16:12:11 +00:00
|
|
|
|
2015-06-04 06:14:25 +00:00
|
|
|
"""
|
|
|
|
A nested message, as an escaped string with a preamble.
|
|
|
|
"""
|
|
|
|
preamble = ""
|
|
|
|
nest_type = None
|
|
|
|
|
|
|
|
def __init__(self, value):
|
|
|
|
Token.__init__(self)
|
|
|
|
self.value = value
|
|
|
|
try:
|
|
|
|
self.parsed = self.nest_type(
|
|
|
|
self.nest_type.expr().parseString(
|
|
|
|
value.val,
|
|
|
|
parseAll=True
|
|
|
|
)
|
|
|
|
)
|
|
|
|
except pp.ParseException as v:
|
|
|
|
raise exceptions.ParseException(v.msg, v.line, v.col)
|
|
|
|
|
|
|
|
@classmethod
|
2015-06-18 09:07:33 +00:00
|
|
|
def expr(cls):
|
|
|
|
e = pp.Literal(cls.preamble).suppress()
|
2015-06-04 06:14:25 +00:00
|
|
|
e = e + TokValueLiteral.expr()
|
2015-06-18 09:07:33 +00:00
|
|
|
return e.setParseAction(lambda x: cls(*x))
|
2015-06-04 06:14:25 +00:00
|
|
|
|
|
|
|
def values(self, settings):
|
|
|
|
return [
|
|
|
|
self.value.get_generator(settings),
|
|
|
|
]
|
|
|
|
|
|
|
|
def spec(self):
|
|
|
|
return "%s%s" % (self.preamble, self.value.spec())
|
|
|
|
|
|
|
|
def freeze(self, settings):
|
|
|
|
f = self.parsed.freeze(settings).spec()
|
|
|
|
return self.__class__(TokValueLiteral(f.encode("string_escape")))
|