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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ppapi/proxy/resource_message_test_sink.h"
#include <stddef.h>
#include <tuple>
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/proxy/resource_message_params.h"
namespace ppapi {
namespace proxy {
namespace {
// Backend for GetAllResource[Calls|Replies]Matching.
template <class WrapperMessage, class Params>
std::vector<std::pair<Params, IPC::Message>> GetAllResourceMessagesMatching(
const ResourceMessageTestSink& sink,
uint32_t id) {
std::vector<std::pair<Params, IPC::Message> > result;
for (size_t i = 0; i < sink.message_count(); i++) {
const IPC::Message* msg = sink.GetMessageAt(i);
if (msg->type() == WrapperMessage::ID) {
typename WrapperMessage::Param params;
WrapperMessage::Read(msg, ¶ms);
Params cur_params = std::get<0>(params);
IPC::Message cur_msg = std::get<1>(params);
if (cur_msg.type() == id) {
result.push_back(std::make_pair(cur_params, cur_msg));
}
}
}
return result;
}
} // namespace
ResourceMessageTestSink::ResourceMessageTestSink() {
}
ResourceMessageTestSink::~ResourceMessageTestSink() {
}
bool ResourceMessageTestSink::Send(IPC::Message* msg) {
int message_id = 0;
std::unique_ptr<IPC::MessageReplyDeserializer> reply_deserializer;
if (msg->is_sync()) {
reply_deserializer =
static_cast<IPC::SyncMessage*>(msg)->TakeReplyDeserializer();
message_id = IPC::SyncMessage::GetMessageId(*msg);
}
bool result = IPC::TestSink::Send(msg); // Deletes |msg|.
if (sync_reply_msg_.get()) {
// |sync_reply_msg_| should always be a reply to the pending sync message.
DCHECK(IPC::SyncMessage::IsMessageReplyTo(*sync_reply_msg_.get(),
message_id));
reply_deserializer->SerializeOutputParameters(*sync_reply_msg_.get());
sync_reply_msg_.reset(NULL);
}
return result;
}
void ResourceMessageTestSink::SetSyncReplyMessage(IPC::Message* reply_msg) {
DCHECK(!sync_reply_msg_.get());
sync_reply_msg_.reset(reply_msg);
}
bool ResourceMessageTestSink::GetFirstResourceCallMatching(
uint32_t id,
ResourceMessageCallParams* params,
IPC::Message* nested_msg) const {
ResourceCallVector matching_messages =
GetAllResourceMessagesMatching<PpapiHostMsg_ResourceCall,
ResourceMessageCallParams>(*this, id);
if (matching_messages.empty())
return false;
*params = matching_messages[0].first;
*nested_msg = matching_messages[0].second;
return true;
}
bool ResourceMessageTestSink::GetFirstResourceReplyMatching(
uint32_t id,
ResourceMessageReplyParams* params,
IPC::Message* nested_msg) {
ResourceReplyVector matching_messages =
GetAllResourceMessagesMatching<PpapiPluginMsg_ResourceReply,
ResourceMessageReplyParams>(*this, id);
if (matching_messages.empty())
return false;
*params = matching_messages[0].first;
*nested_msg = matching_messages[0].second;
return true;
}
ResourceMessageTestSink::ResourceCallVector
ResourceMessageTestSink::GetAllResourceCallsMatching(uint32_t id) {
return GetAllResourceMessagesMatching<PpapiHostMsg_ResourceCall,
ResourceMessageCallParams>(*this, id);
}
ResourceMessageTestSink::ResourceReplyVector
ResourceMessageTestSink::GetAllResourceRepliesMatching(uint32_t id) {
return GetAllResourceMessagesMatching<PpapiPluginMsg_ResourceReply,
ResourceMessageReplyParams>(*this, id);
}
ResourceSyncCallHandler::ResourceSyncCallHandler(
ResourceMessageTestSink* test_sink,
uint32_t incoming_type,
int32_t result,
const IPC::Message& reply_msg)
: test_sink_(test_sink),
incoming_type_(incoming_type),
result_(result),
reply_msg_(reply_msg) {}
ResourceSyncCallHandler::~ResourceSyncCallHandler() {
}
bool ResourceSyncCallHandler::OnMessageReceived(const IPC::Message& msg) {
if (msg.type() != PpapiHostMsg_ResourceSyncCall::ID)
return false;
PpapiHostMsg_ResourceSyncCall::Schema::SendParam send_params;
bool success = PpapiHostMsg_ResourceSyncCall::ReadSendParam(
&msg, &send_params);
DCHECK(success);
ResourceMessageCallParams call_params = std::get<0>(send_params);
IPC::Message call_msg = std::get<1>(send_params);
if (call_msg.type() != incoming_type_)
return false;
IPC::Message* wrapper_reply_msg = IPC::SyncMessage::GenerateReply(&msg);
ResourceMessageReplyParams reply_params(call_params.pp_resource(),
call_params.sequence());
reply_params.set_result(result_);
if (serialized_handle_)
reply_params.AppendHandle(std::move(*serialized_handle_));
PpapiHostMsg_ResourceSyncCall::WriteReplyParams(
wrapper_reply_msg, reply_params, reply_msg_);
test_sink_->SetSyncReplyMessage(wrapper_reply_msg);
// Stash a copy of the message for inspection later.
last_handled_msg_ = call_msg;
return true;
}
void ResourceSyncCallHandler::set_serialized_handle(
std::unique_ptr<SerializedHandle> serialized_handle) {
serialized_handle_ = std::move(serialized_handle);
}
} // namespace proxy
} // namespace ppapi
|