X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FAPI.py;h=55a034921d36cd5e7a0d4d46411e4554a2e38313;hb=1cda98c34563ed3e90a9d2219730ae81f9705dc6;hp=c4ec4c2c3d6b81af9e22f7b8d9d0bda64978d3c9;hpb=f5cd72e35593c96b9996ab4e49674cccc7525c48;p=plcapi.git diff --git a/PLC/API.py b/PLC/API.py index c4ec4c2..55a0349 100644 --- a/PLC/API.py +++ b/PLC/API.py @@ -84,7 +84,6 @@ except ImportError: from PLC.Config import Config from PLC.Faults import * import PLC.Methods -import PLC.Legacy import PLC.Accessors def import_deep(name): @@ -98,7 +97,6 @@ class PLCAPI: # flat list of method names native_methods = PLC.Methods.native_methods - legacy_methods = PLC.Legacy.native_methods # other_methods_map : dict {methodname: fullpath} # e.g. 'Accessors' -> 'PLC.Accessors.Accessors' @@ -112,7 +110,7 @@ class PLCAPI: for method in getattr(import_deep(fullpath),"methods"): other_methods_map[method] = fullpath - all_methods = native_methods + legacy_methods + other_methods_map.keys() + all_methods = native_methods + other_methods_map.keys() def __init__(self, config = "/etc/planetlab/plc_config", encoding = "utf-8"): self.encoding = encoding @@ -128,10 +126,16 @@ class PLCAPI: if self.config.PLC_DB_TYPE == "postgresql": from PLC.PostgreSQL import PostgreSQL self.db = PostgreSQL(self) - else: raise PLCAPIError, "Unsupported database type " + self.config.PLC_DB_TYPE + # Aspects modify the API injecting code before/after method + # calls. As of now we only have aspects for OMF integration, + # that's why we enable aspects only if PLC_OMF is set to true. + if self.config.PLC_OMF: + from aspects import apply_aspects; apply_aspects() + + def callable(self, method): """ Return a new instance of the specified method. @@ -146,8 +150,6 @@ class PLCAPI: classname = method.split(".")[-1] if method in self.native_methods: fullpath="PLC.Methods." + method - elif method in self.legacy_methods: - fullpath="PLC.Legacy." + method else: fullpath=self.other_methods_map[method] module = __import__(fullpath, globals(), locals(), [classname])