Ignore:
Timestamp:
Jan 16, 2014, 10:50:26 PM (11 years ago)
Author:
[email protected]
Message:

Get rid of OpaqueJSString::deprecatedCharacters()
https://bugs.webkit.org/show_bug.cgi?id=127161

Reviewed by Sam Weinig.

Handle OpaqueJSString::m_string being either 8-bit or 16-bit and add extra
code paths for the 8-bit cases.

Unfortunately, JSStringGetCharactersPtr is still expected to return a 16-bit character pointer.
Handle this by storing a separate 16-bit string and initializing it on demand when JSStringGetCharactersPtr
is called. This has the nice side effect of making JSStringGetCharactersPtr thread-safe when it wasn't before.
(In theory, someone could have a JSStringRef backed by an 8-bit string and call JSStringGetCharactersPtr on it
causing an unsafe upconversion to a 16-bit string).

  • API/JSStringRef.cpp:

(JSStringGetCharactersPtr):
Call OpaqueJSString::characters.

(JSStringGetUTF8CString):
Add a code path that handles 8-bit strings.

(JSStringIsEqual):
Call OpaqueJSString::equal.

  • API/JSStringRefCF.cpp:

(JSStringCreateWithCFString):
Reformat the code to use an early return instead of putting most of the code inside the body of an if statement.

(JSStringCopyCFString):
Create an 8-bit CFStringRef if possible.

  • API/OpaqueJSString.cpp:

(OpaqueJSString::create):
Use nullptr.

(OpaqueJSString::~OpaqueJSString):
Free m_characters.

(OpaqueJSString::characters):
Do the up-conversion and store the result in m_characters.

(OpaqueJSString::equal):
New helper function.

  • API/OpaqueJSString.h:

(OpaqueJSString::is8Bit):
New function that returns whether a string is 8-bit or not.

(OpaqueJSString::characters8):
(OpaqueJSString::characters16):
Add getters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/API/OpaqueJSString.cpp

    r157688 r162185  
    3737    if (!string.isNull())
    3838        return adoptRef(new OpaqueJSString(string));
    39     return 0;
     39    return nullptr;
     40}
     41
     42OpaqueJSString::~OpaqueJSString()
     43{
     44    if (UChar* characters = m_characters) {
     45        // m_characters is put in a local here to avoid an extra atomic load.
     46        fastFree(static_cast<void*>(characters));
     47    }
    4048}
    4149
     
    6270    return Identifier(vm, m_string.characters16(), m_string.length());
    6371}
     72
     73const UChar* OpaqueJSString::characters()
     74{
     75    if (!this)
     76        return nullptr;
     77
     78    // m_characters is put in a local here to avoid an extra atomic load.
     79    UChar* characters = m_characters;
     80    if (characters)
     81        return characters;
     82
     83    unsigned length = m_string.length();
     84    UChar* newCharacters = static_cast<UChar*>(fastMalloc(length * sizeof(UChar)));
     85
     86    if (m_string.is8Bit()) {
     87        for (size_t i = 0; i < length; ++i)
     88            newCharacters[i] = m_string.characters8()[i];
     89    } else
     90        memcpy(newCharacters, m_string.characters16(), length * sizeof(UChar));
     91
     92    if (!m_characters.compare_exchange_strong(characters, newCharacters)) {
     93        fastFree(newCharacters);
     94        return characters;
     95    }
     96
     97    return newCharacters;
     98}
     99
     100bool OpaqueJSString::equal(const OpaqueJSString* a, const OpaqueJSString* b)
     101{
     102    if (a == b)
     103        return true;
     104
     105    if (!a || !b)
     106        return false;
     107
     108    return a->m_string == b->m_string;
     109}
     110
     111
Note: See TracChangeset for help on using the changeset viewer.