2012-05-29 15:52:43 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-06-28 22:44:22 +00:00
|
|
|
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "jArray.h"
|
|
|
|
#include "nsHtml5Portability.h"
|
|
|
|
|
|
|
|
nsIAtom*
|
2014-01-04 15:02:17 +00:00
|
|
|
nsHtml5Portability::newLocalNameFromBuffer(char16_t* buf, int32_t offset, int32_t length, nsHtml5AtomTable* interner)
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(!offset, "The offset should always be zero here.");
|
2009-09-21 11:43:43 +00:00
|
|
|
NS_ASSERTION(interner, "Didn't get an atom service.");
|
|
|
|
return interner->GetAtom(nsDependentSubstring(buf, buf + length));
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsString*
|
2014-01-04 15:02:17 +00:00
|
|
|
nsHtml5Portability::newStringFromBuffer(char16_t* buf, int32_t offset, int32_t length)
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
|
|
|
return new nsString(buf + offset, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsString*
|
|
|
|
nsHtml5Portability::newEmptyString()
|
|
|
|
{
|
|
|
|
return new nsString();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsString*
|
|
|
|
nsHtml5Portability::newStringFromLiteral(const char* literal)
|
|
|
|
{
|
2009-07-15 11:30:33 +00:00
|
|
|
nsString* str = new nsString();
|
|
|
|
str->AssignASCII(literal);
|
|
|
|
return str;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-21 07:00:10 +00:00
|
|
|
nsString*
|
|
|
|
nsHtml5Portability::newStringFromString(nsString* string) {
|
|
|
|
nsString* newStr = new nsString();
|
|
|
|
newStr->Assign(*string);
|
|
|
|
return newStr;
|
|
|
|
}
|
|
|
|
|
2014-01-04 15:02:17 +00:00
|
|
|
jArray<char16_t,int32_t>
|
2009-06-28 22:44:22 +00:00
|
|
|
nsHtml5Portability::newCharArrayFromLocal(nsIAtom* local)
|
|
|
|
{
|
|
|
|
nsAutoString temp;
|
|
|
|
local->ToString(temp);
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t len = temp.Length();
|
2014-01-04 15:02:17 +00:00
|
|
|
jArray<char16_t,int32_t> arr = jArray<char16_t,int32_t>::newJArray(len);
|
|
|
|
memcpy(arr, temp.BeginReading(), len * sizeof(char16_t));
|
2009-07-15 11:30:33 +00:00
|
|
|
return arr;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2014-01-04 15:02:17 +00:00
|
|
|
jArray<char16_t,int32_t>
|
2009-06-28 22:44:22 +00:00
|
|
|
nsHtml5Portability::newCharArrayFromString(nsString* string)
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t len = string->Length();
|
2014-01-04 15:02:17 +00:00
|
|
|
jArray<char16_t,int32_t> arr = jArray<char16_t,int32_t>::newJArray(len);
|
|
|
|
memcpy(arr, string->BeginReading(), len * sizeof(char16_t));
|
2009-07-15 11:30:33 +00:00
|
|
|
return arr;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-21 13:18:20 +00:00
|
|
|
nsIAtom*
|
|
|
|
nsHtml5Portability::newLocalFromLocal(nsIAtom* local, nsHtml5AtomTable* interner)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(local, "Atom was null.");
|
|
|
|
NS_PRECONDITION(interner, "Atom table was null");
|
2010-02-26 09:18:35 +00:00
|
|
|
if (!local->IsStaticAtom()) {
|
2009-09-21 13:18:20 +00:00
|
|
|
nsAutoString str;
|
|
|
|
local->ToString(str);
|
|
|
|
local = interner->GetAtom(str);
|
|
|
|
}
|
|
|
|
return local;
|
|
|
|
}
|
|
|
|
|
2009-06-28 22:44:22 +00:00
|
|
|
void
|
|
|
|
nsHtml5Portability::releaseString(nsString* str)
|
|
|
|
{
|
|
|
|
delete str;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2014-01-04 15:02:17 +00:00
|
|
|
nsHtml5Portability::localEqualsBuffer(nsIAtom* local, char16_t* buf, int32_t offset, int32_t length)
|
2009-06-28 22:44:22 +00:00
|
|
|
{
|
2009-07-06 21:00:23 +00:00
|
|
|
return local->Equals(nsDependentSubstring(buf + offset, buf + offset + length));
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2009-06-28 22:44:22 +00:00
|
|
|
nsHtml5Portability::lowerCaseLiteralIsPrefixOfIgnoreAsciiCaseString(const char* lowerCaseLiteral, nsString* string)
|
|
|
|
{
|
|
|
|
if (!string) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
const char* litPtr = lowerCaseLiteral;
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t* strPtr = string->BeginReading();
|
|
|
|
const char16_t* end = string->EndReading();
|
|
|
|
char16_t litChar;
|
2009-07-15 11:32:58 +00:00
|
|
|
while ((litChar = *litPtr)) {
|
2009-06-28 22:44:22 +00:00
|
|
|
NS_ASSERTION(!(litChar >= 'A' && litChar <= 'Z'), "Literal isn't in lower case.");
|
2009-07-08 06:40:21 +00:00
|
|
|
if (strPtr == end) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
2014-01-04 15:02:17 +00:00
|
|
|
char16_t strChar = *strPtr;
|
2009-06-28 22:44:22 +00:00
|
|
|
if (strChar >= 'A' && strChar <= 'Z') {
|
|
|
|
strChar += 0x20;
|
|
|
|
}
|
|
|
|
if (litChar != strChar) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
++litPtr;
|
|
|
|
++strPtr;
|
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2009-06-28 22:44:22 +00:00
|
|
|
nsHtml5Portability::lowerCaseLiteralEqualsIgnoreAsciiCaseString(const char* lowerCaseLiteral, nsString* string)
|
|
|
|
{
|
|
|
|
if (!string) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
return string->LowerCaseEqualsASCII(lowerCaseLiteral);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2009-06-28 22:44:22 +00:00
|
|
|
nsHtml5Portability::literalEqualsString(const char* literal, nsString* string)
|
|
|
|
{
|
|
|
|
if (!string) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-06-28 22:44:22 +00:00
|
|
|
}
|
|
|
|
return string->EqualsASCII(literal);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2010-10-15 09:23:42 +00:00
|
|
|
nsHtml5Portability::stringEqualsString(nsString* one, nsString* other)
|
|
|
|
{
|
|
|
|
return one->Equals(*other);
|
|
|
|
}
|
|
|
|
|
2009-06-28 22:44:22 +00:00
|
|
|
void
|
|
|
|
nsHtml5Portability::initializeStatics()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5Portability::releaseStatics()
|
|
|
|
{
|
|
|
|
}
|