topic.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 """
4 usage: %(progname)s [args]
5 """
6 
7 import nstart
8 
9 import os, sys, string, time, getopt, re
10 from pyclearsilver.log import *
11 
12 import neo_cgi, neo_util, neo_cs
13 
14 from pyclearsilver import CSPage
15 from pyclearsilver import odb
16 
17 import MBPage
18 import db_webui
19 
20 import roslib
21 import roslib.scriptutil
22 
23 import webutil
24 import nodeutil
25 
27  def setup(self, hdf):
28  pass
29 
30  def display(self, hdf):
31  topic = hdf.getValue("Query.topic", "")
32  hdf.setValue("CGI.cur.topic", topic)
33  webutil.set_tabs(hdf, ["status", "topics"])
34  webutil.grabTopics(hdf, ["/topics", topic, "/battery_state", "/power_board_state", "/app_status"])
35 
36  topic_data = nodeutil.topic_info(topic)
37 
38  if "error" in topic_data:
39  hdf.setValue("CGI.cur.error", topic_data["error"])
40  else:
41  webutil.hdf_array(hdf, sorted(topic_data["publishers"]), "CGI.cur.publishers")
42  webutil.hdf_array(hdf, sorted(topic_data["subscribers"]), "CGI.cur.subscribers")
43 
44 def run(context):
45  return MyPage(context, pagename="topic", nologin=False)
46 
47 def main():
48  context = CSPage.Context()
49  run(context).start()
50 
51 if __name__ == "__main__":
52  main()


webui
Author(s): Scott Hassan
autogenerated on Mon Jun 10 2019 15:51:24