V8 Project
v8::String::ExternalOneByteStringResource Class Referenceabstract

An ExternalOneByteStringResource is a wrapper around an one-byte string buffer that resides outside V8's heap. More...

#include <v8.h>

+ Inheritance diagram for v8::String::ExternalOneByteStringResource:
+ Collaboration diagram for v8::String::ExternalOneByteStringResource:

Public Member Functions

virtual ~ExternalOneByteStringResource ()
 Override the destructor to manage the life cycle of the underlying buffer. More...
 
virtual const char * data () const =0
 The string data from the underlying buffer. More...
 
virtual size_t length () const =0
 The number of Latin-1 characters in the string. More...
 
- Public Member Functions inherited from v8::String::ExternalStringResourceBase
virtual ~ExternalStringResourceBase ()
 

Protected Member Functions

 ExternalOneByteStringResource ()
 
- Protected Member Functions inherited from v8::String::ExternalStringResourceBase
 ExternalStringResourceBase ()
 
virtual void Dispose ()
 Internally V8 will call this Dispose method when the external string resource is no longer needed. More...
 

Detailed Description

An ExternalOneByteStringResource is a wrapper around an one-byte string buffer that resides outside V8's heap.

Implement an ExternalOneByteStringResource to manage the life cycle of the underlying buffer. Note that the string data must be immutable and that the data must be Latin-1 and not UTF-8, which would require special treatment internally in the engine and do not allow efficient indexing. Use String::New or convert to 16 bit data for non-Latin1.

Definition at line 1917 of file v8.h.

Constructor & Destructor Documentation

◆ ~ExternalOneByteStringResource()

virtual v8::String::ExternalOneByteStringResource::~ExternalOneByteStringResource ( )
inlinevirtual

Override the destructor to manage the life cycle of the underlying buffer.

Definition at line 1924 of file v8.h.

1924 {}

◆ ExternalOneByteStringResource()

v8::String::ExternalOneByteStringResource::ExternalOneByteStringResource ( )
inlineprotected

Definition at line 1930 of file v8.h.

1930 {}

Member Function Documentation

◆ data()

virtual const char* v8::String::ExternalOneByteStringResource::data ( ) const
pure virtual

The string data from the underlying buffer.

Implemented in v8::internal::FINAL< kOperandKind, kNumCachedOperands >, v8::BinaryResource, and v8::ExternalOneByteStringResourceImpl.

Referenced by v8::String::MakeExternal(), v8::internal::String::MakeExternal(), and v8::String::NewExternal().

+ Here is the caller graph for this function:

◆ length()

virtual size_t v8::String::ExternalOneByteStringResource::length ( ) const
pure virtual

The documentation for this class was generated from the following file: