zuspec-be-sw 0.1.0.15240461960rc0__cp312-cp312-manylinux_2_28_x86_64.whl → 0.1.0.15264241788rc0__cp312-cp312-manylinux_2_28_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of zuspec-be-sw might be problematic. Click here for more details.

@@ -1 +1 @@
1
- BUILD_NUM=15240461960
1
+ BUILD_NUM=15264241788
zsp_be_sw/__version__.py CHANGED
@@ -1,3 +1,3 @@
1
1
  BASE="0.1.0"
2
- SUFFIX=".15240461960rc0"
2
+ SUFFIX=".15264241788rc0"
3
3
  VERSION="%s%s" % (BASE, SUFFIX)
zsp_be_sw/libzsp-be-sw.so CHANGED
Binary file
@@ -4,6 +4,12 @@
4
4
  #include "zsp/be/sw/rt/zsp_struct.h"
5
5
  #include "zsp/be/sw/rt/zsp_thread.h"
6
6
 
7
+ #ifdef __cplusplus
8
+ extern "C" {
9
+ #endif
10
+
11
+ struct zsp_actor_s;
12
+
7
13
  typedef struct zsp_action_type_s {
8
14
  zsp_struct_type_t base;
9
15
 
@@ -15,4 +21,10 @@ typedef struct zsp_action_s {
15
21
 
16
22
  } zsp_action_t;
17
23
 
24
+ void zsp_action_init(struct zsp_actor_s *actor, zsp_action_t *this_p);
25
+
26
+ #ifdef __cplusplus
27
+ }
28
+ #endif
29
+
18
30
  #endif /* INCLUDED_ZSP_ACTION_H */
@@ -9,6 +9,9 @@
9
9
  extern "C" {
10
10
  #endif
11
11
 
12
+ struct zsp_frame_s;
13
+ struct zsp_thread_s;
14
+
12
15
  typedef struct zsp_actor_s {
13
16
  zsp_actor_base_t base;
14
17
  zsp_component_t comp;
@@ -25,6 +28,14 @@ void zsp_actor_init(
25
28
  zsp_component_type_t *comp_t,
26
29
  zsp_action_type_t *action_t);
27
30
 
31
+ void zsp_actor_elab(zsp_actor_t *actor);
32
+
33
+ struct zsp_frame_s *zsp_actor_run(
34
+ zsp_actor_t *actor,
35
+ struct zsp_thread_s *thread,
36
+ struct zsp_frame_s *frame,
37
+ ...);
38
+
28
39
  #ifdef __cplusplus
29
40
  }
30
41
  #endif
@@ -11,6 +11,7 @@ typedef struct zsp_actor_base_s {
11
11
  // Example member variables (to be defined as needed):
12
12
  // int actor_id; // Unique identifier for the actor
13
13
  // const char *name; // Name of the actor
14
+ zsp_bool_t is_elab;
14
15
  } zsp_actor_base_t;
15
16
 
16
17
  #endif /* INCLUDED_ZSP_ACTOR_BASE_H */
@@ -21,8 +21,8 @@ typedef struct zsp_component_type_s {
21
21
  zsp_object_type_t __base;
22
22
  zsp_component_init_f init;
23
23
 
24
- void (*init_down)(struct zsp_component_s *comp);
25
- void (*init_up)(struct zsp_component_s *comp);
24
+ zsp_solve_exec_f do_init;
25
+
26
26
  } zsp_component_type_t;
27
27
 
28
28
  typedef struct zsp_component_s {
@@ -43,9 +43,7 @@ void zsp_component_init(
43
43
  zsp_component_type_t *zsp_component__type();
44
44
 
45
45
  #define zsp_component_type(comp) \
46
- ((zsp_component_type_t *)((comp)->base.type))
47
-
48
- void zsp_component_do_init(zsp_component_t *comp);
46
+ ((zsp_component_type_t *)zsp_object_type(comp))
49
47
 
50
48
  #ifdef _cplusplus
51
49
  }
@@ -24,6 +24,9 @@ typedef struct zsp_object_s {
24
24
 
25
25
  zsp_object_type_t *zsp_object__type(void);
26
26
 
27
+ #define zsp_object_type(obj) \
28
+ ((zsp_object_type_t *)(((zsp_object_t *)(obj))->type))
29
+
27
30
 
28
31
  #ifdef __cplusplus
29
32
  }
@@ -12,4 +12,5 @@ typedef enum {
12
12
  } zsp_bool_t;
13
13
  #endif
14
14
 
15
+
15
16
  #endif /* INCLUDED_ZSP_TYPES_H */
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zuspec-be-sw
3
- Version: 0.1.0.15240461960rc0
3
+ Version: 0.1.0.15264241788rc0
4
4
  Summary: Backend library to generate software output
5
5
  Home-page: https://github.com/zuspec/zuspec-be-sw
6
6
  Author: Matthew Ballance
@@ -1,8 +1,8 @@
1
- zsp_be_sw/__build_num__.py,sha256=4uuJ66QL0MtpSoHm_TT09IDaYWY6NS9M9X00tEAQX0k,22
1
+ zsp_be_sw/__build_num__.py,sha256=SGP6hevRXu6mepGdEzG0s3ZLoZhRihHdyWArq1JdJRU,22
2
2
  zsp_be_sw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- zsp_be_sw/__version__.py,sha256=qYfFeP_WfzKHujAK6ObxvwJyOYCihKdIW-PHpoq-6Cc,69
3
+ zsp_be_sw/__version__.py,sha256=Jd7pZ52onoE70cFxD4wQD9OzW3eerxljob4obW5NuZU,69
4
4
  zsp_be_sw/core.cpython-312-x86_64-linux-gnu.so,sha256=j6GYuuplxy6Mvg5cJAbOyOtkilKIxbimNQh65Hhd3N8,1734560
5
- zsp_be_sw/libzsp-be-sw.so,sha256=mJ59UW43T7RAHR_mFWInOFiYceG3JjjTTfPPF5kiLdo,3933560
5
+ zsp_be_sw/libzsp-be-sw.so,sha256=n2z3rnT84hndEf_3WhTgUZpG7Kmy5Uy5sQJ_fa9VXu0,3986048
6
6
  zsp_be_sw/share/include/zsp/be/sw/FactoryExt.h,sha256=zzqqdoxxJIQhsDb-cDT4vJBqhYC8XJpq1ZEN48FX2z0,100
7
7
  zsp_be_sw/share/include/zsp/be/sw/IContext.h,sha256=5S7rVTz-Itsuleraru7iEC8KZUU0cRK-LD_v0bsX114,2481
8
8
  zsp_be_sw/share/include/zsp/be/sw/IFactory.h,sha256=eyDpv3rpvvXxWLTnnIlNiYfxMzQzX1OzIDmEdBn4GQg,3118
@@ -16,21 +16,21 @@ zsp_be_sw/share/include/zsp/be/sw/INameMap.h,sha256=W_YrhZ1YbSgG9FrEuPRD6sadroND
16
16
  zsp_be_sw/share/include/zsp/be/sw/IOutput.h,sha256=Im0xoATfu_xOobUzfTOmM0ROuXO8w9-VMr0BXVKJRmQ,1727
17
17
  zsp_be_sw/share/include/zsp/be/sw/IOutputStr.h,sha256=exVx0hu40uMci_GVP9TCyhVsMFC6DLDRrrpUVwu0SH8,991
18
18
  zsp_be_sw/share/include/zsp/be/sw/impl/MethodCallFactoryAssocDataBase.h,sha256=RdRdW7nWYgd7h_wzCeVDLM3xLlzgZ8m0hc9fbdyK9U8,1395
19
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_action.h,sha256=Vnis_Jvhi3RDGanBb_JjzadqhQ4sB5VUDTmmPz_P7Kw,376
20
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_actor.h,sha256=JMwWl7lg77PFQZLm1or-7_UR7xgN77hhOsm3A2o2TEo,696
21
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_actor_base.h,sha256=WuZYe8Dg8VPesRzvYjASLCaa3RKzp2wqQtVpnit7nYU,563
19
+ zsp_be_sw/share/include/zsp/be/sw/rt/zsp_action.h,sha256=xFTX0pZg5t8wWmk9Nza1_zun2ACgtOcRl7CQ_bVoTSI,538
20
+ zsp_be_sw/share/include/zsp/be/sw/rt/zsp_actor.h,sha256=8CAGk4jMNIuXDyYsCDC0WWrjEPj5yYEoslzPPVNRvH4,936
21
+ zsp_be_sw/share/include/zsp/be/sw/rt/zsp_actor_base.h,sha256=AOlsXmnfmKQTIz-Qtx_CGxIM5mRXs92NyDIKYhRUJEw,600
22
22
  zsp_be_sw/share/include/zsp/be/sw/rt/zsp_alloc.h,sha256=DzPRmm1n8SgurZWVY2yQqz2dYaUZH7LJ69Ml17EdkU0,481
23
23
  zsp_be_sw/share/include/zsp/be/sw/rt/zsp_api.h,sha256=_LDHsT1TkSuwaWS_0_kZWZYsIWelvGjqB_miBzBV0N0,582
24
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_component.h,sha256=ED4eQpDrwRNcItLr0JGImAJNlylO92QUU94l3bpH1h8,1287
24
+ zsp_be_sw/share/include/zsp/be/sw/rt/zsp_component.h,sha256=ARCURJg5it9nxY4DmqAgeeMR4998oKV8vPmIUnJKNgg,1171
25
25
  zsp_be_sw/share/include/zsp/be/sw/rt/zsp_executor.h,sha256=xjZqwENgaj1hHrPcDVdgbKlQ236JWslsd40nygeUvok,246
26
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_object.h,sha256=mlX6ZZILj-NsIKJR1NSE3kgY8P2ZIccHsbaHikTW-xI,613
26
+ zsp_be_sw/share/include/zsp/be/sw/rt/zsp_object.h,sha256=qImwPUe0fW6Eropd1im3PvlmAUnx9NjWhIUP1LvmHQM,704
27
27
  zsp_be_sw/share/include/zsp/be/sw/rt/zsp_rt.h,sha256=sVJjb90VQdfoMc6UAgaKJXVKX2y7GVCKO-4L7aNU6iU,195
28
28
  zsp_be_sw/share/include/zsp/be/sw/rt/zsp_struct.h,sha256=wBrO90eQbD7NqPET5AXexl0EvOpjsE1pvvznWkQQFhU,1005
29
29
  zsp_be_sw/share/include/zsp/be/sw/rt/zsp_thread.h,sha256=bIfYO3kyr8bFNJkC3wz2c7i7UthaMoP3z_BOxjw59TI,2080
30
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_types.h,sha256=aIrwZ-3VeBqYHO92WCOMgIxy9TEUTcW2wjVbn64-p7g,233
30
+ zsp_be_sw/share/include/zsp/be/sw/rt/zsp_types.h,sha256=uv2slA7oFDPu8ovQYIKKXIzqtlr9CZr8QI4dduT5Drg,234
31
31
  zsp_be_sw/share/include/zsp/esw/zsp_esw_support.h,sha256=5hpBmWfy9cN0fg4g7ZM9uyZCxjCuJzW0T_KFMv5pwug,995
32
- zuspec_be_sw-0.1.0.15240461960rc0.dist-info/METADATA,sha256=MUvtGPcW2qF3epDOygJ-HDyKTlNQANgW5IjZ4tea5lY,672
33
- zuspec_be_sw-0.1.0.15240461960rc0.dist-info/WHEEL,sha256=sVGj-kHh_JKDgXkclC3-AtKJtj6NU6OyMOGeNZSKtcw,113
34
- zuspec_be_sw-0.1.0.15240461960rc0.dist-info/top_level.txt,sha256=F69v5yvtf2MTsB19kN7iCBNm1-HkyITrIjM7enDpIh8,10
35
- zuspec_be_sw-0.1.0.15240461960rc0.dist-info/RECORD,,
36
- zuspec_be_sw-0.1.0.15240461960rc0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
32
+ zuspec_be_sw-0.1.0.15264241788rc0.dist-info/METADATA,sha256=Z82OrmOZFDbL9JD0CmX5Qs92Ff2uGpyF8PFLrnH2Vjg,672
33
+ zuspec_be_sw-0.1.0.15264241788rc0.dist-info/WHEEL,sha256=sVGj-kHh_JKDgXkclC3-AtKJtj6NU6OyMOGeNZSKtcw,113
34
+ zuspec_be_sw-0.1.0.15264241788rc0.dist-info/top_level.txt,sha256=F69v5yvtf2MTsB19kN7iCBNm1-HkyITrIjM7enDpIh8,10
35
+ zuspec_be_sw-0.1.0.15264241788rc0.dist-info/RECORD,,
36
+ zuspec_be_sw-0.1.0.15264241788rc0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357