nsc.py :  » Database » Python-Remote-Objects » Pyro-3.10 » Pyro » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Database » Python Remote Objects 
Python Remote Objects » Pyro 3.10 » Pyro » nsc.py
#############################################################################
#
#  $Id: nsc.py,v 2.19.2.8 2009/07/12 15:38:25 irmen Exp $
#  Pyro Name Server Control Tool
#
#  This is part of "Pyro" - Python Remote Objects
#  which is (c) Irmen de Jong - irmen@users.sourceforge.net
#
#############################################################################

import Pyro.constants
import Pyro.util
import Pyro.core
import Pyro.errors
from Pyro.naming import NameServerLocator
from Pyro.errors import NamingError,ConnectionDeniedError,PyroError
from Pyro.protocol import getHostname

class PyroNSControl(object):
  def args(self, args):
    self.Args = Pyro.util.ArgParser()
    self.Args.parse(args,'h:p:c:i:')
    self.Args.printIgnored()
    if self.Args.args:
      cmd = self.Args.args[0]
      del self.Args.args[0]
      return cmd
    return None  

  def connect(self, sysCmd=None):
    host = self.Args.getOpt('h',None)
    bcaddr = self.Args.getOpt('c',None)
    port = int(self.Args.getOpt('p', 0))
    ident = self.Args.getOpt('i',None)
    if port==0:
      port=None

    locator = NameServerLocator(identification=ident)
    if not sysCmd:
      self.NS = locator.getNS(host,port,1,bcaddr=bcaddr)
      print 'NS is at',self.NS.URI.address,'('+(getHostname(self.NS.URI.address) or '??')+') port',self.NS.URI.port
      self.NS._setIdentification(ident)
    else:
      result = locator.sendSysCommand(sysCmd,host,port,1,bcaddr=bcaddr)
      print 'Result from system command',sysCmd,':',result

  def handleError(self, msg, exc):
    print "## %s: " % msg, 
    if isinstance(exc.args, (list, tuple)):
      print "; ".join(exc.args[:-1]),
    else:
      print exc.args,
    print " ##"

  def ping(self):
    self.connect()
    self.NS.ping()
    print 'NS is up and running!'

  def listall(self):
    self.connect()
    flat=self.NS.flatlist()
    flat.sort()
    print '-------------- START DATABASE'
    for (name,val) in flat:
      print name,' --> ',str(val)
    print '-------------- END'

  def list(self):
    self.connect()
    if not self.Args.args:
      # list the current group
      print self.NS.fullName(''),'-->',
      self.printList(self.NS.list(None))
    else:
      # list all subpaths
      for n in self.Args.args:
        print self.NS.fullName(n),' -->',
        try:
          self.printList(self.NS.list(n))
        except NamingError,x:
            self.handleError("can't list", x)

  def printList(self,list):
    list.sort()
    print '(',
    for (n,t) in list:
      if t==0:
        print '['+n+']',
      elif t==1:
        print n,
    print ')'

  def resolve(self):
    self.connect()
    if not self.Args.args:
      print 'No arguments, nothing to resolve'
    else:
      for n in self.Args.args:
        print n,' -->',
        try:
          print self.NS.resolve(n)
        except NamingError,x:
            self.handleError("can't resolve", x)
  
  def register(self):
    self.connect()
    try:
      self.NS.register(self.Args.args[0],self.Args.args[1])
      uri=Pyro.core.PyroURI(self.Args.args[1])
      print 'registered',self.Args.args[0],' --> ',uri
    except NamingError,x:
      self.handleError('Error from NS',x)
    except IndexError:
      print 'Register needs 2 args: name URI'
    
  def remove(self):
    self.connect()
    for n in self.Args.args:
      try:
        self.NS.unregister(n)
        print n,'unregistered.'
      except NamingError,x:
        self.handleError("Can't unregister", x)

  def creategroup(self):
    self.connect()
    for n in self.Args.args:
      try:
        self.NS.createGroup(n)
        print n,'created.'
      except NamingError,x:
        self.handleError("Can't create group '"+n+"'",x)

  def deletegroup(self):
    self.connect()
    for n in self.Args.args:
      try:
        self.NS.deleteGroup(n)
        print n,'deleted.'
      except NamingError,x:
        self.handleError("Can't delete group '"+n+"'",x)
        
  def showmeta(self):
    self.connect()
    if not self.Args.args:
      print 'No arguments, nothing to show meta of'
    for n in self.Args.args:
      try:
        print "META INFO OF",self.NS.fullName(n)
        print "system meta info :",self.NS._getSystemMeta(n)
        print "  user meta info :",self.NS.getMeta(n)
      except NamingError,x:
        self.handleError("Can't get metadata",x)
  
  def setmeta(self):
    self.connect()
    try:
      if len(self.Args.args)>2:
        raise IndexError
      name=self.Args.args[0]
      meta=self.Args.args[1]
      self.NS.setMeta(name,meta)
      print "Metadata of",name,"set."
    except IndexError:
      print 'Setmeta needs 2 args: name metadata'

  def resync(self):
    self.connect()
    self.NS.resync()
    print 'resync done'

  def shutdown(self):
    self.connect(sysCmd='shutdown')


def usage():
  print 'PyroNS control program - usage is as follows;'
  print '>> pyro-nsc [-h host] [-p port] [-c bcaddr] [-i identification] command [args...]'
  print 'where command is one of: ping, list, listall, resolve, register, remove, creategroup, deletegroup, showmeta, setmeta, resync, shutdown'
  print '      host is the host where the NS should be contacted'
  print '      port is the non-standard Pyro NS broadcast port'
  print '           (if host is specified, it is the Pyro port instead)'
  print '      bcaddr allows you to override the broadcast address'
  print '      identification is the authentication ID to connect to the server'
  print '      args... depend on the command.'
  raise SystemExit

def main(argv):

  ctrl = PyroNSControl()
  cmd=ctrl.args(argv)

  if not cmd:
    usage()

  try:
    # nice construct to map commands to the member function to call
    call= { 'ping': ctrl.ping,
        'list': ctrl.list,
        'listall': ctrl.listall,
        'resolve': ctrl.resolve,
        'register': ctrl.register,
        'remove': ctrl.remove,
        'creategroup': ctrl.creategroup,
        'deletegroup': ctrl.deletegroup,
        'shutdown': ctrl.shutdown,
        'showmeta': ctrl.showmeta,
        'setmeta': ctrl.setmeta,
        'resync': ctrl.resync   } [cmd] 
        
  except KeyError:
    usage()
  try:
    Pyro.core.initClient(banner=0)
    call()
  except ConnectionDeniedError,arg:
    print 'Could not connect to the server:',arg
    if str(arg)==Pyro.constants.deniedReasons[Pyro.constants.DENIED_SECURITY]:
      print "Supply correct authentication ID?"
  except PyroError,arg:
    print 'There is a problem:',arg
  except Exception,x:
    print 'CAUGHT ERROR, printing Pyro traceback >>>>>>',x
    print ''.join(Pyro.util.getPyroTraceback(x))
    print '<<<<<<< end of Pyro traceback'


# allow easy usage with python -m
if __name__=="__main__":
  import sys
  main(sys.argv[1:])
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.