2 # -*- coding: utf-8 -*-
4 GalTacK networking - client-side logging.
6 # Copyright (C) 2007 Felix Rabe <public@felixrabe.textdriven.com>
7 # Copyright (C) 2007 Michael Carter
9 # Permission is hereby granted, free of charge, to any person obtaining a
10 # copy of this software and associated documentation files (the
11 # "Software"), to deal in the Software without restriction, including
12 # without limitation the rights to use, copy, modify, merge, publish,
13 # distribute, sublicense, and/or sell copies of the Software, and to permit
14 # persons to whom the Software is furnished to do so, subject to the
15 # following conditions:
17 # The above copyright notice and this permission notice shall be included
18 # in all copies or substantial portions of the Software.
20 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23 # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24 # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
25 # OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
26 # THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 # Recommended line length or text width: 75 characters.
31 from galtack
.net_client_base
import *
34 class GaltackClientCmdLoggerBaseMixin(GaltackClientBase
):
36 GaltackClient base mixin for classes implementing traffic dumping.
39 def __init__(self
, *a
, **kw
):
40 super(GaltackClientCmdLoggerBaseMixin
, self
).__init
__(*a
, **kw
)
41 self
._command
_log
_file
= self
._getopt
("command_log_file", kw
)
42 if isinstance(self
._command
_log
_file
, basestring
):
43 self
._command
_log
_file
= file(self
._command
_log
_file
, "wb")
46 def _modify_option_parser(cls
, option_parser
):
47 C
= GaltackClientCmdLoggerBaseMixin
48 option_parser
= super(C
, cls
)._modify
_option
_parser
(option_parser
)
49 option_parser
.add_option("-l", "--command-log-file",
50 dest
= cls
._mkopt
("command_log_file"),
51 metavar
= "FILE", default
= None,
52 help = "log Galtack commands to a file")
56 class GaltackClientRecvCmdLoggerMixin(GaltackClientCmdLoggerBaseMixin
):
58 GaltackClient that dumps received commands to self.command_dump_file.
60 TODO: GaltackClientSendCmdLoggerMixin
63 def datagramReceived(self
, datagram
, host
):
65 Override datagramReceived instead of _commands_received as we want
66 to log *everything* (resent commands as well).
68 f
= self
._command
_log
_file
70 f
.write("\n*** COMMANDS ** SERVER ** %f ***\n" % time
.time())
72 # Call parent class' datagramReceived method:
73 Cls
= GaltackClientRecvCmdLoggerMixin
74 return super(Cls
, self
).datagramReceived(datagram
, host
)