2015-05-02 20:02:13 +00:00
|
|
|
import abc
|
|
|
|
import copy
|
|
|
|
import random
|
|
|
|
|
2015-05-02 22:11:51 +00:00
|
|
|
import pyparsing as pp
|
2015-05-02 20:02:13 +00:00
|
|
|
|
|
|
|
from . import base
|
|
|
|
|
|
|
|
|
|
|
|
class _Action(base.Token):
|
|
|
|
"""
|
|
|
|
An action that operates on the raw data stream of the message. All
|
|
|
|
actions have one thing in common: an offset that specifies where the
|
|
|
|
action should take place.
|
|
|
|
"""
|
|
|
|
def __init__(self, offset):
|
|
|
|
self.offset = offset
|
|
|
|
|
|
|
|
def resolve(self, settings, msg):
|
|
|
|
"""
|
|
|
|
Resolves offset specifications to a numeric offset. Returns a copy
|
|
|
|
of the action object.
|
|
|
|
"""
|
|
|
|
c = copy.copy(self)
|
|
|
|
l = msg.length(settings)
|
|
|
|
if c.offset == "r":
|
|
|
|
c.offset = random.randrange(l)
|
|
|
|
elif c.offset == "a":
|
|
|
|
c.offset = l + 1
|
|
|
|
return c
|
|
|
|
|
|
|
|
def __cmp__(self, other):
|
|
|
|
return cmp(self.offset, other.offset)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return self.spec()
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def spec(self): # pragma: no cover
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def intermediate(self, settings): # pragma: no cover
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class PauseAt(_Action):
|
|
|
|
def __init__(self, offset, seconds):
|
|
|
|
_Action.__init__(self, offset)
|
|
|
|
self.seconds = seconds
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def expr(klass):
|
|
|
|
e = pp.Literal("p").suppress()
|
2015-05-03 00:53:28 +00:00
|
|
|
e += base.TokOffset
|
2015-05-02 20:02:13 +00:00
|
|
|
e += pp.Literal(",").suppress()
|
|
|
|
e += pp.MatchFirst(
|
|
|
|
[
|
|
|
|
base.v_integer,
|
|
|
|
pp.Literal("f")
|
|
|
|
]
|
|
|
|
)
|
|
|
|
return e.setParseAction(lambda x: klass(*x))
|
|
|
|
|
|
|
|
def spec(self):
|
|
|
|
return "p%s,%s"%(self.offset, self.seconds)
|
|
|
|
|
|
|
|
def intermediate(self, settings):
|
|
|
|
return (self.offset, "pause", self.seconds)
|
|
|
|
|
|
|
|
def freeze(self, settings):
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
|
|
class DisconnectAt(_Action):
|
|
|
|
def __init__(self, offset):
|
|
|
|
_Action.__init__(self, offset)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def expr(klass):
|
|
|
|
e = pp.Literal("d").suppress()
|
2015-05-03 00:53:28 +00:00
|
|
|
e += base.TokOffset
|
2015-05-02 20:02:13 +00:00
|
|
|
return e.setParseAction(lambda x: klass(*x))
|
|
|
|
|
|
|
|
def spec(self):
|
|
|
|
return "d%s"%self.offset
|
|
|
|
|
|
|
|
def intermediate(self, settings):
|
|
|
|
return (self.offset, "disconnect")
|
|
|
|
|
|
|
|
def freeze(self, settings):
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
|
|
class InjectAt(_Action):
|
|
|
|
def __init__(self, offset, value):
|
|
|
|
_Action.__init__(self, offset)
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def expr(klass):
|
|
|
|
e = pp.Literal("i").suppress()
|
2015-05-03 00:53:28 +00:00
|
|
|
e += base.TokOffset
|
2015-05-02 20:02:13 +00:00
|
|
|
e += pp.Literal(",").suppress()
|
2015-05-03 00:53:28 +00:00
|
|
|
e += base.TokValue
|
2015-05-02 20:02:13 +00:00
|
|
|
return e.setParseAction(lambda x: klass(*x))
|
|
|
|
|
|
|
|
def spec(self):
|
|
|
|
return "i%s,%s"%(self.offset, self.value.spec())
|
|
|
|
|
|
|
|
def intermediate(self, settings):
|
|
|
|
return (
|
|
|
|
self.offset,
|
|
|
|
"inject",
|
|
|
|
self.value.get_generator(settings)
|
|
|
|
)
|
|
|
|
|
|
|
|
def freeze(self, settings):
|
|
|
|
return InjectAt(self.offset, self.value.freeze(settings))
|