Subversion Repositories HomeAutomation

Rev

Rev 741 | Rev 746 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. #!/bin/env python
  2.  
  3. import os
  4. import sys
  5. import logging as log
  6. import getopt
  7. import atexit
  8. import time
  9.  
  10. from CanPktHandlerBase import CanPktHandlerBase
  11. from CanPktHandler1 import CanPktHandler1
  12.  
  13. from NodeIfBase import NodeIfBase
  14. from NodeIfCanStim import NodeIfCanStim
  15. from NodeIfSerial import NodeIfSerial
  16.  
  17. from DaemonConfig import DaemonConfig
  18.  
  19. daemonApp = None
  20.  
  21. class CanDaemon():
  22.    
  23.     cfg = None
  24.     nodeIf = None
  25.     ifNotifier = None
  26.     terminated = False
  27.    
  28.     command_list = []
  29.     command_map = {}
  30.     CMDLIST_NAME = 0
  31.     CMDLIST_HANDLER = 1
  32.     CMDLIST_PARAMINFO = 2
  33.     CMDLIST_HELP = 3
  34.  
  35.     logHelp = 'usage:\t log [options]\n\n' \
  36.               '\t options:\n' \
  37.               '\t level <num>, where: 0 < num < 3\n'
  38.     stateHelp = 'usage: state [name/add/rem]'
  39.     filterHelp = 'usage: filter [name/add/rem]'
  40.     addifHelp = 'usage: addif [name] [options]'
  41.     addbridgeHelp = 'usage: addbridge [interface names]'
  42.     tcpdHelp = 'usage: tcpd [start/stop/configure] [options]'
  43.     tlsdHelp = 'usage: tlsd [start/stop/configure] [options]'
  44.     canctldHelp = 'usage: canctld [start/stop/configure] [options]'
  45.     simHelp = 'usage: sim [record/play/add/rem/save/load] [options]'
  46.     help_command_map = {}
  47.    
  48.     logOptions = {}
  49.     ifOptions = {}
  50.     bridgeOptions = {}
  51.     tcpdOptions = {}
  52.     tlsdOptions = {}
  53.     canctldOptions = {}
  54.     simOptions = {}
  55.  
  56.     logValidOptions = {'level' : ['range', 0, 3]}
  57.     ifValidOptions = {'type' : ['alt', 'serial','udp']}
  58.    
  59.     ifSerialOptions = {'' : []}
  60.     ifCanStimOptions = {'' : []}
  61.     ifTelnetOptions = {'' : []}
  62.     ifTcpTlsOptions = {'' : []}
  63.     ifUDPOptions = {'' : []}
  64.    
  65.     bridgeValidOptions = {'' : ['']}
  66.     tcpdValidOptions = {'' : []}
  67.     tlsdValidOptions = {'' : []}
  68.     canctldValidOptions = {'' : []}
  69.     simValidOptions = {'' : []}
  70.  
  71.     def __init__ (self):
  72.        
  73.         self.command_list = [['help', self.helpCmd, '', 'display help'],
  74.                        ['log', self.logCmd, '<options>', 'log control: \"help log\"'],
  75.                        ['exec', self.execCmd, '<filename>', 'run command listing\n'],
  76.                        ['filter', self.filterCmd, '<cmd>', 'filter commands: \"help filter\"'],
  77.                        ['state', self.stateCmd, '<cmd>', 'state commands: \"help state\"\n'],
  78.                        ['addif', self.ifAddCmd, '<options>', 'add interface: \"help addif\"'],
  79.                        ['remif', self.ifRemCmd, '<name>', 'remove interface'],
  80.                        ['ifup', self.ifUpCmd, '<name>', 'bring up interface'],
  81.                        ['ifdown', self.ifDownCmd, '<name>', 'bring down interface\n'],
  82.                        ['addbrigde', self.addBridgeCmd, '<options>', 'add bridge: \"help addbridge\"'],
  83.                        ['rembridge', self.remBridgeCmd, '<id>', 'remove bridge\n'],
  84.                        ['tcpd', self.tcpdCmd, '<cmd>', 'tcpd server control: \"help tcpd\"'],
  85.                        ['tlsd', self.tlsdCmd, '<cmd>', 'tlsd server control: \"help tlsd\"'],
  86.                        ['canctld', self.canCtldCmd, '<cmd>', 'canctld server control: \"help canctld\"\n'],
  87.                        ['status', self.statusCmd, '', 'show daemon status'],
  88.                        ['stats', self.statsCmd, '', 'show statistics\n'],
  89.                        ['nodelist', self.nodesCmd, '', 'list can nodes'],
  90.                        ['filterlist', self.filterlistCmd, '', 'list active filters\n'],
  91.                        ['sim', self.simCmd, '<cmd>', 'simulator commands: \"help sim\"']]
  92.        
  93.         index = 0
  94.         for cmd in self.command_list:
  95.             self.command_map[cmd[0]] = index
  96.             index += 1
  97.  
  98.         self.help_command_map = {'log' : self.logHelp,
  99.                                 'filter' : self.filterHelp,
  100.                                 'state' : self.stateHelp,
  101.                                 'addif' : self.addifHelp,
  102.                                 'addbridge' : self.addbridgeHelp,
  103.                                 'tcpd' : self.tcpdHelp,
  104.                                 'tlsd' : self.tlsdHelp,
  105.                                 'canctld' : self.canctldHelp,
  106.                                 'sim' : self.simHelp}
  107.  
  108.         self.cfg = DaemonConfig()
  109.    
  110.     class IfNotifier():
  111.         """ Used by if threads to send messages to the main program thread """
  112.        
  113.         parent = None
  114.         UNDEFINED = 0
  115.         TERMINATE = 1
  116.        
  117.         def __init__(self, parent):
  118.             self.parent = parent
  119.    
  120.         def notify(self, msg):
  121.             if msg == self.TERMINATE:
  122.                 print 'Main terminate notify'
  123.             else:
  124.                 print 'UNDEFINED NOTIFY'
  125.        
  126.    
  127.     def __rightAdjust(self, refstr, str):
  128.         spcstr = ''
  129.         endpos = 25-len(refstr)
  130.         for i in range(1,endpos):
  131.             if i == endpos-5:
  132.                 spcstr += ':'
  133.             else:
  134.                 spcstr += ' '
  135.         return (spcstr+str)
  136.    
  137.     def helpCmd(self, *args):
  138.         try:
  139.             args = args[0]
  140.         except:
  141.             args = []
  142.         if len(args) < 1:
  143.             quitStr = 'quit, exit'
  144.             print quitStr, self.__rightAdjust(quitStr, 'shutdown pyCanDaemon')
  145.             for cmd in self.command_list:
  146.                 cmdstr = cmd[self.CMDLIST_NAME] + ' ' + cmd[self.CMDLIST_PARAMINFO]
  147.                 print cmdstr, \
  148.                       self.__rightAdjust(cmdstr, cmd[self.CMDLIST_HELP])
  149.         elif len(args) < 2:
  150.             subCmd = args[0]
  151.             if self.help_command_map.has_key(subCmd):
  152.                 print self.help_command_map[subCmd]
  153.             else:
  154.                 print 'no help for ' + subCmd
  155.         else:
  156.             print 'usage: help [topic]'
  157.  
  158.     def filterCmd(self, *args):
  159.         try:
  160.             args = args[0]
  161.         except:
  162.             args = []
  163.         log.debug('filterCmd ' + str(args))
  164.         if len(args) < 2:
  165.             print 'Invalid arguments\n' + self.filterHelp
  166.             return
  167.         cmd = args[0]
  168.         filterName = args[1]
  169.         # FIXME: verify
  170.         if cmd == 'add':
  171.             print 'Importing filter: ' + filterName
  172.             self.cfg.filterCfg.importFilter(filterName)
  173.         elif cmd == 'rem' or cmd == 'remove':
  174.             print 'Deleting filter: ' + filterName
  175.             # FIXME: actually delete
  176.             raise 'Not implemented'
  177.    
  178.     def stateCmd(self, *args):
  179.         try:
  180.             args = args[0]
  181.         except:
  182.             args = []
  183.         log.debug('stateCmd ' + str(args))
  184.         if len(args) < 2:
  185.             print 'Invalid arguments\n' + self.stateHelp
  186.             return
  187.         cmd = args[0]
  188.         spaceName = args[1]
  189.         # FIXME: verify
  190.         if cmd == 'add':
  191.             print 'Importing state space: ' + spaceName
  192.             self.cfg.stateSpaceCfg.importSpace(spaceName)
  193.         elif cmd == 'rem' or cmd == 'remove':
  194.             print 'Deleting state space: ' + spaceName
  195.             # FIXME: actually delete statespace
  196.             raise 'Not implemented'
  197.    
  198.     def ifAddCmd(self, *args):
  199.         raise 'not implemented'
  200.    
  201.     def ifRemCmd(self, *args):
  202.         raise 'not implemented'
  203.  
  204.     def ifUpCmd(self, *args):
  205.         raise 'not implemented'
  206.  
  207.     def ifDownCmd(self, *args):
  208.         raise 'not implemented'
  209.    
  210.     def addBridgeCmd(self, *args):
  211.         raise 'not implemented'
  212.  
  213.     def remBridgeCmd(self, *args):
  214.         raise 'not implemented'
  215.    
  216.     def tcpdCmd(self, *args):
  217.         raise 'not implemented'
  218.    
  219.     def tlsdCmd(self, *args):
  220.         raise 'not implemented'
  221.    
  222.     def canCtldCmd(self, *args):
  223.         raise 'not implemented'
  224.    
  225.     def statusCmd(self, *args):
  226.         raise 'not implemented'
  227.    
  228.     def statsCmd(self, *args):
  229.         raise 'not implemented'
  230.    
  231.     def nodesCmd(self, *args):
  232.         raise 'not implemented'
  233.    
  234.     def filterlistCmd(self, *args):
  235.         raise 'not implemented'
  236.    
  237.     def simCmd(self, *args):
  238.         raise 'not implemented'
  239.    
  240.     def logCmd(self, *args):
  241.         raise 'not implemented'
  242.  
  243.     def execCmd(self, *args):
  244.         raise 'not implemented'
  245.    
  246.     def parseCommand(self, cmdstr):
  247.         incmd = cmdstr.strip()
  248.         cmd = incmd.split(' ')
  249.         if len(cmd[0]) < 2:
  250.             return
  251.         cmd[0] = cmd[0].lower()
  252.         if cmd[0] == 'quit' or cmd[0] == 'exit':
  253.             self.terminated = True
  254.         elif self.command_map.has_key(cmd[0]):
  255.             self.command_list[self.command_map[cmd[0]]][self.CMDLIST_HANDLER](cmd[1:])
  256.         else:
  257.             print 'unknown command: ' + cmd[0]
  258.    
  259.     def exitHelper(self):
  260.         if self.nodeIf is not None and self.nodeIf.running():
  261.             self.nodeIf.stop()
  262.            
  263.     def exceptHelper(self, type, value, tb):
  264.         import traceback
  265.         traceback.print_exception(type, value, tb)
  266.         print '\nException in main program, shutting down threads'
  267.         self.terminated = True
  268.         self.exitHelper()
  269.  #       sys.exit(-1)
  270.  
  271.     def run(self):
  272.         try:
  273.             myPath = os.path.dirname(__file__)
  274.             os.chdir(myPath)
  275.         except:
  276.             return
  277.        
  278.         print 'INIT: Start logging'
  279.         log.basicConfig(level=log.DEBUG)
  280.        
  281.         """command parameters only dictate verbosity and use of config file"""
  282.         print 'INIT: Get config options from command line / config file'
  283.         try:
  284.             opts, args = getopt.getopt(sys.argv[1:], "ho:v", ["help", "output="])
  285.         except getopt.GetoptError:
  286.             print 'Invalid usage'
  287.             usage()
  288.             sys.exit(2)
  289.      #   output = None
  290.      #   verbose = False
  291.         for o, a in opts:
  292.             if o == "-v":
  293.                 pass
  294.      #           verbose = True
  295.             if o in ("-h", "--help"):
  296.                 usage()
  297.                 sys.exit()
  298.             if o in ("-o", "--output"):
  299.                 pass
  300.     #            output = a
  301.  
  302.         """load config defaults, or last config if exists"""
  303.         """run startup.cfg"""
  304.        
  305. #        print 'INIT: Loading filters and spaces'
  306. #       self.cfg.filterCfg.importFilter('DefaultFilter')
  307. #       self.cfg.stateSpaceCfg.importSpace('DefaultStateSpace')
  308. #        self.cfg.stateSpaceCfg.loadSpaces()
  309. #        self.cfg.filterCfg.loadFilters()
  310. #        self.cfg.setupFilterBindings()
  311. #        self.cfg.setupFilterChain()
  312.  
  313. #        print 'INIT: Starting selected can interface'
  314. #        ''' nodeif thread launch '''
  315. #        self.ifNotifier = self.IfNotifier()
  316. #        pktHandler = CanPktHandler1(self.cfg)
  317. #        
  318. #        ifConfig = NodeIfCanStim.DEFAULT_CONFIG
  319. #        self.nodeIf = NodeIfCanStim(ifConfig, pktHandler, self.ifNotifier)
  320. # #       ifConfig = NodeIfSerial.DEFAULT_CONFIG
  321. #    
  322. #        atexit.register(self.exitHelper)
  323. #        sys.excepthook = self.exceptHelper
  324.  #       self.nodeIf = NodeIfSerial(pktHandler, ifConfig)
  325. #        
  326. #        if not self.nodeIf.start():
  327. #            print 'FATAL: Failed to initialize node interface.'
  328. #            print 'This may indicate that the interface is unavailable, ' \
  329. #                  'or that you do not have permission to access it.'
  330. #            sys.exit(-1)
  331.  
  332.         print 'Initialize/gather info on connected can nodes and load associated state'
  333.         print 'Start selected TCP and UDP server(s)'
  334.         # server threads launch
  335.        
  336.         print 'CanDaemon v1 ready'
  337.         print 'Enter command or type \"help\" for a list of commands'
  338.         while not self.terminated:
  339.             input = raw_input('> ')
  340.             self.parseCommand(input)
  341.  
  342.         print 'Shutdown'
  343. #        if self.nodeIf.running():
  344. #            print 'Stopping If thread'
  345. #            self.nodeIf.stop()
  346.  
  347. #        self.cfg.stateSpaceCfg.saveSpaces()
  348. #        self.cfg.filterCfg.saveFilters()
  349.        
  350.         print 'Waiting 0.1..'
  351.         time.sleep(0.1) # wait for threads
  352.         print 'Terminating'
  353.         sys.exit(0) # will except if there are threads remaining
  354.  
  355. #---------------------------------------------------------------------------
  356.  
  357. def main():
  358.     daemonApp = CanDaemon()
  359. #    install_thread_excepthook()
  360.     daemonApp.run()
  361.  
  362. #---------------------------------------------------------------------------
  363.  
  364. if __name__ == '__main__':
  365.     __name__ = 'Main'
  366.     main()
  367.