create logfile plcapi.log in /var/log and chown it to apache
[plcapi.git] / aspects / __init__.py
index bcce3bc..41cbe77 100644 (file)
@@ -1,16 +1,14 @@
-
-
 from pyaspects.weaver import weave_class_method
 
 from PLC.Method import Method
-from aspects.omfaspects import OMFAspect
+from aspects.ratelimitaspects import RateLimitAspect
 
+def apply_ratelimit_aspect():
+    weave_class_method(RateLimitAspect(), Method, "__call__")
 
-def apply_aspects():
+def apply_debugger_aspect():
+    # just log all method calls w/ their parameters
+    from pyaspects.debuggeraspect import DebuggerAspect
+    weave_class_method(DebuggerAspect(out=open("/tmp/all_method_calls.log", "a")), Method, "__call__")
 
-    # TEST
-    #from pyaspects.debuggeraspect import DebuggerAspect
-    #weave_class_method(DebuggerAspect(out=open("/tmp/all_method_calls.log", "a")), Method, "__call__")
 
-    # track all PLC methods to add OMF hooks
-    weave_class_method(OMFAspect(), Method, "__call__")