blob: 7a20c1fe286dee65fba2cc0cb80a00a1a84269a4 (
plain)
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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PPAPI_HOST_PPAPI_HOST_H_
#define PPAPI_HOST_PPAPI_HOST_H_
#include <map>
#include "base/compiler_specific.h"
#include "base/memory/linked_ptr.h"
#include "ipc/ipc_listener.h"
#include "ipc/ipc_sender.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/host/ppapi_host_export.h"
#include "ppapi/shared_impl/ppapi_permissions.h"
namespace ppapi {
namespace proxy {
class ResourceMessageCallParams;
class ResourceMessageReplyParams;
}
namespace host {
class HostFactory;
class ResourceHost;
// The host provides routing and tracking for resource message calls that
// come from the plugin to the host (browser or renderer), and the
// corresponding replies.
class PPAPI_HOST_EXPORT PpapiHost : public IPC::Sender, public IPC::Listener {
public:
// The sender is the channel to the plugin for outgoing messages. The factory
// will be used to receive resource creation messages from the plugin. Both
// pointers are owned by the caller and must outlive this class.
PpapiHost(IPC::Sender* sender,
HostFactory* host_factory,
const PpapiPermissions& perms);
virtual ~PpapiHost();
const PpapiPermissions& permissions() const { return permissions_; }
// Sender implementation. Forwards to the sender_.
virtual bool Send(IPC::Message* msg) OVERRIDE;
// Listener implementation.
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
// Sends the given reply message to the plugin.
void SendReply(const proxy::ResourceMessageReplyParams& params,
const IPC::Message& msg);
private:
// Message handlers.
void OnHostMsgResourceCall(const proxy::ResourceMessageCallParams& params,
const IPC::Message& nested_msg);
void OnHostMsgResourceCreated(const proxy::ResourceMessageCallParams& param,
PP_Instance instance,
const IPC::Message& nested_msg);
void OnHostMsgResourceDestroyed(PP_Resource resource);
// Returns null if the resource doesn't exist.
host::ResourceHost* GetResourceHost(PP_Resource resource);
// Non-owning pointer.
IPC::Sender* sender_;
// Non-owning pointer.
HostFactory* host_factory_;
PpapiPermissions permissions_;
typedef std::map<PP_Resource, linked_ptr<ResourceHost> > ResourceMap;
ResourceMap resources_;
DISALLOW_COPY_AND_ASSIGN(PpapiHost);
};
} // namespace host
} // namespace ppapi
#endif // PPAPI_HOST_PPAPIE_HOST_H_
|