diff options
| author | Tristan Gingold <tgingold@free.fr> | 2017-10-03 05:51:24 +0200 | 
|---|---|---|
| committer | Tristan Gingold <tgingold@free.fr> | 2017-10-03 05:51:24 +0200 | 
| commit | c88790b96b70bd6cb10b806978c34c42f2616e6f (patch) | |
| tree | 6ab8f938b3f7731686dc84de476de6ad37c51587 /src/vhdl/python | |
| parent | 4e05204aa6fc73e440196bcc9be14cf2e1b9b6a4 (diff) | |
| download | ghdl-c88790b96b70bd6cb10b806978c34c42f2616e6f.tar.gz ghdl-c88790b96b70bd6cb10b806978c34c42f2616e6f.tar.bz2 ghdl-c88790b96b70bd6cb10b806978c34c42f2616e6f.zip | |
WIP: python binding to libghdl
Diffstat (limited to 'src/vhdl/python')
| -rw-r--r-- | src/vhdl/python/libghdl/__init__.py | 11 | ||||
| -rw-r--r-- | src/vhdl/python/libghdl/thin.py | 158 | ||||
| -rwxr-xr-x | src/vhdl/python/pnodespy.py | 102 | 
3 files changed, 271 insertions, 0 deletions
| diff --git a/src/vhdl/python/libghdl/__init__.py b/src/vhdl/python/libghdl/__init__.py new file mode 100644 index 000000000..d36f58d9f --- /dev/null +++ b/src/vhdl/python/libghdl/__init__.py @@ -0,0 +1,11 @@ +import ctypes +import sys + +dll_ext = {'linux': '.so', +           'linux2': '.so', +           'darwin': '.dylib', +           'win32': '.dll', +           'cygwin': '.dll'} + +libghdl = ctypes.CDLL("libghdl" + dll_ext.get(sys.platform, '.so')) +libghdl.libghdl_init() diff --git a/src/vhdl/python/libghdl/thin.py b/src/vhdl/python/libghdl/thin.py new file mode 100644 index 000000000..9110e3f3d --- /dev/null +++ b/src/vhdl/python/libghdl/thin.py @@ -0,0 +1,158 @@ +from libghdl import libghdl +from ctypes import (c_char_p, c_int32) +import iirs +import nodes_meta +from nodes_meta import (Attr, types) +# from libghdl_defs import (fields, Iir_Kind, types, Attr) + +# libghdl + +_set_option = libghdl.libghdl__set_option +_analyze_file = libghdl.libghdl__analyze_file + + +def set_option(opt): +    return _set_option(c_char_p(opt), len(opt)) + + +def analyze_init(): +    return libghdl.libghdl__analyze_init() + + +def analyze_file(filename): +    return _analyze_file(c_char_p(filename), len(filename)) + + +# Lists + +Get_Nbr_Elements = libghdl.lists__get_nbr_elements + +Get_Nth_Element = libghdl.lists__get_nth_element + +# Files + +Location_To_File = libghdl.files_map__location_to_file + +Location_File_To_Pos = libghdl.files_map__location_file_to_pos + +Location_File_To_Line = libghdl.files_map__location_file_to_line + +location_File_Line_To_Col = libghdl.files_map__location_file_line_to_col + +Get_File_Buffer = libghdl.files_map__get_file_buffer +Get_File_Buffer.restype = c_char_p + +# Names + +Get_Name_Length = libghdl.name_table__get_name_length + +# std.standard + +Standard_Package = c_int32.in_dll(libghdl, "std_package__standard_package") + + +Null_Iir = 0 +Null_Iir_List = 0 + + +def _build_enum_image(cls): +    d = [e for e in dir(cls) if e[0] != '_'] +    res = [None] * len(d) +    for e in d: +        res[getattr(cls, e)] = e +    return res + + +_fields_image = _build_enum_image(nodes_meta.fields) + + +def fields_image(idx): +    """String representation of field idx""" +    return _fields_image[idx] + + +_kind_image = _build_enum_image(iirs.Iir_Kind) + + +def kind_image(k): +    """String representation of Iir_Kind k""" +    return _kind_image[k] + + +_types_image = _build_enum_image(nodes_meta.types) + + +def types_image(t): +    """String representation of Nodes_Meta.Types t""" +    return _types_image[t] + + +_attr_image = _build_enum_image(nodes_meta.Attr) + + +def attr_image(a): +    """String representation of Nodes_Meta.Attr a""" +    return _attr_image[a] + + +def fields_iter(n): +    """Iterate on fields of node n""" +    if n == Null_Iir: +        return +    k = iirs.Get_Kind(n) +    first = nodes_meta.get_fields_first(k) +    last = nodes_meta.get_fields_last(k) +    for i in range(first, last + 1): +        yield nodes_meta.get_field_by_index(i) + + +def chain_iter(n): +    """Iterate of a chain headed by node n""" +    while n != Null_Iir: +        yield n +        n = iirs.Get_Chain(n) + + +def nodes_iter(n): +    """Iterate of all nodes of n, including n. +    Nodes are returned only once.""" +    if n == Null_Iir: +        return +#    print 'nodes_iter for {0}'.format(n) +    yield n +    chain_next = None +    for f in fields_iter(n): +        typ = nodes_meta.get_field_type(f) +#        print ' {0}: field {1} (type: {2})'.format( +#            n, fields_image(f), types_image(typ)) +        if typ == nodes_meta.types.Iir: +            attr = nodes_meta.get_field_attribute(f) +            if attr == Attr.ANone: +                for n1 in nodes_iter(nodes_meta.Get_Iir(n, f)): +                    yield n1 +            elif attr == Attr.Chain: +                n2 = nodes_meta.Get_Iir(n, f) +                while n2 != Null_Iir: +                    for n1 in nodes_iter(n2): +                        yield n1 +                    n2 = iirs.Get_Chain(n2) +            elif attr == Attr.Maybe_Ref: +                if not iirs.Get_Is_Ref(n, f): +                    for n1 in nodes_iter(nodes_meta.Get_Iir(n, f)): +                        yield n1 +        elif typ == types.Iir_List: +            attr = nodes_meta.get_field_attribute(f) +            if attr == Attr.ANone: +                for n1 in list_iter(nodes_meta.Get_Iir_List(n, f)): +                    yield n1 +    if chain_next: +        for n1 in nodes_iter(chain_next): +            yield n1 + + +def list_iter(lst): +    """Iterate of all element of Iir_List lst.""" +    if lst == Null_Iir_List: +        return +    for i in range(Get_Nbr_Elements(lst)): +        yield Get_Nth_Element(lst, i) diff --git a/src/vhdl/python/pnodespy.py b/src/vhdl/python/pnodespy.py new file mode 100755 index 000000000..b356ab9fc --- /dev/null +++ b/src/vhdl/python/pnodespy.py @@ -0,0 +1,102 @@ +#!/usr/bin/env python + +"""Like pnodes but output for python""" + +import sys +sys.path.append("../xtools") + +import pnodes + +libname = 'libghdl' + + +def print_enum(name, vals): +    n = 0 +    print +    print +    print 'class {0}:'.format(name) +    for k in vals: +        print '    {0} = {1}'.format(k, n) +        n += 1 + + +def do_class_kinds(): +    print_enum(pnodes.prefix_name.rstrip('_'), pnodes.kinds) + + +def do_iirs_subprg(): +    classname = pnodes.node_type.lower() + 's' +    print +    print 'Get_Kind = {0}.{1}__get_kind'.format(libname, classname) +    print 'Get_Location = {0}.nodes__get_location'.format(libname, classname) +    for k in pnodes.funcs: +        print +        print 'Get_{0} = {1}.{2}__get_{3}'.format( +            k.name, libname, classname, k.name.lower()) +        print +        print 'Set_{0} = {1}.{2}__set_{3}'.format( +            k.name, libname, classname, k.name.lower(), k.pname, k.rname) + + +def do_class_types(): +    print_enum('types', pnodes.get_types()) + + +def do_types_subprg(): +    print +    for k in pnodes.get_types(): +        print +        print 'Get_{0} = {1}.nodes_meta__get_{2}'.format( +            k, libname, k.lower()) + + +def do_has_subprg(): +    print +    for f in pnodes.funcs: +        print +        print 'Has_{0} =\\'.format(f.name) +        print '    {0}.nodes_meta__has_{1}'.format(libname, f.name.lower()) + + +def do_class_field_attributes(): +    print_enum('Attr', ['ANone' if a == 'None' else a +                        for a in pnodes.get_attributes()]) + + +def do_class_fields(): +    print_enum('fields', [f.name for f in pnodes.funcs]) + + +def do_libghdl_iirs(): +    print 'from libghdl import libghdl' +    do_class_kinds() +    do_iirs_subprg() + + +def do_libghdl_meta(): +    print 'from libghdl import libghdl' +    print """ + +# From nodes_meta +get_fields_first = libghdl.nodes_meta__get_fields_first + +get_fields_last = libghdl.nodes_meta__get_fields_last + +get_field_by_index = libghdl.nodes_meta__get_field_by_index + +get_field_type = libghdl.nodes_meta__get_field_type + +get_field_attribute = libghdl.nodes_meta__get_field_attribute""" +    do_class_types() +    do_class_field_attributes() +    do_class_fields() +    do_types_subprg() +    do_has_subprg() + + +pnodes.actions.update({'class-kinds': do_class_kinds, +                       'libghdl-iirs': do_libghdl_iirs, +                       'libghdl-meta': do_libghdl_meta}) + + +pnodes.main() | 
