remove debugging print statement
[plcapi.git] / plcsh
1 #!/usr/bin/python
2 #
3 # Interactive shell for testing PLCAPI
4 #
5 # Mark Huang <mlhuang@cs.princeton.edu>
6 # Copyright (C) 2005 The Trustees of Princeton University
7 #
8 # $Id$
9 #
10
11 import os
12 import sys
13 from socket import gethostname
14 from optparse import OptionParser
15 from getpass import getpass
16 from traceback import print_exc
17
18 sys.path.append(os.path.dirname(os.path.realpath(sys.argv[0])))
19 from PLC.Shell import Shell
20
21 parser = OptionParser(add_help_option = False)
22 parser.add_option("-f", "--config", help = "PLC configuration file")
23 parser.add_option("-h", "--url", help = "API URL")
24 parser.add_option("-c", "--cacert", help = "API SSL certificate")
25 parser.add_option("-k", "--insecure", help = "Do not check SSL certificate")
26 parser.add_option("-m", "--method", help = "API authentication method")
27 parser.add_option("-s", "--session", help = "API session key")
28 parser.add_option("-u", "--user", help = "API user name")
29 parser.add_option("-p", "--password", help = "API password")
30 parser.add_option("-r", "--role", help = "API role")
31 parser.add_option("-x", "--xmlrpc", action = "store_true", default = False, help = "Use XML-RPC interface")
32 parser.add_option("--help", action = "help", help = "show this help message and exit")
33 (options, args) = parser.parse_args()
34
35 # If user is specified but password is not
36 if options.user is not None and options.password is None:
37     try:
38         options.password = getpass()
39     except (EOFError, KeyboardInterrupt):
40         print
41         sys.exit(0)
42
43 # Initialize a single global instance (scripts may re-initialize
44 # this instance and/or create additional instances).
45 try:
46     shell = Shell(globals = globals(),
47                   config = options.config,
48                   url = options.url, xmlrpc = options.xmlrpc, cacert = options.cacert,
49                   method = options.method, role = options.role,
50                   user = options.user, password = options.password,
51                   session = options.session)
52     # Register a few more globals for backward compatibility
53     auth = shell.auth
54     api = shell.api
55     config = shell.config
56 except Exception, err:
57     print "Error:", err
58     print
59     parser.print_help()
60     sys.exit(1)
61
62 # If called by a script 
63 if len(sys.argv) > 1 and os.path.exists(sys.argv[1]):
64     # Pop us off the argument stack
65     sys.argv.pop(0)
66     script = sys.argv[0]
67     
68     # Add of script to sys.path 
69     path = os.path.dirname(os.path.abspath(script))
70     sys.path.append(path)
71     execfile(sys.argv[0])
72
73 # Otherwise, run an interactive shell environment
74 else:
75     if shell.server is None:
76         print "PlanetLab Central Direct API Access"
77         prompt = ""
78     elif shell.auth['AuthMethod'] == "anonymous":
79         prompt = "[anonymous]"
80         print "Connected anonymously"
81     elif shell.auth['AuthMethod'] == "session":
82         # XXX No way to tell node and user sessions apart from the
83         # client point of view.
84         prompt = "[%s]" % gethostname()
85         print "%s connected using session authentication" % gethostname()
86     else:
87         prompt = "[%s]" % shell.auth['Username']
88         print "%s connected using %s authentication" % \
89               (shell.auth['Username'], shell.auth['AuthMethod'])
90
91     # Readline and tab completion support
92     import atexit
93     import readline
94     import rlcompleter
95
96     print 'Type "system.listMethods()" or "help(method)" for more information.'
97     # Load command history
98     history_path = os.path.join(os.environ["HOME"], ".plcapi_history")
99     try:
100         file(history_path, 'a').close()
101         readline.read_history_file(history_path)
102         atexit.register(readline.write_history_file, history_path)
103     except IOError:
104         pass
105
106     # Enable tab completion
107     readline.parse_and_bind("tab: complete")
108
109     try:
110         while True:
111             command = ""
112             while True:
113                 # Get line
114                 try:
115                     if command == "":
116                         sep = ">>> "
117                     else:
118                         sep = "... "
119                     line = raw_input(prompt + sep)
120                 # Ctrl-C
121                 except KeyboardInterrupt:
122                     command = ""
123                     print
124                     break
125
126                 # Build up multi-line command
127                 command += line
128
129                 # Blank line or first line does not end in :
130                 if line == "" or (command == line and line[-1] != ':'):
131                     break
132
133                 command += os.linesep
134
135             # Blank line
136             if command == "":
137                 continue
138             # Quit
139             elif command in ["q", "quit", "exit"]:
140                 break
141
142             try:
143                 try:
144                     # Try evaluating as an expression and printing the result
145                     result = eval(command)
146                     if result is not None:
147                         print result
148                 except SyntaxError:
149                     # Fall back to executing as a statement
150                     exec command
151             except Exception, err:
152                 print_exc()
153
154     except EOFError:
155         print
156         pass