|
Pepper_56_C++_interfaces
Pepper_56_C++_interfaces
|
#include <var_array_buffer.h>
Public Member Functions | |
| VarArrayBuffer () | |
| VarArrayBuffer (const Var &var) | |
| VarArrayBuffer (uint32_t size_in_bytes) | |
| VarArrayBuffer (const VarArrayBuffer &buffer) | |
| Copy constructor. | |
| VarArrayBuffer & | operator= (const VarArrayBuffer &other) |
| virtual Var & | operator= (const Var &other) |
| uint32_t | ByteLength () const |
| void * | Map () |
| void | Unmap () |
Public Member Functions inherited from pp::Var | |
| Var () | |
| Var (Null) | |
A constructor used to create a Var of type Null. | |
| Var (bool b) | |
| Var (int32_t i) | |
| Var (double d) | |
| Var (const char *utf8_str) | |
A constructor used to create a UTF-8 character Var. | |
| Var (const std::string &utf8_str) | |
A constructor used to create a UTF-8 character Var. | |
| Var (const pp::Resource &resource) | |
A constructor used to create a resource Var. | |
| Var (PassRef, const PP_Var &var) | |
| Var (const PP_Var &var) | |
| A constructor that increments the reference count. | |
| Var (DontManage, const PP_Var &var) | |
| Var (const Var &other) | |
A constructor for copying a Var. | |
| virtual | ~Var () |
| Destructor. | |
| bool | operator== (const Var &other) const |
| bool | is_undefined () const |
| bool | is_null () const |
| bool | is_bool () const |
| bool | is_string () const |
| bool | is_object () const |
| bool | is_array () const |
| bool | is_dictionary () const |
| bool | is_resource () const |
| bool | is_int () const |
| bool | is_double () const |
| bool | is_number () const |
| bool | is_array_buffer () const |
This function determines if this Var is an ArrayBuffer. | |
| bool | AsBool () const |
| int32_t | AsInt () const |
| double | AsDouble () const |
| std::string | AsString () const |
| pp::Resource | AsResource () const |
| const PP_Var & | pp_var () const |
| PP_Var | Detach () |
| std::string | DebugString () const |
Additional Inherited Members | |
Protected Attributes inherited from pp::Var | |
| PP_Var | var_ |
| bool | is_managed_ |
VarArrayBuffer provides a way to interact with JavaScript ArrayBuffers, which represent a contiguous sequence of bytes. Note that these vars are not part of the embedding page's DOM, and can only be shared with JavaScript using the PostMessage and HandleMessage functions of Instance.
| pp::VarArrayBuffer::VarArrayBuffer | ( | ) |
The default constructor constructs a VarArrayBuffer which is 0 byte long.
|
explicit |
Construct a VarArrayBuffer given a var for which is_array_buffer() is true. This will refer to the same ArrayBuffer as var, but allows you to access methods specific to VarArrayBuffer.
| [in] | var | An ArrayBuffer var. |
|
explicit |
Construct a new VarArrayBuffer which is size_in_bytes bytes long and initialized to zero.
| [in] | size_in_bytes | The size of the constructed ArrayBuffer in bytes. |
| uint32_t pp::VarArrayBuffer::ByteLength | ( | ) | const |
ByteLength() retrieves the length of the VarArrayBuffer in bytes.
VarArrayBuffer in bytes. | void* pp::VarArrayBuffer::Map | ( | ) |
Map() maps the ArrayBuffer in to the module's address space and returns a pointer to the beginning of the internal buffer for this ArrayBuffer. ArrayBuffers are copied when transmitted, so changes to the underlying memory are not automatically available to the embedding page.
Note that calling Map() can be a relatively expensive operation. Use care when calling it in performance-critical code. For example, you should call it only once when looping over an ArrayBuffer.
Example:
ArrayBuffer. | VarArrayBuffer& pp::VarArrayBuffer::operator= | ( | const VarArrayBuffer & | other | ) |
This function assigns one VarArrayBuffer to another VarArrayBuffer.
| [in] | other | The VarArrayBuffer to be assigned. |
VarArrayBuffer. This function assigns one VarArrayBuffer to another VarArrayBuffer. A Var's assignment operator is overloaded here so that we can check for assigning a non-ArrayBuffer var to a VarArrayBuffer.
| [in] | other | The VarArrayBuffer to be assigned. |
VarArrayBuffer (as a Var&). Reimplemented from pp::Var.
| void pp::VarArrayBuffer::Unmap | ( | ) |