mitmproxy/pathod/language/__init__.py

121 lines
3.1 KiB
Python
Raw Normal View History

2016-05-07 18:14:39 +00:00
from __future__ import absolute_import
import itertools
import time
2016-05-30 19:11:44 +00:00
from six.moves import range
import pyparsing as pp
2015-06-08 08:45:17 +00:00
from . import http, http2, websockets, writer, exceptions
2016-05-29 11:33:20 +00:00
from .exceptions import RenderError, FileAccessDenied, ParseException
2016-05-07 18:14:39 +00:00
from .base import Settings
2016-05-29 11:33:20 +00:00
__all__ = [
"RenderError", "FileAccessDenied", "ParseException",
"Settings",
]
2015-06-07 04:11:32 +00:00
def expand(msg):
times = getattr(msg, "times", None)
if times:
2016-05-30 19:11:44 +00:00
for j_ in range(int(times.value)):
2015-06-07 04:11:32 +00:00
yield msg.strike_token("times")
else:
yield msg
2015-06-11 14:13:22 +00:00
def parse_pathod(s, use_http2=False):
"""
May raise ParseException
"""
try:
s.encode("ascii")
except UnicodeError:
raise exceptions.ParseException("Spec must be valid ASCII.", 0, 0)
try:
2015-06-11 14:13:22 +00:00
if use_http2:
expressions = [
# http2.Frame.expr(),
http2.Response.expr(),
]
else:
expressions = [
websockets.WebsocketFrame.expr(),
http.Response.expr(),
]
2015-06-11 14:13:22 +00:00
reqs = pp.Or(expressions).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])
2015-06-08 08:45:17 +00:00
def parse_pathoc(s, use_http2=False):
try:
s.encode("ascii")
except UnicodeError:
raise exceptions.ParseException("Spec must be valid ASCII.", 0, 0)
try:
2015-06-08 08:45:17 +00:00
if use_http2:
expressions = [
# http2.Frame.expr(),
http2.Request.expr(),
]
else:
expressions = [
websockets.WebsocketClientFrame.expr(),
http.Request.expr(),
]
reqs = pp.OneOrMore(pp.Or(expressions)).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,
2015-06-18 16:12:11 +00:00
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(
2015-06-18 16:12:11 +00:00
disconnect=disconnect,
started=started,
duration=duration,
)
ret.update(msg.log(settings))
return ret