Add jerryscript-ext/autorelease.h with JERRYX_AR_VALUE_T (#1874)

JerryScript-DCO-1.0-Signed-off-by: Martijn The martijn.the@intel.com
This commit is contained in:
Martijn Thé
2017-06-16 07:09:19 +02:00
committed by Zidong Jiang
parent 940f1f89c9
commit b947f56fd0
5 changed files with 207 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
# Autorelease values
## JERRYX_AR_VALUE_T
**Summary**
Macro for `const jerry_value_t` for which jerry_release_value() is
automatically called when the variable goes out of scope.
*Note*: The macro depends on compiler support. For GCC and LLVM/clang, the macro is implemented
using the `__cleanup__` variable attribute. For other compilers, no support has been added yet.
**Example**
```c
#include "jerryscript.h"
#include "jerryscript-ext/autorelease.h"
static void foo (bool enable)
{
JERRYX_AR_VALUE_T bar = jerry_create_string (...);
if (enable)
{
JERRYX_AR_VALUE_T baz = jerry_get_global_object ();
...
/*
* jerry_release_value (baz) and jerry_release_value (bar) is called automatically before
* returning, because `baz` and `bar` go out of scope.
*/
return;
}
/*
* jerry_release_value (bar) is called automatically when the function returns,
* because `bar` goes out of scope.
*/
}
```
**See also**
- [jerry_value_t](../docs/02.API-REFERENCE.md#jerry_value_t)
- [jerry_acquire_value](../docs/02.API-REFERENCE.md#jerry_acquire_value)
- [jerry_release_value](../docs/02.API-REFERENCE.md#jerry_release_value)