v8  3.14.5 (node 0.10.48)
V8 is Google's open source JavaScript engine
String Class Reference

#include <v8.h>

Inheritance diagram for String:
Collaboration diagram for String:

Data Structures

class  AsciiValue
 
class  ExternalAsciiStringResource
 
class  ExternalStringResource
 
class  ExternalStringResourceBase
 
class  Utf8Value
 
class  Value
 

Public Types

enum  Encoding { UNKNOWN_ENCODING = 0x1 , TWO_BYTE_ENCODING = 0x0 , ASCII_ENCODING = 0x4 }
 
enum  WriteOptions { NO_OPTIONS = 0 , HINT_MANY_WRITES_EXPECTED = 1 , NO_NULL_TERMINATION = 2 , PRESERVE_ASCII_NULL = 4 }
 

Public Member Functions

V8EXPORT int Length () const
 
V8EXPORT int Utf8Length () const
 
V8EXPORT bool MayContainNonAscii () const
 
V8EXPORT int Write (uint16_t *buffer, int start=0, int length=-1, int options=NO_OPTIONS) const
 
V8EXPORT int WriteAscii (char *buffer, int start=0, int length=-1, int options=NO_OPTIONS) const
 
V8EXPORT int WriteUtf8 (char *buffer, int length=-1, int *nchars_ref=NULL, int options=NO_OPTIONS) const
 
V8EXPORT bool IsExternal () const
 
V8EXPORT bool IsExternalAscii () const
 
ExternalStringResourceBaseGetExternalStringResourceBase (Encoding *encoding_out) const
 
ExternalStringResourceGetExternalStringResource () const
 
V8EXPORT const ExternalAsciiStringResourceGetExternalAsciiStringResource () const
 
V8EXPORT bool MakeExternal (ExternalStringResource *resource)
 
V8EXPORT bool MakeExternal (ExternalAsciiStringResource *resource)
 
V8EXPORT bool CanMakeExternal ()
 
- Public Member Functions inherited from Value
bool IsUndefined () const
 
bool IsNull () const
 
V8EXPORT bool IsTrue () const
 
V8EXPORT bool IsFalse () const
 
bool IsString () const
 
V8EXPORT bool IsFunction () const
 
V8EXPORT bool IsArray () const
 
V8EXPORT bool IsObject () const
 
V8EXPORT bool IsBoolean () const
 
V8EXPORT bool IsNumber () const
 
V8EXPORT bool IsExternal () const
 
V8EXPORT bool IsInt32 () const
 
V8EXPORT bool IsUint32 () const
 
V8EXPORT bool IsDate () const
 
V8EXPORT bool IsBooleanObject () const
 
V8EXPORT bool IsNumberObject () const
 
V8EXPORT bool IsStringObject () const
 
V8EXPORT bool IsNativeError () const
 
V8EXPORT bool IsRegExp () const
 
V8EXPORT Local< BooleanToBoolean () const
 
V8EXPORT Local< NumberToNumber () const
 
V8EXPORT Local< StringToString () const
 
V8EXPORT Local< StringToDetailString () const
 
V8EXPORT Local< ObjectToObject () const
 
V8EXPORT Local< IntegerToInteger () const
 
V8EXPORT Local< Uint32ToUint32 () const
 
V8EXPORT Local< Int32ToInt32 () const
 
V8EXPORT Local< Uint32ToArrayIndex () const
 
V8EXPORT bool BooleanValue () const
 
V8EXPORT double NumberValue () const
 
V8EXPORT int64_t IntegerValue () const
 
V8EXPORT uint32_t Uint32Value () const
 
V8EXPORT int32_t Int32Value () const
 
V8EXPORT bool Equals (Handle< Value > that) const
 
V8EXPORT bool StrictEquals (Handle< Value > that) const
 

Static Public Member Functions

static V8EXPORT v8::Local< v8::StringEmpty ()
 
static v8::Local< v8::StringEmpty (Isolate *isolate)
 
static StringCast (v8::Value *obj)
 
static V8EXPORT Local< StringNew (const char *data, int length=-1)
 
