| /* |
| * Copyright (C) 2011 Google Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * 3. Neither the name of Apple Inc. ("Apple") nor the names of |
| * its contributors may be used to endorse or promote products derived |
| * from this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY GOOGLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "DOMCoreException.h" |
| |
| #include "ExceptionCode.h" |
| #include "ExceptionCodeDescription.h" |
| |
| namespace WebCore { |
| |
| // http://heycam.github.io/webidl/#idl-DOMException-error-names |
| static const struct CoreException { |
| const char* const name; |
| const char* const description; |
| ExceptionCode code; |
| } coreExceptions[] = { |
| { "IndexSizeError", "The index is not in the allowed range.", 1 }, |
| { nullptr, nullptr, 0 }, // DOMStringSizeError |
| { "HierarchyRequestError", "The operation would yield an incorrect node tree.", 3 }, |
| { "WrongDocumentError", "The object is in the wrong document.", 4 }, |
| { "InvalidCharacterError", "The string contains invalid characters.", 5 }, |
| { nullptr, nullptr, 0 }, // NoDataAllowedError |
| { "NoModificationAllowedError", "The object can not be modified.", 7 }, |
| { "NotFoundError", "The object can not be found here.", 8 }, |
| { "NotSupportedError", "The operation is not supported.", 9 }, |
| { "InUseAttributeError", "The attribute is in use.", 10 }, |
| { "InvalidStateError", "The object is in an invalid state.", 11 }, |
| { "SyntaxError", "The string did not match the expected pattern.", 12 }, |
| { "InvalidModificationError", " The object can not be modified in this way.", 13 }, |
| { "NamespaceError", "The operation is not allowed by Namespaces in XML.", 14 }, |
| { "InvalidAccessError", "The object does not support the operation or argument.", 15 }, |
| { nullptr, nullptr, 0 }, // ValidationError |
| { "TypeMismatchError", "The type of an object was incompatible with the expected type of the parameter associated to the object.", 17 }, |
| { "SecurityError", "The operation is insecure.", 18 }, |
| { "NetworkError", " A network error occurred.", 19 }, |
| { "AbortError", "The operation was aborted.", 20 }, |
| { "URLMismatchError", "The given URL does not match another URL.", 21 }, |
| { "QuotaExceededError", "The quota has been exceeded.", 22 }, |
| { "TimeoutError", "The operation timed out.", 23 }, |
| { "InvalidNodeTypeError", "The supplied node is incorrect or has an incorrect ancestor for this operation.", 24 }, |
| { "DataCloneError", "The object can not be cloned.", 25 }, |
| { "EncodingError", "The encoding operation (either encoded or decoding) failed.", 0 }, |
| { "NotReadableError", "The I/O read operation failed.", 0 }, |
| { "UnknownError", "The operation failed for an unknown transient reason (e.g. out of memory).", 0 }, |
| { "ConstraintError", "A mutation operation in a transaction failed because a constraint was not satisfied.", 0 }, |
| { "DataError", "Provided data is inadequate.", 0 }, |
| { "TransactionInactiveError", "A request was placed against a transaction which is currently not active, or which is finished.", 0 }, |
| { "ReadOnlyError", "The mutating operation was attempted in a \"readonly\" transaction.", 0 }, |
| { "VersionError", "An attempt was made to open a database using a lower version than the existing version.", 0 }, |
| { "OperationError", "The operation failed for an operation-specific reason.", 0 }, |
| { "NotAllowedError", "The request is not allowed by the user agent or the platform in the current context, possibly because the user denied permission.", 0 } |
| }; |
| |
| static ExceptionCode errorCodeFromName(const String& name) |
| { |
| for (auto& entry : coreExceptions) { |
| if (entry.name == name) |
| return entry.code; |
| } |
| return 0; |
| } |
| |
| Ref<DOMCoreException> DOMCoreException::create(const String& message, const String& name) |
| { |
| return adoptRef(*new DOMCoreException(errorCodeFromName(name), message, name)); |
| } |
| |
| DOMCoreException::DOMCoreException(ExceptionCode ec, const String& message, const String& name) |
| : ExceptionBase(ec, name, message, ASCIILiteral("DOM")) |
| { |
| } |
| |
| bool DOMCoreException::initializeDescription(ExceptionCode ec, ExceptionCodeDescription* description) |
| { |
| description->typeName = "DOM"; |
| description->code = ec; |
| description->type = DOMCoreExceptionType; |
| |
| size_t tableSize = WTF_ARRAY_LENGTH(coreExceptions); |
| size_t tableIndex = ec - INDEX_SIZE_ERR; |
| |
| description->name = tableIndex < tableSize ? coreExceptions[tableIndex].name : 0; |
| description->description = tableIndex < tableSize ? coreExceptions[tableIndex].description : 0; |
| |
| return true; |
| } |
| |
| } // namespace WebCore |