xref: /PHP-8.1/Zend/zend_fibers.h (revision bf294d51)
1 /*
2    +----------------------------------------------------------------------+
3    | Zend Engine                                                          |
4    +----------------------------------------------------------------------+
5    | Copyright (c) Zend Technologies Ltd. (http://www.zend.com)           |
6    +----------------------------------------------------------------------+
7    | This source file is subject to version 2.00 of the Zend license,     |
8    | that is bundled with this package in the file LICENSE, and is        |
9    | available through the world-wide-web at the following url:           |
10    | http://www.zend.com/license/2_00.txt.                                |
11    | If you did not receive a copy of the Zend license and are unable to  |
12    | obtain it through the world-wide-web, please send a note to          |
13    | license@zend.com so we can mail you a copy immediately.              |
14    +----------------------------------------------------------------------+
15    | Authors: Aaron Piotrowski <aaron@trowski.com>                        |
16    |          Martin Schröder <m.schroeder2007@gmail.com>                 |
17    +----------------------------------------------------------------------+
18 */
19 
20 #ifndef ZEND_FIBERS_H
21 #define ZEND_FIBERS_H
22 
23 #include "zend_API.h"
24 #include "zend_types.h"
25 
26 #define ZEND_FIBER_GUARD_PAGES 1
27 
28 #define ZEND_FIBER_DEFAULT_C_STACK_SIZE (4096 * (((sizeof(void *)) < 8) ? 256 : 512))
29 #define ZEND_FIBER_VM_STACK_SIZE (1024 * sizeof(zval))
30 
31 BEGIN_EXTERN_C()
32 
33 typedef enum {
34 	ZEND_FIBER_STATUS_INIT,
35 	ZEND_FIBER_STATUS_RUNNING,
36 	ZEND_FIBER_STATUS_SUSPENDED,
37 	ZEND_FIBER_STATUS_DEAD,
38 } zend_fiber_status;
39 
40 typedef enum {
41 	ZEND_FIBER_FLAG_THREW     = 1 << 0,
42 	ZEND_FIBER_FLAG_BAILOUT   = 1 << 1,
43 	ZEND_FIBER_FLAG_DESTROYED = 1 << 2,
44 } zend_fiber_flag;
45 
46 typedef enum {
47 	ZEND_FIBER_TRANSFER_FLAG_ERROR = 1 << 0,
48 	ZEND_FIBER_TRANSFER_FLAG_BAILOUT = 1 << 1
49 } zend_fiber_transfer_flag;
50 
51 void zend_register_fiber_ce(void);
52 void zend_fiber_init(void);
53 void zend_fiber_shutdown(void);
54 
55 extern ZEND_API zend_class_entry *zend_ce_fiber;
56 
57 typedef struct _zend_fiber_stack zend_fiber_stack;
58 
59 /* Encapsulates data needed for a context switch. */
60 typedef struct _zend_fiber_transfer {
61 	/* Fiber that will be switched to / has resumed us. */
62 	zend_fiber_context *context;
63 
64 	/* Value to that should be send to (or was received from) a fiber. */
65 	zval value;
66 
67 	/* Bitmask of flags defined in enum zend_fiber_transfer_flag. */
68 	uint8_t flags;
69 } zend_fiber_transfer;
70 
71 /* Coroutine functions must populate the given transfer with a new context
72  * and (optional) data before they return. */
73 typedef void (*zend_fiber_coroutine)(zend_fiber_transfer *transfer);
74 
75 struct _zend_fiber_context {
76 	/* Pointer to boost.context or ucontext_t data. */
77 	void *handle;
78 
79 	/* Pointer that identifies the fiber type. */
80 	void *kind;
81 
82 	/* Entrypoint function of the fiber. */
83 	zend_fiber_coroutine function;
84 
85 	/* Assigned C stack. */
86 	zend_fiber_stack *stack;
87 
88 	/* Fiber status. */
89 	zend_fiber_status status;
90 
91 	/* Reserved for extensions */
92 	void *reserved[ZEND_MAX_RESERVED_RESOURCES];
93 };
94 
95 struct _zend_fiber {
96 	/* PHP object handle. */
97 	zend_object std;
98 
99 	/* Flags are defined in enum zend_fiber_flag. */
100 	uint8_t flags;
101 
102 	/* Native C fiber context. */
103 	zend_fiber_context context;
104 
105 	/* Fiber that resumed us. */
106 	zend_fiber_context *caller;
107 
108 	/* Fiber that suspended us. */
109 	zend_fiber_context *previous;
110 
111 	/* Callback and info / cache to be used when fiber is started. */
112 	zend_fcall_info fci;
113 	zend_fcall_info_cache fci_cache;
114 
115 	/* Current Zend VM execute data being run by the fiber. */
116 	zend_execute_data *execute_data;
117 
118 	/* Frame on the bottom of the fiber vm stack. */
119 	zend_execute_data *stack_bottom;
120 
121 	/* Storage for fiber return value. */
122 	zval result;
123 };
124 
125 /* These functions may be used to create custom fiber objects using the bundled fiber switching context. */
126 ZEND_API bool zend_fiber_init_context(zend_fiber_context *context, void *kind, zend_fiber_coroutine coroutine, size_t stack_size);
127 ZEND_API void zend_fiber_destroy_context(zend_fiber_context *context);
128 ZEND_API void zend_fiber_switch_context(zend_fiber_transfer *transfer);
129 
130 ZEND_API void zend_fiber_switch_block(void);
131 ZEND_API void zend_fiber_switch_unblock(void);
132 ZEND_API bool zend_fiber_switch_blocked(void);
133 
END_EXTERN_C()134 END_EXTERN_C()
135 
136 static zend_always_inline zend_fiber *zend_fiber_from_context(zend_fiber_context *context)
137 {
138 	ZEND_ASSERT(context->kind == zend_ce_fiber && "Fiber context does not belong to a Zend fiber");
139 
140 	return (zend_fiber *)(((char *) context) - XtOffsetOf(zend_fiber, context));
141 }
142 
zend_fiber_get_context(zend_fiber * fiber)143 static zend_always_inline zend_fiber_context *zend_fiber_get_context(zend_fiber *fiber)
144 {
145 	return &fiber->context;
146 }
147 
148 #endif
149