static V8EXPORT Local< StringNew (const uint16_t *data, int length=-1)
 
static V8EXPORT Local< StringNewSymbol (const char *data, int length=-1)
 
static V8EXPORT Local< StringConcat (Handle< String > left, Handle< String > right)
 
static V8EXPORT Local< StringNewExternal (ExternalStringResource *resource)
 
static V8EXPORT Local< StringNewExternal (ExternalAsciiStringResource *resource)
 
static V8EXPORT Local< StringNewUndetectable (const char *data, int length=-1)
 
static V8EXPORT Local< StringNewUndetectable (const uint16_t *data, int length=-1)
 

Detailed Description

A JavaScript string value (ECMA-262, 4.3.17).

Definition at line 1024 of file v8.h.

Member Enumeration Documentation

◆ Encoding

enum Encoding
Enumerator
UNKNOWN_ENCODING 
TWO_BYTE_ENCODING 
ASCII_ENCODING 

Definition at line 1026 of file v8.h.

◆ WriteOptions

Write the contents of the string to an external buffer. If no arguments are given, expects the buffer to be large enough to hold the entire string and NULL terminator. Copies the contents of the string and the NULL terminator into the buffer.

WriteUtf8 will not write partial UTF-8 sequences, preferring to stop before the end of the buffer.

Copies up to length characters into the output buffer. Only null-terminates if there is enough space in the buffer.

Parameters
bufferThe buffer into which the string will be copied.
startThe starting position within the string at which copying begins.
lengthThe number of characters to copy from the string. For WriteUtf8 the number of bytes in the buffer.
nchars_refThe number of characters written, can be NULL.
optionsVarious options that might affect performance of this or subsequent operations.
Returns
The number of characters copied to the buffer excluding the null terminator. For WriteUtf8: The number of bytes copied to the buffer including the null terminator (if written).
Enumerator
NO_OPTIONS 
HINT_MANY_WRITES_EXPECTED 
NO_NULL_TERMINATION 
PRESERVE_ASCII_NULL 

Definition at line 1075 of file v8.h.

Member Function Documentation

◆ CanMakeExternal()

V8EXPORT bool CanMakeExternal ( )

Returns true if this string can be made external.

◆ Cast()

String * Cast ( v8::Value obj)
inlinestatic

Definition at line 4417 of file v8.h.

◆ Concat()

static V8EXPORT Local<String> Concat ( Handle< String left,
Handle< String right 
)
static

Creates a new string by concatenating the left and the right strings passed in as parameters.

◆ Empty() [1/2]

static V8EXPORT v8::Local<v8::String> Empty ( )
static

A zero length string.

Referenced by String::Empty().

◆ Empty() [2/2]

Local< String > Empty ( Isolate isolate)
inlinestatic

◆ GetExternalAsciiStringResource()

V8EXPORT const ExternalAsciiStringResource* GetExternalAsciiStringResource ( ) const

Get the ExternalAsciiStringResource for an external ASCII string. Returns NULL if IsExternalAscii() doesn't return true.

◆ GetExternalStringResource()

String::ExternalStringResource * GetExternalStringResource ( ) const
inline

Get the ExternalStringResource for an external string. Returns NULL if IsExternal() doesn't return true.

Definition at line 4434 of file v8.h.

References Internals::GetInstanceType(), Internals::IsExternalTwoByteString(), Internals::kStringResourceOffset, and Internals::ReadField().

◆ GetExternalStringResourceBase()

String::ExternalStringResourceBase * GetExternalStringResourceBase ( String::Encoding encoding_out) const
inline

If the string is an external string, return the ExternalStringResourceBase regardless of the encoding, otherwise return NULL. The encoding of the string is returned in encoding_out.

Definition at line 4452 of file v8.h.

References Internals::GetInstanceType(), Internals::kExternalAsciiRepresentationTag, Internals::kExternalTwoByteRepresentationTag, Internals::kFullStringRepresentationMask, Internals::kStringEncodingMask, Internals::kStringResourceOffset, and Internals::ReadField().

