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
|
// Copyright (c) 2009 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.
// Defines messages between the browser and worker process, as well as between
// the renderer and worker process.
#ifndef CHROME_COMMON_WORKER_MESSAGES_H_
#define CHROME_COMMON_WORKER_MESSAGES_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "chrome/common/common_param_traits.h"
#include "googleurl/src/gurl.h"
#include "ipc/ipc_message_utils.h"
typedef std::pair<string16, std::vector<int> > QueuedMessage;
// Parameters structure for WorkerHostMsg_PostConsoleMessageToWorkerObject,
// which has too many data parameters to be reasonably put in a predefined
// IPC message. The data members directly correspond to parameters of
// WebWorkerClient::postConsoleMessageToWorkerObject()
struct WorkerHostMsg_PostConsoleMessageToWorkerObject_Params {
int source_identifier;
int message_type;
int message_level;
string16 message;
int line_number;
string16 source_url;
};
// Parameter structure for WorkerProcessMsg_CreateWorker.
struct WorkerProcessMsg_CreateWorker_Params {
GURL url;
bool is_shared;
string16 name;
int route_id;
int creator_process_id;
int creator_appcache_host_id; // Only valid for dedicated workers.
int64 shared_worker_appcache_id; // Only valid for shared workers.
};
namespace IPC {
// Traits for WorkerHostMsg_PostConsoleMessageToWorkerObject_Params structure
// to pack/unpack.
template <>
struct ParamTraits<WorkerHostMsg_PostConsoleMessageToWorkerObject_Params> {
typedef WorkerHostMsg_PostConsoleMessageToWorkerObject_Params param_type;
static void Write(Message* m, const param_type& p) {
WriteParam(m, p.source_identifier);
WriteParam(m, p.message_type);
WriteParam(m, p.message_level);
WriteParam(m, p.message);
WriteParam(m, p.line_number);
WriteParam(m, p.source_url);
}
static bool Read(const Message* m, void** iter, param_type* p) {
return
ReadParam(m, iter, &p->source_identifier) &&
ReadParam(m, iter, &p->message_type) &&
ReadParam(m, iter, &p->message_level) &&
ReadParam(m, iter, &p->message) &&
ReadParam(m, iter, &p->line_number) &&
ReadParam(m, iter, &p->source_url);
}
static void Log(const param_type& p, std::wstring* l) {
l->append(L"(");
LogParam(p.source_identifier, l);
l->append(L", ");
LogParam(p.message_type, l);
l->append(L", ");
LogParam(p.message_level, l);
l->append(L", ");
LogParam(p.message, l);
l->append(L", ");
LogParam(p.line_number, l);
l->append(L", ");
LogParam(p.source_url, l);
l->append(L")");
}
};
// Traits for WorkerProcessMsg_CreateWorker_Params.
template <>
struct ParamTraits<WorkerProcessMsg_CreateWorker_Params> {
typedef WorkerProcessMsg_CreateWorker_Params param_type;
static void Write(Message* m, const param_type& p) {
WriteParam(m, p.url);
WriteParam(m, p.is_shared);
WriteParam(m, p.name);
WriteParam(m, p.route_id);
WriteParam(m, p.creator_process_id);
WriteParam(m, p.creator_appcache_host_id);
WriteParam(m, p.shared_worker_appcache_id);
}
static bool Read(const Message* m, void** iter, param_type* p) {
return
ReadParam(m, iter, &p->url) &&
ReadParam(m, iter, &p->is_shared) &&
ReadParam(m, iter, &p->name) &&
ReadParam(m, iter, &p->route_id) &&
ReadParam(m, iter, &p->creator_process_id) &&
ReadParam(m, iter, &p->creator_appcache_host_id) &&
ReadParam(m, iter, &p->shared_worker_appcache_id);
}
static void Log(const param_type& p, std::wstring* l) {
l->append(L"(");
LogParam(p.url, l);
l->append(L", ");
LogParam(p.is_shared, l);
l->append(L", ");
LogParam(p.name, l);
l->append(L", ");
LogParam(p.route_id, l);
l->append(L", ");
LogParam(p.creator_process_id, l);
l->append(L", ");
LogParam(p.creator_appcache_host_id, l);
l->append(L", ");
LogParam(p.shared_worker_appcache_id, l);
l->append(L")");
}
};
} // namespace IPC
#define MESSAGES_INTERNAL_FILE "chrome/common/worker_messages_internal.h"
#include "ipc/ipc_message_macros.h"
#endif // CHROME_COMMON_WORKER_MESSAGES_H_
|