Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/boto/rds/logfile.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-2009 Mitch Garnaat http://garnaat.org/ | |
2 # Copyright (c) 2014 Jumping Qu http://newrice.blogspot.com/ | |
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 class LogFile(object): | |
24 | |
25 def __init__(self, connection=None): | |
26 self.connection = connection | |
27 self.size = None | |
28 self.log_filename = None | |
29 self.last_written = None | |
30 | |
31 def __repr__(self): | |
32 #return '(%s, %s, %s)' % (self.logfilename, self.size, self.lastwritten) | |
33 return '%s' % (self.log_filename) | |
34 | |
35 def startElement(self, name, attrs, connection): | |
36 pass | |
37 | |
38 def endElement(self, name, value, connection): | |
39 if name == 'LastWritten': | |
40 self.last_written = value | |
41 elif name == 'LogFileName': | |
42 self.log_filename = value | |
43 elif name == 'Size': | |
44 self.size = value | |
45 else: | |
46 setattr(self, name, value) | |
47 | |
48 | |
49 class LogFileObject(object): | |
50 def __init__(self, connection=None): | |
51 self.connection = connection | |
52 self.log_filename = None | |
53 | |
54 def __repr__(self): | |
55 return "LogFileObject: %s/%s" % (self.dbinstance_id, self.log_filename) | |
56 | |
57 def startElement(self, name, attrs, connection): | |
58 pass | |
59 | |
60 def endElement(self, name, value, connection): | |
61 if name == 'LogFileData': | |
62 self.data = value | |
63 elif name == 'AdditionalDataPending': | |
64 self.additional_data_pending = value | |
65 elif name == 'Marker': | |
66 self.marker = value | |
67 else: | |
68 setattr(self, name, value) |