comparison sat_frontends/jp/cmd_ping.py @ 2690:56bfe1b79204

jp: new command "ping"
author Goffi <goffi@goffi.org>
date Sat, 10 Nov 2018 10:16:38 +0100
parents
children 003b8b4b56a7
comparison
equal deleted inserted replaced
2689:d715d912afac 2690:56bfe1b79204
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3
4 # jp: a SAT command line tool
5 # Copyright (C) 2009-2018 Jérôme Poisson (goffi@goffi.org)
6
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 import base
21 from sat.core.i18n import _
22
23 __commands__ = ["Ping"]
24
25
26 class Ping(base.CommandBase):
27
28 def __init__(self, host):
29 super(Ping, self).__init__(host, 'ping', help=_('ping XMPP entity'))
30 self.need_loop=True
31
32 def add_parser_options(self):
33 self.parser.add_argument(
34 "jid", type=base.unicode_decoder, help=_(u"jid to ping")
35 )
36 self.parser.add_argument(
37 "-d", "--delay-only", action="store_true", help=_(u"output delay only (in s)")
38 )
39
40 def _pingCb(self, pong_time):
41 fmt = u"{time}" if self.args.delay_only else u"PONG ({time} s)"
42 self.disp(fmt.format(time=pong_time))
43 self.host.quit()
44
45 def start(self):
46 self.host.bridge.ping(self.args.jid, self.profile,
47 callback=self._pingCb, errback=self.errback)