blob: bfe2790e16a84ac1aa19d47d039b94074bdf9fe8 [file] [log] [blame]
Ben Murdoche69819b2013-07-17 14:56:49 +01001/*
2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef ExceptionState_h
32#define ExceptionState_h
33
34#include "bindings/v8/ScopedPersistent.h"
35#include "bindings/v8/V8ThrowException.h"
36#include "wtf/Noncopyable.h"
Ben Murdoch7757ec22013-07-23 11:17:36 +010037#include "wtf/text/WTFString.h"
Ben Murdoche69819b2013-07-17 14:56:49 +010038#include <v8.h>
39
40namespace WebCore {
41
42typedef int ExceptionCode;
43
44class ExceptionState {
45 WTF_MAKE_NONCOPYABLE(ExceptionState);
46public:
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000047 enum Context {
48 ConstructionContext,
49 ExecutionContext,
50 DeletionContext,
51 GetterContext,
52 SetterContext,
53 UnknownContext, // FIXME: Remove this once we've flipped over to the new API.
54 };
55
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000056 explicit ExceptionState(const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
Ben Murdoche69819b2013-07-17 14:56:49 +010057 : m_code(0)
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000058 , m_context(UnknownContext)
59 , m_propertyName(0)
60 , m_interfaceName(0)
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000061 , m_creationContext(creationContext)
Ben Murdoche69819b2013-07-17 14:56:49 +010062 , m_isolate(isolate) { }
63
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000064 ExceptionState(Context context, const char* propertyName, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
65 : m_code(0)
66 , m_context(context)
67 , m_propertyName(propertyName)
68 , m_interfaceName(interfaceName)
69 , m_creationContext(creationContext)
70 , m_isolate(isolate) { }
71
72 ExceptionState(Context context, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
73 : m_code(0)
74 , m_context(context)
75 , m_propertyName(0)
76 , m_interfaceName(interfaceName)
77 , m_creationContext(creationContext)
78 , m_isolate(isolate) { ASSERT(m_context == ConstructionContext); }
79
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000080 virtual void throwDOMException(const ExceptionCode&, const String& message);
Torne (Richard Coles)f79f16f2013-10-31 11:16:44 +000081 virtual void throwTypeError(const String& message);
Torne (Richard Coles)e1f1df52013-08-23 16:39:30 +010082 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String());
Ben Murdoche69819b2013-07-17 14:56:49 +010083
Torne (Richard Coles)f79f16f2013-10-31 11:16:44 +000084 // Please don't use these methods. Use ::throwDOMException and ::throwTypeError, and pass in a useful exception message.
85 virtual void throwUninformativeAndGenericDOMException(const ExceptionCode& ec) { throwDOMException(ec, String()); }
86 virtual void throwUninformativeAndGenericTypeError() { throwTypeError(String()); }
Torne (Richard Coles)06f816c2013-09-26 13:25:12 +010087
Ben Murdoche69819b2013-07-17 14:56:49 +010088 bool hadException() const { return !m_exception.isEmpty() || m_code; }
89 void clearException();
90
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000091 ExceptionCode code() const { return m_code; }
Ben Murdoch1fad5ca2013-08-07 11:05:11 +010092
Ben Murdoche69819b2013-07-17 14:56:49 +010093 bool throwIfNeeded()
94 {
95 if (m_exception.isEmpty()) {
96 if (!m_code)
97 return false;
Torne (Richard Coles)06f816c2013-09-26 13:25:12 +010098 throwUninformativeAndGenericDOMException(m_code);
Ben Murdoche69819b2013-07-17 14:56:49 +010099 }
100
Torne (Richard Coles)9bbd2f52013-09-19 22:37:05 +0100101 V8ThrowException::throwError(m_exception.newLocal(m_isolate), m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100102 return true;
103 }
104
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000105 Context context() const { return m_context; }
106 const char* propertyName() const { return m_propertyName; }
107 const char* interfaceName() const { return m_interfaceName; }
108
Ben Murdoche69819b2013-07-17 14:56:49 +0100109protected:
110 ExceptionCode m_code;
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000111 Context m_context;
112 const char* m_propertyName;
113 const char* m_interfaceName;
Ben Murdoche69819b2013-07-17 14:56:49 +0100114
115private:
116 void setException(v8::Handle<v8::Value>);
117
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000118 String addExceptionContext(const String&) const;
119
Ben Murdoche69819b2013-07-17 14:56:49 +0100120 ScopedPersistent<v8::Value> m_exception;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000121 v8::Handle<v8::Object> m_creationContext;
Ben Murdoche69819b2013-07-17 14:56:49 +0100122 v8::Isolate* m_isolate;
123};
124
Ben Murdoch1fad5ca2013-08-07 11:05:11 +0100125class TrackExceptionState : public ExceptionState {
Ben Murdoche69819b2013-07-17 14:56:49 +0100126public:
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000127 TrackExceptionState(): ExceptionState(v8::Handle<v8::Object>(), 0) { }
Torne (Richard Coles)06f816c2013-09-26 13:25:12 +0100128 virtual void throwDOMException(const ExceptionCode&, const String& message) OVERRIDE FINAL;
Ben Murdoch7757ec22013-07-23 11:17:36 +0100129 virtual void throwTypeError(const String& message = String()) OVERRIDE FINAL;
Torne (Richard Coles)e1f1df52013-08-23 16:39:30 +0100130 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) OVERRIDE FINAL;
Ben Murdoche69819b2013-07-17 14:56:49 +0100131};
132
133} // namespace WebCore
134
135#endif // ExceptionState_h