- added sendmail object ('mailer') as a member of PLCAPI class
[plcapi.git] / PLC / API.py
1 #
2 # PLCAPI XML-RPC and SOAP interfaces
3 #
4 # Aaron Klingaman <alk@absarokasoft.com>
5 # Mark Huang <mlhuang@cs.princeton.edu>
6 #
7 # Copyright (C) 2004-2006 The Trustees of Princeton University
8 # $Id: API.py,v 1.7 2006/10/30 16:37:11 mlhuang Exp $
9 #
10
11 import sys
12 import traceback
13 import string
14
15 import xmlrpclib
16
17 # See "2.2 Characters" in the XML specification:
18 #
19 # #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD]
20 # avoiding
21 # [#x7F-#x84], [#x86-#x9F], [#xFDD0-#xFDDF]
22
23 invalid_xml_ascii = map(chr, range(0x0, 0x8) + [0xB, 0xC] + range(0xE, 0x1F))
24 xml_escape_table = string.maketrans("".join(invalid_xml_ascii), "?" * len(invalid_xml_ascii))
25
26 def xmlrpclib_escape(s, replace = string.replace):
27     """
28     xmlrpclib does not handle invalid 7-bit control characters. This
29     function augments xmlrpclib.escape, which by default only replaces
30     '&', '<', and '>' with entities.
31     """
32
33     # This is the standard xmlrpclib.escape function
34     s = replace(s, "&", "&amp;")
35     s = replace(s, "<", "&lt;")
36     s = replace(s, ">", "&gt;",)
37
38     # Replace invalid 7-bit control characters with '?'
39     return s.translate(xml_escape_table)
40
41 def xmlrpclib_dump(self, value, write):
42     """
43     xmlrpclib cannot marshal instances of subclasses of built-in
44     types. This function overrides xmlrpclib.Marshaller.__dump so that
45     any value that is an instance of one of its acceptable types is
46     marshalled as that type.
47
48     xmlrpclib also cannot handle invalid 7-bit control characters. See
49     above.
50     """
51
52     # Use our escape function
53     args = [self, value, write]
54     if isinstance(value, (str, unicode)):
55         args.append(xmlrpclib_escape)
56
57     try:
58         # Try for an exact match first
59         f = self.dispatch[type(value)]
60     except KeyError:
61         # Try for an isinstance() match
62         for Type, f in self.dispatch.iteritems():
63             if isinstance(value, Type):
64                 f(*args)
65                 return
66         raise TypeError, "cannot marshal %s objects" % type(value)
67     else:
68         f(*args)
69
70 # You can't hide from me!
71 xmlrpclib.Marshaller._Marshaller__dump = xmlrpclib_dump
72
73 # SOAP support is optional
74 try:
75     import SOAPpy
76     from SOAPpy.Parser import parseSOAPRPC
77     from SOAPpy.Types import faultType
78     from SOAPpy.NS import NS
79     from SOAPpy.SOAPBuilder import buildSOAP
80 except ImportError:
81     SOAPpy = None
82
83 from PLC.Config import Config
84 from PLC.Faults import *
85 import PLC.Methods
86 from PLC.sendmail import sendmail
87
88 class PLCAPI:
89     methods = PLC.Methods.methods
90
91     def __init__(self, config = "/etc/planetlab/plc_config", encoding = "utf-8"):
92         self.encoding = encoding
93
94         # Better just be documenting the API
95         if config is None:
96             return
97
98         # Load configuration
99         self.config = Config(config)
100         
101         # Initialize mailer
102         self.mailer = sendmail(self.config)
103         
104         # Initialize database connection
105         if self.config.PLC_DB_TYPE == "postgresql":
106             from PLC.PostgreSQL import PostgreSQL
107             self.db = PostgreSQL(self)
108
109         else:
110             raise PLCAPIError, "Unsupported database type " + self.config.PLC_DB_TYPE
111
112     def callable(self, method):
113         """
114         Return a new instance of the specified method.
115         """
116
117         # Look up method
118         if method not in self.methods:
119             raise PLCInvalidAPIMethod, method
120
121         # Get new instance of method
122         try:
123             classname = method.split(".")[-1]
124             module = __import__("PLC.Methods." + method, globals(), locals(), [classname])
125             return getattr(module, classname)(self)
126         except ImportError, AttributeError:
127             raise PLCInvalidAPIMethod, method
128
129     def call(self, source, method, *args):
130         """
131         Call the named method from the specified source with the
132         specified arguments.
133         """
134
135         function = self.callable(method)
136         function.source = source
137         return function(*args)
138
139     def handle(self, source, data):
140         """
141         Handle an XML-RPC or SOAP request from the specified source.
142         """
143
144         # Parse request into method name and arguments
145         try:
146             interface = xmlrpclib
147             (args, method) = xmlrpclib.loads(data)
148             methodresponse = True
149         except Exception, e:
150             if SOAPpy is not None:
151                 interface = SOAPpy
152                 (r, header, body, attrs) = parseSOAPRPC(data, header = 1, body = 1, attrs = 1)
153                 method = r._name
154                 args = r._aslist()
155                 # XXX Support named arguments
156             else:
157                 raise e
158
159         try:
160             result = self.call(source, method, *args)
161         except PLCFault, fault:
162             # Handle expected faults
163             if interface == xmlrpclib:
164                 result = fault
165                 methodresponse = None
166             elif interface == SOAPpy:
167                 result = faultParameter(NS.ENV_T + ":Server", "Method Failed", method)
168                 result._setDetail("Fault %d: %s" % (fault.faultCode, fault.faultString))
169
170         # Return result
171         if interface == xmlrpclib:
172             if not isinstance(result, PLCFault):
173                 result = (result,)
174             data = xmlrpclib.dumps(result, methodresponse = True, encoding = self.encoding, allow_none = 1)
175         elif interface == SOAPpy:
176             data = buildSOAP(kw = {'%sResponse' % method: {'Result': result}}, encoding = self.encoding)
177
178         return data