aboutsummaryrefslogtreecommitdiff
path: root/net/py-txamqp/files/patch-src__txamqp__codec.py
blob: 2281a0162437e7125365ea2076b4113b1a8c9064 (plain) (blame)
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
--- src/txamqp/codec.py.orig	2009-08-16 11:25:45 UTC
+++ src/txamqp/codec.py
@@ -25,12 +25,12 @@ fields.
 """
 
 from cStringIO import StringIO
-from struct import *
+from struct import pack, calcsize, unpack
 
 class EOF(Exception):
   pass
 
-class Codec:
+class Codec(object):
 
   def __init__(self, stream):
     self.stream = stream
@@ -153,6 +153,13 @@ class Codec:
   def decode_longstr(self):
     return self.dec_str("!L")
 
+  # timestamp
+  def encode_timestamp(self, o):
+    self.pack("!Q", o)
+
+  def decode_timestamp(self):
+    return self.unpack("!Q")
+
   # table
   def encode_table(self, tbl):
     enc = StringIO()
@@ -180,6 +187,10 @@ class Codec:
         value = self.decode_longstr()
       elif type == "I":
         value = self.decode_long()
+      elif type == "F":
+        value = self.decode_table()
+      elif type == "t":
+        value = (self.decode_octet() != 0)
       else:
         raise ValueError(repr(type))
       result[key] = value