Skip to content

Commit a22e0d9

Browse files
indutnyUlisesGascon
authored andcommitted
doc: clarify use of Uint8Array for n-api
`napi_get_buffer_info` always supported receiving `Uint8Array` as a `value` argument because `node::Buffer` is a subclass of `Uint8Array` and the underlying V8 APIs don't distinguish between two. With this change we mark both types as supported by the API so that the user code doesn't have to unknowingly use oficially unsupported type of the `value` argument. PR-URL: #48742 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gabriel Schulhof <gabrielschulhof@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
1 parent dc09286 commit a22e0d9

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

doc/api/n-api.md

+15-6
Original file line numberDiff line numberDiff line change
@@ -3070,13 +3070,18 @@ napi_status napi_get_buffer_info(napi_env env,
30703070
```
30713071

30723072
* `[in] env`: The environment that the API is invoked under.
3073-
* `[in] value`: `napi_value` representing the `node::Buffer` being queried.
3074-
* `[out] data`: The underlying data buffer of the `node::Buffer`.
3075-
If length is `0`, this may be `NULL` or any other pointer value.
3073+
* `[in] value`: `napi_value` representing the `node::Buffer` or `Uint8Array`
3074+
being queried.
3075+
* `[out] data`: The underlying data buffer of the `node::Buffer` or
3076+
`Uint8Array`. If length is `0`, this may be `NULL` or any other pointer value.
30763077
* `[out] length`: Length in bytes of the underlying data buffer.
30773078

30783079
Returns `napi_ok` if the API succeeded.
30793080

3081+
This method returns the identical `data` and `byte_length` as
3082+
[`napi_get_typedarray_info`][]. And `napi_get_typedarray_info` accepts a
3083+
`node::Buffer` (a Uint8Array) as the value too.
3084+
30803085
This API is used to retrieve the underlying data buffer of a `node::Buffer`
30813086
and its length.
30823087

@@ -3827,12 +3832,14 @@ napi_status napi_is_buffer(napi_env env, napi_value value, bool* result)
38273832

38283833
* `[in] env`: The environment that the API is invoked under.
38293834
* `[in] value`: The JavaScript value to check.
3830-
* `[out] result`: Whether the given `napi_value` represents a `node::Buffer`
3831-
object.
3835+
* `[out] result`: Whether the given `napi_value` represents a `node::Buffer` or
3836+
`Uint8Array` object.
38323837

38333838
Returns `napi_ok` if the API succeeded.
38343839

3835-
This API checks if the `Object` passed in is a buffer.
3840+
This API checks if the `Object` passed in is a buffer or Uint8Array.
3841+
[`napi_is_typedarray`][] should be preferred if the caller needs to check if the
3842+
value is a Uint8Array.
38363843

38373844
### `napi_is_date`
38383845

@@ -6502,11 +6509,13 @@ the add-on's file name during loading.
65026509
[`napi_get_last_error_info`]: #napi_get_last_error_info
65036510
[`napi_get_property`]: #napi_get_property
65046511
[`napi_get_reference_value`]: #napi_get_reference_value
6512+
[`napi_get_typedarray_info`]: #napi_get_typedarray_info
65056513
[`napi_get_value_external`]: #napi_get_value_external
65066514
[`napi_has_property`]: #napi_has_property
65076515
[`napi_instanceof`]: #napi_instanceof
65086516
[`napi_is_error`]: #napi_is_error
65096517
[`napi_is_exception_pending`]: #napi_is_exception_pending
6518+
[`napi_is_typedarray`]: #napi_is_typedarray
65106519
[`napi_make_callback`]: #napi_make_callback
65116520
[`napi_open_callback_scope`]: #napi_open_callback_scope
65126521
[`napi_open_escapable_handle_scope`]: #napi_open_escapable_handle_scope

0 commit comments

Comments
 (0)