diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-11-23 18:33:02 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-11-23 18:33:02 +0100 |
commit | 345bcdbf2fbe012a8b4da772329d18757fef5594 (patch) | |
tree | cf0b071286121889773d35c0bd0f84e15e726853 /src/vhdl/python/libghdl/thin.py | |
parent | 501366998031d73cc4286aefabffafda39921a67 (diff) | |
download | ghdl-345bcdbf2fbe012a8b4da772329d18757fef5594.tar.gz ghdl-345bcdbf2fbe012a8b4da772329d18757fef5594.tar.bz2 ghdl-345bcdbf2fbe012a8b4da772329d18757fef5594.zip |
Update python binding for flists.
Diffstat (limited to 'src/vhdl/python/libghdl/thin.py')
-rw-r--r-- | src/vhdl/python/libghdl/thin.py | 55 |
1 files changed, 48 insertions, 7 deletions
diff --git a/src/vhdl/python/libghdl/thin.py b/src/vhdl/python/libghdl/thin.py index 0a0178aa3..d16475cc6 100644 --- a/src/vhdl/python/libghdl/thin.py +++ b/src/vhdl/python/libghdl/thin.py @@ -1,5 +1,6 @@ from libghdl import libghdl -from ctypes import (c_char_p, c_int32, c_int, c_bool, sizeof, c_void_p) +from ctypes import (c_char_p, c_int32, c_int, c_bool, sizeof, c_void_p, + POINTER, Structure) import libghdl.iirs as iirs import libghdl.nodes_meta as nodes_meta from libghdl.nodes_meta import (Attr, types) @@ -27,13 +28,50 @@ def analyze_file(filename): # Lists -Get_Nbr_Elements = libghdl.lists__get_nbr_elements -Get_Nth_Element = libghdl.lists__get_nth_element +class Lists: + List_Type = c_int32 -Create_Iir_List = libghdl.lists__create_list + class Iterator(Structure): + _fields_ = [("chunk", c_int32), + ("chunk_idx", c_int32), + ("remain", c_int32)] + + Iterate = libghdl.lists__iterate + Iterate.argstype = [List_Type] + Iterate.restype = Iterator + + Is_Valid = libghdl.lists__is_valid + Is_Valid.argstype = [POINTER(Iterator)] + Is_Valid.restype = c_bool + + Next = libghdl.lists__next + Next.argstype = [POINTER(Iterator)] + Next.restype = None + + Get_Element = libghdl.lists__get_element + Get_Element.argstype = [POINTER(Iterator)] + Get_Element.restype = c_int32 + + Get_Nbr_Elements = libghdl.lists__get_nbr_elements + Get_Nbr_Elements.argtype = [List_Type] + Get_Nbr_Elements.restype = c_int32 + + Create_Iir_List = libghdl.lists__create_list + + Destroy_Iir_List = libghdl.lists__destroy_list + + +class Flists: + Flist_Type = c_int32 + + Ffirst = 0 + Flast = libghdl.flists__flast + + Length = libghdl.flists__length + + Get_Nth_Element = libghdl.flists__get_nth_element -Destroy_Iir_List = libghdl.lists__destroy_list # Files @@ -189,5 +227,8 @@ class Iirs_Utils: Null_Iir = 0 Null_Iir_List = 0 -Iir_List_Others = 1 -Iir_List_All = 2 +Iir_List_All = 1 + +Null_Iir_Flist = 0 +Iir_Flist_Others = 1 +Iir_Flist_All = 2 |