15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
2591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     its contributors may be used to endorse or promote products derived
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     from this software without specific prior written permission.
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
29591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch#ifndef DOMException_h
30591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch#define DOMException_h
315c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
32197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch#include "bindings/core/v8/ScriptWrappable.h"
33f91f5fa1608c2cdd9af1842fb5dadbe78275be2aBo Liu#include "platform/heap/Handle.h"
34591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch#include "wtf/PassRefPtr.h"
35591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch#include "wtf/RefCounted.h"
360019e4eead4d990e4304c54a9028aca9122fb256Ben Murdoch#include "wtf/text/WTFString.h"
375c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
38c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
395c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
40591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdochtypedef int ExceptionCode;
415c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
42f91f5fa1608c2cdd9af1842fb5dadbe78275be2aBo Liuclass DOMException FINAL : public RefCountedWillBeGarbageCollectedFinalized<DOMException>, public ScriptWrappable {
437242dc3dbeb210b5e876a3c42d1ec1a667fc621aPrimiano Tucci    DEFINE_WRAPPERTYPEINFO();
445c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)public:
45f91f5fa1608c2cdd9af1842fb5dadbe78275be2aBo Liu    static PassRefPtrWillBeRawPtr<DOMException> create(ExceptionCode, const String& sanitizedMessage = String(), const String& unsanitizedMessage = String());
46591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch
475c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    unsigned short code() const { return m_code; }
485c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    String name() const { return m_name; }
495c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
50e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    // This is the message that's exposed to JavaScript: never return unsanitized data.
51e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    String message() const { return m_sanitizedMessage; }
525c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    String toString() const;
535c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
54e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    // This is the message that's exposed to the console: if an unsanitized message is present, we prefer it.
55e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    String messageForConsole() const { return !m_unsanitizedMessage.isEmpty() ? m_unsanitizedMessage : m_sanitizedMessage; }
56e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    String toStringForConsole() const;
57e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)
58591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch    static String getErrorName(ExceptionCode);
59591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch    static String getErrorMessage(ExceptionCode);
605c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
61f91f5fa1608c2cdd9af1842fb5dadbe78275be2aBo Liu    void trace(Visitor*) { }
62f91f5fa1608c2cdd9af1842fb5dadbe78275be2aBo Liu
635c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)private:
64e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    DOMException(unsigned short m_code, const String& name, const String& sanitizedMessage, const String& unsanitizedMessage);
65591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch
665c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    unsigned short m_code;
675c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    String m_name;
68e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    String m_sanitizedMessage;
69e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    String m_unsanitizedMessage;
705c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
715c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
72c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)} // namespace blink
735c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
74591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch#endif // DOMException_h
75