CIRCT 23.0.0git
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Protected Member Functions | List of all members
esiaccel.types.ListType Class Reference
Inheritance diagram for esiaccel.types.ListType:
Inheritance graph
[legend]
Collaboration diagram for esiaccel.types.ListType:
Collaboration graph
[legend]

Public Member Functions

 __init__ (self, str id, "ESIType" element_type)
 
Tuple[bool, Optional[str]] supports_host (self)
 
int bit_width (self)
 
Tuple[bool, Optional[str]] is_valid (self, obj)
 
bytearray serialize (self, obj)
 
Tuple[object, bytearray] deserialize (self, bytearray data)
 
- Public Member Functions inherited from esiaccel.types.ESIType
 wrap_cpp (cls, cpp.Type cpp_type)
 
str id (self)
 
int max_size (self)
 
int __hash__ (self)
 
bool __eq__ (self, other)
 
str __str__ (self)
 

Public Attributes

 element_type
 
- Public Attributes inherited from esiaccel.types.ESIType
 cpp_type
 
 id
 

Protected Member Functions

 _init_from_cpp (self, cpp.ListType cpp_type)
 

Detailed Description

Definition at line 422 of file types.py.

Constructor & Destructor Documentation

◆ __init__()

esiaccel.types.ListType.__init__ (   self,
str  id,
"ESIType"  element_type 
)

Member Function Documentation

◆ _init_from_cpp()

esiaccel.types.ListType._init_from_cpp (   self,
cpp.ListType  cpp_type 
)
protected

◆ bit_width()

int esiaccel.types.ListType.bit_width (   self)

◆ deserialize()

Tuple[object, bytearray] esiaccel.types.ListType.deserialize (   self,
bytearray  data 
)
Convert a bytearray to a Python object. Return the object and the
leftover bytes.

Reimplemented from esiaccel.types.ESIType.

Definition at line 451 of file types.py.

◆ is_valid()

Tuple[bool, Optional[str]] esiaccel.types.ListType.is_valid (   self,
  obj 
)
Is a Python object compatible with HW type?  Returns either '(True,
None)' if it is, or '(False, reason)' if it is not.

Reimplemented from esiaccel.types.ESIType.

Definition at line 439 of file types.py.

References esiaccel.types.ArrayType.element_type, esiaccel.types.ListType.element_type, and esiaccel.types.ListType.is_valid().

Referenced by esiaccel.types.ListType.is_valid().

◆ serialize()

bytearray esiaccel.types.ListType.serialize (   self,
  obj 
)
Convert a Python object to a bytearray.

Reimplemented from esiaccel.types.ESIType.

Definition at line 448 of file types.py.

◆ supports_host()

Tuple[bool, Optional[str]] esiaccel.types.ListType.supports_host (   self)
Does this type support host communication via Python? Returns either
'(True, None)' if it is, or '(False, reason)' if it is not.

Reimplemented from esiaccel.types.ESIType.

Definition at line 432 of file types.py.

Member Data Documentation

◆ element_type

esiaccel.types.ListType.element_type

The documentation for this class was generated from the following file: