Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/boto/sqs/messageattributes.py @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
| author | guerler |
|---|---|
| date | Fri, 31 Jul 2020 00:18:57 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:d30785e31577 |
|---|---|
| 1 # Copyright (c) 2006,2007 Mitch Garnaat http://garnaat.org/ | |
| 2 # Copyright (c) 2014 Amazon.com, Inc. All rights reserved. | |
| 3 # | |
| 4 # Permission is hereby granted, free of charge, to any person obtaining a | |
| 5 # copy of this software and associated documentation files (the | |
| 6 # "Software"), to deal in the Software without restriction, including | |
| 7 # without limitation the rights to use, copy, modify, merge, publish, dis- | |
| 8 # tribute, sublicense, and/or sell copies of the Software, and to permit | |
| 9 # persons to whom the Software is furnished to do so, subject to the fol- | |
| 10 # lowing conditions: | |
| 11 # | |
| 12 # The above copyright notice and this permission notice shall be included | |
| 13 # in all copies or substantial portions of the Software. | |
| 14 # | |
| 15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | |
| 16 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- | |
| 17 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT | |
| 18 # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | |
| 19 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
| 20 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | |
| 21 # IN THE SOFTWARE. | |
| 22 | |
| 23 """ | |
| 24 Represents an SQS MessageAttribute Name/Value set | |
| 25 """ | |
| 26 | |
| 27 class MessageAttributes(dict): | |
| 28 def __init__(self, parent): | |
| 29 self.parent = parent | |
| 30 self.current_key = None | |
| 31 self.current_value = None | |
| 32 | |
| 33 def startElement(self, name, attrs, connection): | |
| 34 if name == 'Value': | |
| 35 self.current_value = MessageAttributeValue(self) | |
| 36 return self.current_value | |
| 37 | |
| 38 def endElement(self, name, value, connection): | |
| 39 if name == 'MessageAttribute': | |
| 40 self[self.current_key] = self.current_value | |
| 41 elif name == 'Name': | |
| 42 self.current_key = value | |
| 43 elif name == 'Value': | |
| 44 pass | |
| 45 else: | |
| 46 setattr(self, name, value) | |
| 47 | |
| 48 | |
| 49 class MessageAttributeValue(dict): | |
| 50 def __init__(self, parent): | |
| 51 self.parent = parent | |
| 52 | |
| 53 def startElement(self, name, attrs, connection): | |
| 54 pass | |
| 55 | |
| 56 def endElement(self, name, value, connection): | |
| 57 if name == 'DataType': | |
| 58 self['data_type'] = value | |
| 59 elif name == 'StringValue': | |
| 60 self['string_value'] = value | |
| 61 elif name == 'BinaryValue': | |
| 62 self['binary_value'] = value | |
| 63 elif name == 'StringListValue': | |
| 64 self['string_list_value'] = value | |
| 65 elif name == 'BinaryListValue': | |
| 66 self['binary_list_value'] = value |