◆ IsExternal()

V8EXPORT bool IsExternal ( ) const

Returns true if the string is external

◆ IsExternalAscii()

V8EXPORT bool IsExternalAscii ( ) const

Returns true if the string is both external and ASCII

◆ Length()

V8EXPORT int Length ( ) const

Returns the number of characters in this string.

◆ MakeExternal() [1/2]

V8EXPORT bool MakeExternal ( ExternalAsciiStringResource resource)

Associate an external string resource with this string by transforming it in place so that existing references to this string in the JavaScript heap will use the external string resource. The external string resource's character contents need to be equivalent to this string. Returns true if the string has been changed to be an external string. The string is not modified if the operation fails. See NewExternal for information on the lifetime of the resource.

◆ MakeExternal() [2/2]

V8EXPORT bool MakeExternal ( ExternalStringResource resource)

Associate an external string resource with this string by transforming it in place so that existing references to this string in the JavaScript heap will use the external string resource. The external string resource's character contents need to be equivalent to this string. Returns true if the string has been changed to be an external string. The string is not modified if the operation fails. See NewExternal for information on the lifetime of the resource.

◆ MayContainNonAscii()

V8EXPORT bool MayContainNonAscii ( ) const

A fast conservative check for non-ASCII characters. May return true even for ASCII strings, but if it returns false you can be sure that all characters are in the range 0-127.

◆ New() [1/2]

static V8EXPORT Local<String> New ( const char *  data,
int  length = -1 
)
static

Allocates a new string from either UTF-8 encoded or ASCII data. The second parameter 'length' gives the buffer length. If the data is UTF-8 encoded, the caller must be careful to supply the length parameter. If it is not given, the function calls 'strlen' to determine the buffer length, it might be wrong if 'data' contains a null character.

Referenced by Template::Set().

◆ New() [2/2]

static V8EXPORT Local<String> New ( const uint16_t *  data,
int  length = -1 
)
static

Allocates a new string from 16-bit character codes.

◆ NewExternal() [1/2]

static V8EXPORT Local<String> NewExternal ( ExternalAsciiStringResource resource)
static

Creates a new external string using the ASCII data defined in the given resource. When the external string is no longer live on V8's heap the resource will be disposed by calling its Dispose method. The caller of this function should not otherwise delete or modify the resource. Neither should the underlying buffer be deallocated or modified except through the destructor of the external string resource.

◆ NewExternal() [2/2]

static V8EXPORT Local<String> NewExternal ( ExternalStringResource resource)
static

Creates a new external string using the data defined in the given resource. When the external string is no longer live on V8's heap the resource will be disposed by calling its Dispose method. The caller of this function should not otherwise delete or modify the resource. Neither should the underlying buffer be deallocated or modified except through the destructor of the external string resource.

◆ NewSymbol()

static V8EXPORT Local<String> NewSymbol ( const char *  data,
int  length = -1 
)
static

Creates a symbol. Returns one if it exists already.

◆ NewUndetectable() [1/2]

static V8EXPORT Local<String> NewUndetectable ( const char *  data,
int  length = -1 
)
static

Creates an undetectable string from the supplied ASCII or UTF-8 data.

◆ NewUndetectable() [2/2]

static V8EXPORT Local<String> NewUndetectable ( const uint16_t *  data,
int  length = -1 
)
static

Creates an undetectable string from the supplied 16-bit character codes.

◆ Utf8Length()

V8EXPORT int Utf8Length ( ) const

Returns the number of bytes in the UTF-8 encoded representation of this string.

◆ Write()

V8EXPORT int Write ( uint16_t *  buffer,
int  start = 0,
int  length = -1,
int  options = NO_OPTIONS 
) const

◆ WriteAscii()

V8EXPORT int WriteAscii ( char *  buffer,
int  start = 0,
int  length = -1,
int  options = NO_OPTIONS 
) const

◆ WriteUtf8()

V8EXPORT int WriteUtf8 ( char *  buffer,
int  length = -1,
int *  nchars_ref = NULL,
int  options = NO_OPTIONS 
) const

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