blob: d9c2b05b8efbf964243352d5fbea2f0cb792aa08 [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,
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000053 EnumerationContext,
54 QueryContext,
55 IndexedGetterContext,
56 IndexedSetterContext,
57 IndexedDeletionContext,
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000058 UnknownContext, // FIXME: Remove this once we've flipped over to the new API.
59 };
60
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000061 ExceptionState(Context context, const char* propertyName, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
62 : m_code(0)
63 , m_context(context)
64 , m_propertyName(propertyName)
65 , m_interfaceName(interfaceName)
66 , m_creationContext(creationContext)
67 , m_isolate(isolate) { }
68
69 ExceptionState(Context context, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
70 : m_code(0)
71 , m_context(context)
72 , m_propertyName(0)
73 , m_interfaceName(interfaceName)
74 , m_creationContext(creationContext)
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000075 , m_isolate(isolate) { ASSERT(m_context == ConstructionContext || m_context == EnumerationContext || m_context == IndexedSetterContext || m_context == IndexedGetterContext || m_context == IndexedDeletionContext); }
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000076
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000077 virtual void throwDOMException(const ExceptionCode&, const String& message);
Torne (Richard Coles)f79f16f2013-10-31 11:16:44 +000078 virtual void throwTypeError(const String& message);
Torne (Richard Coles)e1f1df52013-08-23 16:39:30 +010079 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String());
Ben Murdoche69819b2013-07-17 14:56:49 +010080
81 bool hadException() const { return !m_exception.isEmpty() || m_code; }
82 void clearException();
83
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000084 ExceptionCode code() const { return m_code; }
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000085 const String& message() const { return m_message; }
Ben Murdoch1fad5ca2013-08-07 11:05:11 +010086
Ben Murdoche69819b2013-07-17 14:56:49 +010087 bool throwIfNeeded()
88 {
Ben Murdochaafa69c2014-04-03 12:30:15 +010089 if (!hadException())
90 return false;
91 throwException();
Ben Murdoche69819b2013-07-17 14:56:49 +010092 return true;
93 }
94
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000095 Context context() const { return m_context; }
96 const char* propertyName() const { return m_propertyName; }
97 const char* interfaceName() const { return m_interfaceName; }
98
Torne (Richard Coles)09380292014-02-21 12:17:33 +000099 void rethrowV8Exception(v8::Handle<v8::Value> value)
100 {
101 setException(value);
102 }
103
Ben Murdoche69819b2013-07-17 14:56:49 +0100104protected:
105 ExceptionCode m_code;
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000106 Context m_context;
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000107 String m_message;
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000108 const char* m_propertyName;
109 const char* m_interfaceName;
Ben Murdoche69819b2013-07-17 14:56:49 +0100110
111private:
112 void setException(v8::Handle<v8::Value>);
Ben Murdochaafa69c2014-04-03 12:30:15 +0100113 void throwException();
Ben Murdoche69819b2013-07-17 14:56:49 +0100114
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000115 String addExceptionContext(const String&) const;
116
Ben Murdoche69819b2013-07-17 14:56:49 +0100117 ScopedPersistent<v8::Value> m_exception;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000118 v8::Handle<v8::Object> m_creationContext;
Ben Murdoche69819b2013-07-17 14:56:49 +0100119 v8::Isolate* m_isolate;
120};
121
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000122// Used if exceptions can/should not be directly thrown.
123class NonThrowableExceptionState FINAL : public ExceptionState {
Ben Murdoche69819b2013-07-17 14:56:49 +0100124public:
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000125 NonThrowableExceptionState(): ExceptionState(ExceptionState::UnknownContext, 0, 0, v8::Handle<v8::Object>(), v8::Isolate::GetCurrent()) { }
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000126 virtual void throwDOMException(const ExceptionCode&, const String& message) OVERRIDE;
127 virtual void throwTypeError(const String& message = String()) OVERRIDE;
128 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) OVERRIDE;
129};
130
131// Used if any exceptions thrown are ignorable.
132class TrackExceptionState FINAL : public ExceptionState {
133public:
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000134 TrackExceptionState(): ExceptionState(ExceptionState::UnknownContext, 0, 0, v8::Handle<v8::Object>(), v8::Isolate::GetCurrent()) { }
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000135 virtual void throwDOMException(const ExceptionCode&, const String& message) OVERRIDE;
136 virtual void throwTypeError(const String& message = String()) OVERRIDE;
137 virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +0100138};
139
140} // namespace WebCore
141
142#endif // ExceptionState_h