1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
/*
* Copyright (C) 2007 Henry Mason (hmason@mac.com)
* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``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 COMPUTER, INC. OR
* 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.
*
*/
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_MESSAGE_EVENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_MESSAGE_EVENT_H_
#include <memory>
#include "base/check_op.h"
#include "third_party/blink/public/mojom/messaging/delegated_capability.mojom-blink.h"
#include "third_party/blink/renderer/bindings/core/v8/serialization/serialized_script_value.h"
#include "third_party/blink/renderer/bindings/core/v8/serialization/unpacked_serialized_script_value.h"
#include "third_party/blink/renderer/bindings/core/v8/world_safe_v8_reference.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/dom/events/event.h"
#include "third_party/blink/renderer/core/dom/events/event_target.h"
#include "third_party/blink/renderer/core/fileapi/blob.h"
#include "third_party/blink/renderer/core/messaging/message_port.h"
#include "third_party/blink/renderer/core/typed_arrays/dom_array_buffer.h"
#include "third_party/blink/renderer/platform/bindings/v8_external_memory_accounter.h"
#include "third_party/blink/renderer/platform/bindings/v8_private_property.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
namespace blink {
class MessageEventInit;
class UserActivation;
class CORE_EXPORT MessageEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
static MessageEvent* Create() { return MakeGarbageCollected<MessageEvent>(); }
static MessageEvent* Create(GCedMessagePortArray* ports,
const String& origin = String(),
const String& last_event_id = String(),
EventTarget* source = nullptr) {
return MakeGarbageCollected<MessageEvent>(origin, last_event_id, source,
ports);
}
static MessageEvent* Create(GCedMessagePortArray* ports,
scoped_refptr<SerializedScriptValue> data,
const String& origin = String(),
const String& last_event_id = String(),
EventTarget* source = nullptr) {
return MakeGarbageCollected<MessageEvent>(
std::move(data), origin, last_event_id, source, ports, nullptr);
}
static MessageEvent* Create(GCedMessagePortArray* ports,
scoped_refptr<SerializedScriptValue> data,
UserActivation* user_activation) {
return MakeGarbageCollected<MessageEvent>(
std::move(data), String(), String(), nullptr, ports, user_activation);
}
static MessageEvent* Create(
Vector<MessagePortChannel> channels,
scoped_refptr<SerializedScriptValue> data,
const String& origin = String(),
const String& last_event_id = String(),
EventTarget* source = nullptr,
UserActivation* user_activation = nullptr,
mojom::blink::DelegatedCapability delegated_capability =
mojom::blink::DelegatedCapability::kNone) {
return MakeGarbageCollected<MessageEvent>(
std::move(data), origin, last_event_id, source, std::move(channels),
user_activation, delegated_capability);
}
static MessageEvent* CreateError(const String& origin = String(),
EventTarget* source = nullptr) {
return MakeGarbageCollected<MessageEvent>(origin, source);
}
static MessageEvent* Create(const String& data,
const String& origin = String()) {
return MakeGarbageCollected<MessageEvent>(data, origin);
}
static MessageEvent* Create(Blob* data, const String& origin = String()) {
return MakeGarbageCollected<MessageEvent>(data, origin);
}
static MessageEvent* Create(DOMArrayBuffer* data,
const String& origin = String()) {
return MakeGarbageCollected<MessageEvent>(data, origin);
}
static MessageEvent* Create(const AtomicString& type,
const MessageEventInit* initializer,
ExceptionState&);
MessageEvent();
MessageEvent(const AtomicString&, const MessageEventInit*);
MessageEvent(const String& origin,
const String& last_event_id,
EventTarget* source,
GCedMessagePortArray*);
MessageEvent(scoped_refptr<SerializedScriptValue> data,
const String& origin,
const String& last_event_id,
EventTarget* source,
GCedMessagePortArray*,
UserActivation* user_activation);
MessageEvent(scoped_refptr<SerializedScriptValue> data,
const String& origin,
const String& last_event_id,
EventTarget* source,
Vector<MessagePortChannel>,
UserActivation* user_activation,
mojom::blink::DelegatedCapability delegated_capability);
// Creates a "messageerror" event.
MessageEvent(const String& origin, EventTarget* source);
MessageEvent(const String& data, const String& origin);
MessageEvent(Blob* data, const String& origin);
MessageEvent(DOMArrayBuffer* data, const String& origin);
~MessageEvent() override;
void initMessageEvent(const AtomicString& type,
bool bubbles,
bool cancelable,
const ScriptValue& data,
const String& origin,
const String& last_event_id,
EventTarget* source,
MessagePortArray ports);
void initMessageEvent(const AtomicString& type,
bool bubbles,
bool cancelable,
scoped_refptr<SerializedScriptValue> data,
const String& origin,
const String& last_event_id,
EventTarget* source,
GCedMessagePortArray*,
UserActivation* user_activation,
mojom::blink::DelegatedCapability delegated_capability);
void initMessageEvent(const AtomicString& type,
bool bubbles,
bool cancelable,
const String& data,
const String& origin,
const String& last_event_id,
EventTarget* source,
GCedMessagePortArray*);
ScriptValue data(ScriptState*);
bool IsDataDirty() const { return is_data_dirty_; }
const String& origin() const { return origin_; }
const String& lastEventId() const { return last_event_id_; }
EventTarget* source() const { return source_.Get(); }
MessagePortArray ports();
bool isPortsDirty() const { return is_ports_dirty_; }
UserActivation* userActivation() const { return user_activation_.Get(); }
mojom::blink::DelegatedCapability delegatedCapability() const {
return delegated_capability_;
}
uint64_t GetTraceId() const { return trace_id_; }
void SetTraceId(uint64_t trace_id) { trace_id_ = trace_id; }
Vector<MessagePortChannel> ReleaseChannels() { return std::move(channels_); }
const AtomicString& InterfaceName() const override;
// Use with caution. Since the data has already been unpacked, the underlying
// SerializedScriptValue will no longer contain transferred contents.
SerializedScriptValue* DataAsSerializedScriptValue() const {
DCHECK_EQ(data_type_, kDataTypeSerializedScriptValue);
return data_as_serialized_script_value_->Value();
}
// Returns true when |data_as_serialized_script_value_| contains values that
// remote origins cannot access. If true, remote origins must dispatch a
// messageerror event instead of message event.
bool IsOriginCheckRequiredToAccessData() const;
// Returns true when |data_as_serialized_script_value_| is locked to an
// agent cluster.
bool IsLockedToAgentCluster() const;
// Returns true when |data_as_serialized_script_value_| is not prevented from
// being deserialized in the provided execution context.
bool CanDeserializeIn(ExecutionContext*) const;
void EntangleMessagePorts(ExecutionContext*);
void Trace(Visitor*) const override;
void LockToAgentCluster();
private:
enum DataType {
kDataTypeNull, // For "messageerror" events.
kDataTypeScriptValue,
kDataTypeSerializedScriptValue,
kDataTypeString,
kDataTypeBlob,
kDataTypeArrayBuffer
};
size_t SizeOfExternalMemoryInBytes();
DataType data_type_;
WorldSafeV8Reference<v8::Value> data_as_v8_value_;
Member<UnpackedSerializedScriptValue> data_as_serialized_script_value_;
V8ExternalMemoryAccounter serialized_data_memory_accounter_;
String data_as_string_;
Member<Blob> data_as_blob_;
Member<DOMArrayBuffer> data_as_array_buffer_;
bool is_data_dirty_ = true;
String origin_;
String last_event_id_;
Member<EventTarget> source_;
// ports_ are the MessagePorts in an entangled state, and channels_ are
// the MessageChannels in a disentangled state. Only one of them can be
// non-empty at a time. EntangleMessagePorts() moves between the states.
Member<GCedMessagePortArray> ports_;
bool is_ports_dirty_ = true;
Vector<MessagePortChannel> channels_;
Member<UserActivation> user_activation_;
mojom::blink::DelegatedCapability delegated_capability_;
// For serialized messages across process this attribute contains the
// information of whether the actual original SerializedScriptValue was locked
// to the agent cluster.
bool locked_to_agent_cluster_ = false;
uint64_t trace_id_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_MESSAGE_EVENT_H_
|