fixed: encodes boolean and double type values for the requests
[plcapi.git] / doc / DocBookLocal.py
old mode 100644 (file)
new mode 100755 (executable)
index 4a029d2..317330e
@@ -1,7 +1,26 @@
+#!/usr/bin/env python
 
 from PLC.API import PLCAPI
+from PLC.Faults import PLCInvalidAPIMethod
+from DocBook import DocBook
+import sys
 
+api = PLCAPI(None)
+methods = api.all_methods
+methods.sort()
+good_apis = []
+bad_apis = []
+for method in methods:
+    try:
+        good_api = api.callable(method)
+        good_apis.append(good_api)
+    except PLCInvalidAPIMethod, e:
+        bad_apis.append((method,e))
 
-def get_func_list():
-       api = PLCAPI(None)
-       return [api.callable(method) for method in api.methods]
+DocBook(good_apis).Process()
+
+if len(bad_apis):
+    sys.stderr.write("UNEXPECTED: There are %d non-callable methods:\n"%(len(bad_apis)))
+    for bad_api,e in bad_apis:
+        sys.stderr.write("\t%s:%s\n" % (bad_api,e))
+    sys.exit(-1)