1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
#
# Copyright (c) 2006 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""
A Connection class containing socket code that uses the spec metadata
to read and write Frame objects. This could be used by a client,
server, or even a proxy implementation.
"""
import socket, codec,logging
from cStringIO import StringIO
from spec import load, pythonize
from codec import EOF
class SockIO:
def __init__(self, sock):
self.sock = sock
def write(self, buf):
# print "OUT: %r" % buf
self.sock.sendall(buf)
def read(self, n):
data = ""
while len(data) < n:
try:
s = self.sock.recv(n - len(data))
except socket.error:
break
if len(s) == 0:
break
# print "IN: %r" % s
data += s
return data
def flush(self):
pass
class Connection:
def __init__(self, host, port, spec):
self.host = host
self.port = port
self.spec = spec
self.FRAME_END = self.spec.constants.byname["frame end"].id
def connect(self):
sock = socket.socket()
sock.connect((self.host, self.port))
sock.setblocking(1)
self.codec = codec.Codec(SockIO(sock))
def flush(self):
self.codec.flush()
INIT="!4s4B"
def init(self):
self.codec.pack(Connection.INIT, "AMQP", 1, 1, self.spec.major,
self.spec.minor)
def write(self, frame):
c = self.codec
c.encode_octet(self.spec.constants.byname[frame.payload.type].id)
c.encode_short(frame.channel)
frame.payload.encode(c)
c.encode_octet(self.FRAME_END)
def read(self):
c = self.codec
type = self.spec.constants.byid[c.decode_octet()].name
channel = c.decode_short()
payload = Frame.DECODERS[type].decode(self.spec, c)
end = c.decode_octet()
if end != self.FRAME_END:
raise "frame error: expected %r, got %r" % (self.FRAME_END, end)
frame = Frame(channel, payload)
return frame
class Frame:
METHOD = "frame method"
HEADER = "frame header"
BODY = "frame body"
OOB_METHOD = "frame oob method"
OOB_HEADER = "frame oob header"
OOB_BODY = "frame oob body"
TRACE = "frame trace"
HEARTBEAT = "frame heartbeat"
DECODERS = {}
def __init__(self, channel, payload):
self.channel = channel
self.payload = payload
def __str__(self):
return "[%d] %s" % (self.channel, self.payload)
class Payload:
class __metaclass__(type):
def __new__(cls, name, bases, dict):
for req in ("encode", "decode", "type"):
if not dict.has_key(req):
raise TypeError("%s must define %s" % (name, req))
dict["decode"] = staticmethod(dict["decode"])
t = type.__new__(cls, name, bases, dict)
if t.type != None:
Frame.DECODERS[t.type] = t
return t
type = None
def encode(self, enc): abstract
def decode(spec, dec): abstract
class Method(Payload):
type = Frame.METHOD
def __init__(self, method, *args):
if len(args) != len(method.fields):
argspec = ["%s: %s" % (pythonize(f.name), f.type)
for f in method.fields]
raise TypeError("%s.%s expecting (%s), got %s" %
(pythonize(method.klass.name),
pythonize(method.name), ", ".join(argspec), args))
self.method = method
self.args = args
def encode(self, enc):
buf = StringIO()
c = codec.Codec(buf)
c.encode_short(self.method.klass.id)
c.encode_short(self.method.id)
for field, arg in zip(self.method.fields, self.args):
c.encode(field.type, arg)
c.flush()
enc.encode_longstr(buf.getvalue())
def decode(spec, dec):
enc = dec.decode_longstr()
c = codec.Codec(StringIO(enc))
klass = spec.classes.byid[c.decode_short()]
meth = klass.methods.byid[c.decode_short()]
args = tuple([c.decode(f.type) for f in meth.fields])
return Method(meth, *args)
def __str__(self):
return "%s %s" % (self.method, ", ".join([str(a) for a in self.args]))
class Header(Payload):
type = Frame.HEADER
def __init__(self, klass, weight, size, **properties):
self.klass = klass
self.weight = weight
self.size = size
self.properties = properties
def __getitem__(self, name):
return self.properties[name]
def __setitem__(self, name, value):
self.properties[name] = value
def __delitem__(self, name):
del self.properties[name]
def encode(self, enc):
buf = StringIO()
c = codec.Codec(buf)
c.encode_short(self.klass.id)
c.encode_short(self.weight)
c.encode_longlong(self.size)
# property flags
nprops = len(self.klass.fields)
flags = 0
for i in range(nprops):
f = self.klass.fields.items[i]
flags <<= 1
if self.properties.get(f.name) != None:
flags |= 1
# the last bit indicates more flags
if i > 0 and (i % 15) == 0:
flags <<= 1
if nprops > (i + 1):
flags |= 1
c.encode_short(flags)
flags = 0
flags <<= ((16 - (nprops % 15)) % 16)
c.encode_short(flags)
# properties
for f in self.klass.fields:
v = self.properties.get(f.name)
if v != None:
c.encode(f.type, v)
c.flush()
enc.encode_longstr(buf.getvalue())
def decode(spec, dec):
c = codec.Codec(StringIO(dec.decode_longstr()))
klass = spec.classes.byid[c.decode_short()]
weight = c.decode_short()
size = c.decode_longlong()
# property flags
bits = []
while True:
flags = c.decode_short()
for i in range(15, 0, -1):
if flags >> i & 0x1 != 0:
bits.append(True)
else:
bits.append(False)
if flags & 0x1 == 0:
break
# properties
properties = {}
for b, f in zip(bits, klass.fields):
if b:
# Note: decode returns a unicode u'' string but only
# plain '' strings can be used as keywords so we need to
# stringify the names.
properties[str(f.name)] = c.decode(f.type)
return Header(klass, weight, size, **properties)
def __str__(self):
return "%s %s %s %s" % (self.klass, self.weight, self.size,
self.properties)
class Body(Payload):
type = Frame.BODY
def __init__(self, content):
self.content = content
def encode(self, enc):
enc.encode_longstr(self.content)
def decode(spec, dec):
return Body(dec.decode_longstr())
def __str__(self):
return "Body(%r)" % self.content
|