]> sigrok.org Git - libsigrok.git/blobdiff - bindings/cxx/enums.py
bindings: Add Channel::get_index() method.
[libsigrok.git] / bindings / cxx / enums.py
index f5f6e58d91c5367032eb1249e1a5ea839ce21fd5..6eeedeaaffcb3bf8d8150a2a4dd5c09f1ff5e0ce 100644 (file)
 ## along with this program.  If not, see <http://www.gnu.org/licenses/>.
 ##
 
+import logging, warnings
 from pygccxml import parser, declarations
 from collections import OrderedDict
 import sys, os, re
 
+class crapfilter(logging.Filter):
+    def filter(self, record):
+        if record.msg.find('GCCXML version') > -1:
+            return 0
+        return 1
+logger = logging.getLogger('pygccxml.cxx_parser').addFilter(crapfilter())
+warnings.filterwarnings('ignore', message="unable to find out array size from expression")
+
 # Get directory this script is in.
 dirname = os.path.dirname(os.path.realpath(__file__))
 
 # Parse GCCXML output to get declaration tree.
 decls = parser.parse_xml_file(
-    os.path.join(dirname, "libsigrok.xml"), parser.config_t())
+    os.path.join(dirname, "libsigrok.xml"), parser.gccxml_configuration_t())
 
 # Get global namespace from declaration tree.
 ns = declarations.get_global_namespace(decls)