@@ -101,6 +101,25 @@ created by API functions has the error flag set.
101
101
typedef uint32_t jerry_value_t;
102
102
```
103
103
104
+ ## jerry_context_data_manager_t
105
+
106
+ **Summary**
107
+
108
+ Structure that defines how a context data item will be initialized and deinitialized. JerryScript zeroes out the memory
109
+ for the item by default, and if the `init_cb` field is not NULL, it will be called with the pointer to the memory as
110
+ an additional custom initializer.
111
+
112
+ **Prototype**
113
+
114
+ ```c
115
+ typedef struct
116
+ {
117
+ void (*init_cb) (void *); /**< callback responsible for initializing a context item, or NULL */
118
+ void (*deinit_cb) (void *); /**< callback responsible for deinitializing a context item */
119
+ size_t bytes_needed; /**< number of bytes to allocate for this manager */
120
+ } jerry_context_data_manager_t;
121
+ ```
122
+
104
123
## jerry_property_descriptor_t
105
124
106
125
**Summary**
@@ -264,9 +283,7 @@ typedef jerry_value_t (*jerry_vm_exec_stop_callback_t) (void *user_p);
264
283
**Summary**
265
284
266
285
Initializes the JerryScript engine, making it possible to run JavaScript code and perform operations
267
- on JavaScript values. See also [jerry_init_with_user_context](#jerry_init_with_user_context) if you
268
- wish to initialize the JerryScript engine in such a way that its context contains a custom pointer
269
- which you can later retrieve using [jerry_get_user_context](#jerry_get_user_context).
286
+ on JavaScript values.
270
287
271
288
**Prototype**
272
289
@@ -299,91 +316,13 @@ jerry_init (jerry_init_flag_t flags)
299
316
**See also**
300
317
301
318
- [jerry_cleanup](#jerry_cleanup)
302
- - [jerry_init_with_user_context](#jerry_init_with_user_context)
303
-
304
-
305
- ## jerry_init_with_user_context
306
-
307
- **Summary**
308
-
309
- Calls [jerry_init](#jerry_init) to initialize the JerryScript engine, thereby making it possible
310
- to run JavaScript code and perform operations on JavaScript values. In addition to the first
311
- parameter this function accepts two more parameters with which it allows the caller to store a
312
- `void *` pointer inside the context being initialized with `jerry_init ()`. The function calls the
313
- callback given in its `init_cb` parameter to allocate the memory for the pointer and it stores the
314
- function pointer given in the `deinit_cb` parameter along with the pointer so that it may be called
315
- to free the stored pointer when `jerry_cleanup ()` is later called to dispose of the context.
316
-
317
- **Prototype**
318
-
319
- ```c
320
- void
321
- jerry_init_with_user_context (jerry_init_flag_t flags,
322
- jerry_user_context_init_cb init_cb,
323
- jerry_user_context_deinit_cb deinit_cb);
324
- ```
325
-
326
- `flags` - combination of various engine configuration flags:
327
-
328
- - `JERRY_INIT_EMPTY` - no flags, just initialize in default configuration.
329
- - `JERRY_INIT_SHOW_OPCODES` - print compiled byte-code.
330
- - `JERRY_INIT_SHOW_REGEXP_OPCODES` - print compiled regexp byte-code.
331
- - `JERRY_INIT_MEM_STATS` - dump memory statistics.
332
- - `JERRY_INIT_MEM_STATS_SEPARATE` - dump memory statistics and reset peak values after parse.
333
- - `JERRY_INIT_DEBUGGER` - enable all features required by debugging.
334
-
335
- `init_cb` - a function pointer that will be called to allocate the custom pointer.
336
-
337
- `deinit_cb` - a function pointer that will be called when the custom pointer must be freed.
338
-
339
- **Example**
340
-
341
- ```c
342
- void *
343
- init_user_context (void)
344
- {
345
- void *return_value;
346
-
347
- /* allocate and initialize return_value */
348
-
349
- return return_value;
350
- } /* init_user_context */
351
-
352
- void
353
- free_user_context (void *context)
354
- {
355
-
356
- /* free the value allocated above */
357
-
358
- } /* free_user_context */
359
-
360
- {
361
- /* init_user_context () will be called before the call below returns */
362
- jerry_init_with_user_context (JERRY_INIT_SHOW_OPCODES | JERRY_INIT_SHOW_REGEXP_OPCODES,
363
- init_user_context,
364
- free_user_context);
365
-
366
- /* ... */
367
-
368
- /* free_user_context () will be called before the call below returns */
369
- jerry_cleanup ();
370
- }
371
- ```
372
-
373
- **See also**
374
-
375
- - [jerry_cleanup](#jerry_cleanup)
376
- - [jerry_get_user_context](#jerry_get_user_context)
377
319
378
320
379
321
## jerry_cleanup
380
322
381
323
**Summary**
382
324
383
- Finish JavaScript engine execution, freeing memory and JavaScript values. If the context was
384
- initialized with `jerry_init_with_user_context ()` and a `deinit_cb` was provided, then it will
385
- be called to free the memory at the custom pointer which was associated with the context being
386
- cleaned up.
325
+ Finish JavaScript engine execution, freeing memory and JavaScript values.
387
326
388
327
*Note*: JavaScript values, received from engine, will be inaccessible after the cleanup.
389
328
@@ -397,37 +336,80 @@ jerry_cleanup (void);
397
336
**See also**
398
337
399
338
- [jerry_init](#jerry_init)
400
- - [jerry_init_with_user_context](#jerry_init_with_user_context)
401
339
402
340
403
- ## jerry_get_user_context
341
+ ## jerry_get_context_data
404
342
405
343
**Summary**
406
344
407
- Retrieve the pointer stored within the current context.
345
+ Retrieve a pointer to the item stored within the current context by the given manager.
346
+
347
+ *Note*: Since internally the pointer to a manager's context data item is linked to the next such pointer in a linked
348
+ list, it is inadvisable to invoke too many different managers, because doing so will increase the time it takes
349
+ to retrieve a manager's context data item, degrading performance. For example, try to keep the number of
350
+ managers below five.
408
351
409
352
**Prototype**
410
353
411
354
```c
412
355
void *
413
- jerry_get_user_context (void );
356
+ jerry_get_context_data (const jerry_context_data_manager *manager_p );
414
357
```
415
358
416
- - return value: the pointer that was assigned during `jerry_init_with_user_context ()`
359
+ - `manager_p`: the manager of this context data item.
360
+ - return value: the item created by `manager_p` when `jerry_get_context_data ()` was first called, or a new item created
361
+ by `manager_p`, which will be stored for future identical calls to `jerry_get_context_data ()`, and which will be
362
+ deinitialized using the `deinit_cb` callback provided by `manager_p` when the context will be destroyed.
417
363
418
364
**Example**
419
365
420
366
```c
367
+ typedef struct
421
368
{
422
- /* ... */
423
- my_context *custom_data = (my_context *) jerry_get_user_context ();
424
- /* ... */
369
+ int my_data1;
370
+ double my_data2;
371
+ char *my_data3;
372
+ } my_context_data_t;
373
+
374
+ /* Define how context items will be initialized. */
375
+ static void
376
+ my_context_data_new (void *user_data_p)
377
+ {
378
+ my_context_data_t *my_data_p = (my_context_data_t *) user_data_p;
379
+
380
+ /*
381
+ * Initialize my_data_p. JerryScript will store it on the current context and return it whenever
382
+ * jerry_get_context_data () is called with a pointer to my_manager as defined below.
383
+ */
425
384
}
426
- ```
427
385
428
- **See also**
429
- - [jerry_init_with_user_context](#jerry_init_with_user_context)
430
- - [jerry_cleanup](#jerry_cleanup)
386
+ /* Define how context items will be deinitialized */
387
+ static void
388
+ my_context_data_free (void *user_data_p)
389
+ {
390
+ my_context_data_t *my_data_p = ((my_context_data_t *) user_data_p);
391
+
392
+ /* Perform any necessary cleanup on my_data. JerryScript will free the pointer after this function completes. */
393
+ }
394
+
395
+ /* Wrap the creation and destruction functions into a manager */
396
+ static const jerry_context_data_manager_t my_manager =
397
+ {
398
+ .init_cb = my_context_data_new,
399
+ .deinit_cb = my_context_data_free,
400
+ .bytes_needed = sizeof (my_context_data_t)
401
+ };
402
+
403
+ /*
404
+ * Then, in some function in your code, you can retrieve an item of type my_context_data_t from the currently active
405
+ * context such that JerryScript will create and store such an item if one was not previously created
406
+ */
407
+ void someplace_in_the_code (void)
408
+ {
409
+ my_context_data_t *my_data = (my_context_data_t *) jerry_get_context_data (&my_manager);
410
+ /* Perform useful things using the data found in my_data */
411
+ }
412
+ ```
431
413
432
414
433
415
## jerry_register_magic_strings
0 commit comments