zuspec-be-sw 0.1.0.15240461960rc0__cp39-cp39-manylinux_2_34_x86_64.whl → 0.1.0.15264241788rc0__cp39-cp39-manylinux_2_34_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.
- zsp_be_sw/__build_num__.py +1 -1
- zsp_be_sw/__version__.py +1 -1
- zsp_be_sw/libzsp-be-sw.so +0 -0
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_action.h +12 -0
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_actor.h +11 -0
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_actor_base.h +1 -0
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_component.h +3 -5
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_object.h +3 -0
- zsp_be_sw/share/include/zsp/be/sw/rt/zsp_types.h +1 -0
- {zuspec_be_sw-0.1.0.15240461960rc0.dist-info → zuspec_be_sw-0.1.0.15264241788rc0.dist-info}/METADATA +1 -1
- {zuspec_be_sw-0.1.0.15240461960rc0.dist-info → zuspec_be_sw-0.1.0.15264241788rc0.dist-info}/RECORD +14 -14
- {zuspec_be_sw-0.1.0.15240461960rc0.dist-info → zuspec_be_sw-0.1.0.15264241788rc0.dist-info}/WHEEL +0 -0
- {zuspec_be_sw-0.1.0.15240461960rc0.dist-info → zuspec_be_sw-0.1.0.15264241788rc0.dist-info}/licenses/LICENSE +0 -0
- {zuspec_be_sw-0.1.0.15240461960rc0.dist-info → zuspec_be_sw-0.1.0.15264241788rc0.dist-info}/top_level.txt +0 -0
zsp_be_sw/__build_num__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
BUILD_NUM=
|
|
1
|
+
BUILD_NUM=15264241788
|
zsp_be_sw/__version__.py
CHANGED
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
|
-
|
|
25
|
-
|
|
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 *)(
|
|
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
|
}
|
{zuspec_be_sw-0.1.0.15240461960rc0.dist-info → zuspec_be_sw-0.1.0.15264241788rc0.dist-info}/RECORD
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
zsp_be_sw/__build_num__.py,sha256=
|
|
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=
|
|
3
|
+
zsp_be_sw/__version__.py,sha256=Jd7pZ52onoE70cFxD4wQD9OzW3eerxljob4obW5NuZU,69
|
|
4
4
|
zsp_be_sw/core.cpython-39-x86_64-linux-gnu.so,sha256=ZV9y6t-WzXPyGSjamIOCJjwMZcD8eD6XxYTJLK1fpwk,1394152
|
|
5
|
-
zsp_be_sw/libzsp-be-sw.so,sha256=
|
|
5
|
+
zsp_be_sw/libzsp-be-sw.so,sha256=yjyiY77yd_eigJLV0CSQzynOyaEKUzAygmfQJltonr8,3981648
|
|
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=
|
|
20
|
-
zsp_be_sw/share/include/zsp/be/sw/rt/zsp_actor.h,sha256=
|
|
21
|
-
zsp_be_sw/share/include/zsp/be/sw/rt/zsp_actor_base.h,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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.
|
|
33
|
-
zuspec_be_sw-0.1.0.
|
|
34
|
-
zuspec_be_sw-0.1.0.
|
|
35
|
-
zuspec_be_sw-0.1.0.
|
|
36
|
-
zuspec_be_sw-0.1.0.
|
|
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=oXeWWTISAcuWB_RPAVKB6sr2lSv95E25Jw9GPmAhcRk,111
|
|
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
|
{zuspec_be_sw-0.1.0.15240461960rc0.dist-info → zuspec_be_sw-0.1.0.15264241788rc0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|