mitmproxy/libpathod/language/__init__.py

106 lines
2.7 KiB
Python
Raw Normal View History

import itertools
import time
import pyparsing as pp
2015-06-05 00:04:40 +00:00
from . import http, websockets, writer, exceptions
from exceptions import *
from base import Settings
assert Settings # prevent pyflakes from messing with this
2015-06-07 04:11:32 +00:00
def expand(msg):
times = getattr(msg, "times", None)
if times:
for j in xrange(int(times.value)):
yield msg.strike_token("times")
else:
yield msg
def parse_pathod(s):
"""
May raise ParseException
"""
try:
s = s.decode("ascii")
except UnicodeError:
raise exceptions.ParseException("Spec must be valid ASCII.", 0, 0)
try:
2015-06-07 04:11:32 +00:00
reqs = pp.Or(
[
websockets.WebsocketFrame.expr(),
http.Response.expr(),
]
2015-06-07 04:11:32 +00:00
).parseString(s, parseAll=True)
2015-05-30 00:03:13 +00:00
except pp.ParseException as v:
raise exceptions.ParseException(v.msg, v.line, v.col)
2015-06-07 04:11:32 +00:00
return itertools.chain(*[expand(i) for i in reqs])
def parse_pathoc(s):
try:
s = s.decode("ascii")
except UnicodeError:
raise exceptions.ParseException("Spec must be valid ASCII.", 0, 0)
try:
reqs = pp.OneOrMore(
pp.Or(
[
websockets.WebsocketClientFrame.expr(),
http.Request.expr(),
]
)
).parseString(s, parseAll=True)
2015-05-30 00:03:13 +00:00
except pp.ParseException as v:
raise exceptions.ParseException(v.msg, v.line, v.col)
return itertools.chain(*[expand(i) for i in reqs])
def parse_websocket_frame(s):
2015-06-07 04:11:32 +00:00
"""
May raise ParseException
"""
try:
reqs = pp.OneOrMore(
websockets.WebsocketFrame.expr()
).parseString(
s,
parseAll = True
)
except pp.ParseException as v:
raise exceptions.ParseException(v.msg, v.line, v.col)
return itertools.chain(*[expand(i) for i in reqs])
def serve(msg, fp, settings):
"""
fp: The file pointer to write to.
request_host: If this a request, this is the connecting host. If
None, we assume it's a response. Used to decide what standard
modifications to make if raw is not set.
Calling this function may modify the object.
"""
msg = msg.resolve(settings)
started = time.time()
vals = msg.values(settings)
vals.reverse()
2015-05-30 00:03:13 +00:00
actions = sorted(msg.actions[:])
actions.reverse()
actions = [i.intermediate(settings) for i in actions]
disconnect = writer.write_values(fp, vals, actions[:])
duration = time.time() - started
ret = dict(
disconnect = disconnect,
started = started,
duration = duration,
)
ret.update(msg.log(settings))
return ret