summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-11-08 23:39:46 +0000
committerMatthias Radestock <matthias@rabbitmq.com>2010-11-08 23:39:46 +0000
commit74e980e8b5751bff916ce505eb23edc3b44edd3e (patch)
tree03a2d38280600d52684ed0d8693a470beb930b43
parent42c7386f022e4a819174c07e23bb133eddd37539 (diff)
downloadrabbitmq-server-bug23480.tar.gz
refactor: extract shortstr size checkbug23480
-rw-r--r--codegen.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/codegen.py b/codegen.py
index 02b06f68..71ce8ada 100644
--- a/codegen.py
+++ b/codegen.py
@@ -276,8 +276,7 @@ def genErl(spec):
print " F%dTab = rabbit_binary_generator:generate_table(F%d)," % (f.index, f.index)
print " F%dLen = size(F%dTab)," % (f.index, f.index)
elif type == 'shortstr':
- print " F%dLen = size(F%d)," % (f.index, f.index)
- print " if F%dLen > 255 -> exit(method_field_shortstr_overflow); true -> ok end," % (f.index)
+ print " F%dLen = shortstr_size(F%d)," % (f.index, f.index)
elif type == 'longstr':
print " F%dLen = size(F%d)," % (f.index, f.index)
else:
@@ -424,6 +423,12 @@ def genErl(spec):
bitvalue(true) -> 1;
bitvalue(false) -> 0;
bitvalue(undefined) -> 0.
+
+shortstr_size(S) ->
+ case size(S) of
+ Len when Len =< 255 -> Len;
+ _ -> exit(method_field_shortstr_overflow)
+ end.
"""
version = "{%d, %d, %d}" % (spec.major, spec.minor, spec.revision)
if version == '{8, 0, 0}': version = '{0, 8, 0}'