2015-05-02 04:17:00 +00:00
|
|
|
import time
|
|
|
|
|
2015-05-02 22:11:51 +00:00
|
|
|
import pyparsing as pp
|
2015-05-02 04:17:00 +00:00
|
|
|
|
2015-06-05 00:04:40 +00:00
|
|
|
from . import http, websockets, writer, exceptions
|
2015-05-02 04:17:00 +00:00
|
|
|
|
|
|
|
from exceptions import *
|
2015-05-15 21:42:47 +00:00
|
|
|
from base import Settings
|
2015-05-30 05:50:46 +00:00
|
|
|
assert Settings # prevent pyflakes from messing with this
|
2015-05-02 04:17:00 +00:00
|
|
|
|
|
|
|
|
2015-06-04 05:18:06 +00:00
|
|
|
def parse_pathod(s):
|
2015-05-02 04:17:00 +00:00
|
|
|
"""
|
|
|
|
May raise ParseException
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
s = s.decode("ascii")
|
|
|
|
except UnicodeError:
|
|
|
|
raise exceptions.ParseException("Spec must be valid ASCII.", 0, 0)
|
|
|
|
try:
|
2015-06-04 05:18:06 +00:00
|
|
|
return pp.Or(
|
|
|
|
[
|
|
|
|
websockets.WebsocketFrame.expr(),
|
|
|
|
http.Response.expr(),
|
|
|
|
]
|
|
|
|
).parseString(s, parseAll=True)[0]
|
2015-05-30 00:03:13 +00:00
|
|
|
except pp.ParseException as v:
|
2015-05-02 04:17:00 +00:00
|
|
|
raise exceptions.ParseException(v.msg, v.line, v.col)
|
|
|
|
|
|
|
|
|
2015-06-04 05:18:06 +00:00
|
|
|
def parse_pathoc(s):
|
2015-05-02 04:17:00 +00:00
|
|
|
"""
|
|
|
|
May raise ParseException
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
s = s.decode("ascii")
|
|
|
|
except UnicodeError:
|
|
|
|
raise exceptions.ParseException("Spec must be valid ASCII.", 0, 0)
|
|
|
|
try:
|
2015-05-17 03:49:16 +00:00
|
|
|
reqs = pp.OneOrMore(
|
2015-05-02 04:17:00 +00:00
|
|
|
pp.Or(
|
|
|
|
[
|
2015-06-04 06:14:25 +00:00
|
|
|
websockets.WebsocketClientFrame.expr(),
|
2015-05-02 04:17:00 +00:00
|
|
|
http.Request.expr(),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
).parseString(s, parseAll=True)
|
2015-05-30 00:03:13 +00:00
|
|
|
except pp.ParseException as v:
|
2015-05-02 04:17:00 +00:00
|
|
|
raise exceptions.ParseException(v.msg, v.line, v.col)
|
2015-05-17 03:49:16 +00:00
|
|
|
expanded = []
|
|
|
|
for i in reqs:
|
|
|
|
if i.times:
|
|
|
|
for j in range(int(i.times.value)):
|
2015-05-17 04:42:59 +00:00
|
|
|
expanded.append(i.strike_token("times"))
|
2015-05-17 03:49:16 +00:00
|
|
|
else:
|
|
|
|
expanded.append(i)
|
|
|
|
return expanded
|
2015-05-02 04:17:00 +00:00
|
|
|
|
|
|
|
|
2015-06-04 11:57:23 +00:00
|
|
|
def parse_websocket_frame(s):
|
|
|
|
try:
|
|
|
|
return websockets.WebsocketFrame.expr().parseString(
|
|
|
|
s,
|
|
|
|
parseAll = True
|
|
|
|
)[0]
|
|
|
|
except pp.ParseException as v:
|
|
|
|
raise exceptions.ParseException(v.msg, v.line, v.col)
|
|
|
|
|
|
|
|
|
2015-05-02 04:17:00 +00:00
|
|
|
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[:])
|
2015-05-02 04:17:00 +00:00
|
|
|
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
|