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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
|
// Copyright (c) 2010 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.
// The file ipc_messsage_macros.h defines the classes for individual
// messages. This file works similarly, except that it defines the
// implementations of the constructors and the logging methods. (These only
// have to be generated once). It is meant to be included in a XXX_messages.cc
// file.
#ifndef IPC_IPC_MESSAGE_IMPL_MACROS_H_
#define IPC_IPC_MESSAGE_IMPL_MACROS_H_
#include "ipc/ipc_message_utils.h"
#include "ipc/ipc_message_utils_impl.h"
#ifndef MESSAGES_INTERNAL_IMPL_FILE
#error This file should only be included by X_messages.cc, which needs to define MESSAGES_INTERNAL_IMPL_FILE first.
#endif
// Trick scons and xcode into seeing the possible real dependencies since they
// don't understand #include MESSAGES_INTERNAL_FILE. See http://crbug.com/7828
#if 0
#include "ipc/ipc_sync_message_unittest.h"
#include "chrome/common/devtools_messages_internal.h"
#include "chrome/common/gpu_messages_internal.h"
#include "chrome/common/nacl_messages_internal.h"
#include "chrome/common/plugin_messages_internal.h"
#include "chrome/common/render_messages_internal.h"
#include "chrome/common/service_messages_internal.h"
#include "chrome/common/utility_messages_internal.h"
#include "chrome/common/worker_messages_internal.h"
#include "chrome/test/automation/automation_messages_internal.h"
#endif
// These are probalby still defined because of ipc_message_macros.h should be
// included before us for the class/method declarations.
#undef IPC_BEGIN_MESSAGES
#undef IPC_END_MESSAGES
#undef IPC_MESSAGE_CONTROL0
#undef IPC_MESSAGE_CONTROL1
#undef IPC_MESSAGE_CONTROL2
#undef IPC_MESSAGE_CONTROL3
#undef IPC_MESSAGE_CONTROL4
#undef IPC_MESSAGE_CONTROL5
#undef IPC_MESSAGE_ROUTED0
#undef IPC_MESSAGE_ROUTED1
#undef IPC_MESSAGE_ROUTED2
#undef IPC_MESSAGE_ROUTED3
#undef IPC_MESSAGE_ROUTED4
#undef IPC_MESSAGE_ROUTED5
#undef IPC_SYNC_MESSAGE_CONTROL0_0
#undef IPC_SYNC_MESSAGE_CONTROL0_1
#undef IPC_SYNC_MESSAGE_CONTROL0_2
#undef IPC_SYNC_MESSAGE_CONTROL0_3
#undef IPC_SYNC_MESSAGE_CONTROL1_0
#undef IPC_SYNC_MESSAGE_CONTROL1_1
#undef IPC_SYNC_MESSAGE_CONTROL1_2
#undef IPC_SYNC_MESSAGE_CONTROL1_3
#undef IPC_SYNC_MESSAGE_CONTROL2_0
#undef IPC_SYNC_MESSAGE_CONTROL2_1
#undef IPC_SYNC_MESSAGE_CONTROL2_2
#undef IPC_SYNC_MESSAGE_CONTROL2_3
#undef IPC_SYNC_MESSAGE_CONTROL3_1
#undef IPC_SYNC_MESSAGE_CONTROL3_2
#undef IPC_SYNC_MESSAGE_CONTROL3_3
#undef IPC_SYNC_MESSAGE_CONTROL3_4
#undef IPC_SYNC_MESSAGE_CONTROL4_1
#undef IPC_SYNC_MESSAGE_CONTROL4_2
#undef IPC_SYNC_MESSAGE_ROUTED0_0
#undef IPC_SYNC_MESSAGE_ROUTED0_1
#undef IPC_SYNC_MESSAGE_ROUTED0_2
#undef IPC_SYNC_MESSAGE_ROUTED0_3
#undef IPC_SYNC_MESSAGE_ROUTED1_0
#undef IPC_SYNC_MESSAGE_ROUTED1_1
#undef IPC_SYNC_MESSAGE_ROUTED1_2
#undef IPC_SYNC_MESSAGE_ROUTED1_3
#undef IPC_SYNC_MESSAGE_ROUTED1_4
#undef IPC_SYNC_MESSAGE_ROUTED2_0
#undef IPC_SYNC_MESSAGE_ROUTED2_1
#undef IPC_SYNC_MESSAGE_ROUTED2_2
#undef IPC_SYNC_MESSAGE_ROUTED2_3
#undef IPC_SYNC_MESSAGE_ROUTED3_0
#undef IPC_SYNC_MESSAGE_ROUTED3_1
#undef IPC_SYNC_MESSAGE_ROUTED3_2
#undef IPC_SYNC_MESSAGE_ROUTED3_3
#undef IPC_SYNC_MESSAGE_ROUTED4_0
#undef IPC_SYNC_MESSAGE_ROUTED4_1
#undef IPC_SYNC_MESSAGE_ROUTED4_2
#undef IPC_SYNC_MESSAGE_ROUTED4_3
#undef IPC_SYNC_MESSAGE_ROUTED5_0
#undef IPC_SYNC_MESSAGE_ROUTED5_1
#undef IPC_SYNC_MESSAGE_ROUTED5_2
#undef IPC_SYNC_MESSAGE_ROUTED5_3
// These don't do anything during this pass.
#define IPC_BEGIN_MESSAGES(label)
#define IPC_END_MESSAGES(label)
// Every class must include a destructor and a log method that is keyed to the
// specific types.
#define IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class) \
msg_class::~msg_class() {} \
\
void msg_class::Log(const Message* msg, std::string* l) { \
Param p; \
if (Read(msg, &p)) \
IPC::LogParam(p, l); \
}
// This derives from IPC::Message and thus doesn't need us to keep the
// implementations in this impl file.
#define IPC_MESSAGE_CONTROL0(msg_class)
#define IPC_MESSAGE_CONTROL1(msg_class, type1) \
msg_class::msg_class(const type1& arg1) \
: IPC::MessageWithTuple< Tuple1<type1> >( \
MSG_ROUTING_CONTROL, ID, MakeRefTuple(arg1)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_MESSAGE_CONTROL2(msg_class, type1, type2) \
msg_class::msg_class(const type1& arg1, const type2& arg2) \
: IPC::MessageWithTuple< Tuple2<type1, type2> >( \
MSG_ROUTING_CONTROL, ID, MakeRefTuple(arg1, arg2)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_MESSAGE_CONTROL3(msg_class, type1, type2, type3) \
msg_class::msg_class(const type1& arg1, const type2& arg2, \
const type3& arg3) \
: IPC::MessageWithTuple< Tuple3<type1, type2, type3> >( \
MSG_ROUTING_CONTROL, ID, MakeRefTuple(arg1, arg2, arg3)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_MESSAGE_CONTROL4(msg_class, type1, type2, type3, type4) \
msg_class::msg_class(const type1& arg1, const type2& arg2, \
const type3& arg3, const type4& arg4) \
: IPC::MessageWithTuple< Tuple4<type1, type2, type3, type4> >( \
MSG_ROUTING_CONTROL, ID, MakeRefTuple(arg1, arg2, arg3, arg4)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_MESSAGE_CONTROL5(msg_class, type1, type2, type3, type4, type5) \
msg_class::msg_class(const type1& arg1, const type2& arg2, \
const type3& arg3, const type4& arg4, \
const type5& arg5) \
: IPC::MessageWithTuple< Tuple5<type1, type2, type3, type4, type5> >( \
MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4, arg5)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
// This derives from IPC::Message and thus doesn't need us to keep the
// implementations in this impl file.
#define IPC_MESSAGE_ROUTED0(msg_class)
#define IPC_MESSAGE_ROUTED1(msg_class, type1) \
msg_class::msg_class(int32 routing_id, const type1& arg1) \
: IPC::MessageWithTuple< Tuple1<type1> >( \
routing_id, ID, MakeRefTuple(arg1)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_MESSAGE_ROUTED2(msg_class, type1, type2) \
msg_class::msg_class(int32 routing_id, const type1& arg1, const type2& arg2) \
: IPC::MessageWithTuple< Tuple2<type1, type2> >( \
routing_id, ID, MakeRefTuple(arg1, arg2)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_MESSAGE_ROUTED3(msg_class, type1, type2, type3) \
msg_class::msg_class(int32 routing_id, const type1& arg1, \
const type2& arg2, const type3& arg3) \
: IPC::MessageWithTuple< Tuple3<type1, type2, type3> >( \
routing_id, ID, MakeRefTuple(arg1, arg2, arg3)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_MESSAGE_ROUTED4(msg_class, type1, type2, type3, type4) \
msg_class::msg_class(int32 routing_id, const type1& arg1, const type2& arg2, \
const type3& arg3, const type4& arg4) \
: IPC::MessageWithTuple< Tuple4<type1, type2, type3, type4> >( \
routing_id, ID, MakeRefTuple(arg1, arg2, arg3, arg4)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_MESSAGE_ROUTED5(msg_class, type1, type2, type3, type4, type5) \
msg_class::msg_class(int32 routing_id, const type1& arg1, \
const type2& arg2, const type3& arg3, \
const type4& arg4, const type5& arg5) \
: IPC::MessageWithTuple< Tuple5<type1, type2, type3, type4, type5> >( \
routing_id, ID, MakeRefTuple(arg1, arg2, arg3, arg4, arg5)) {} \
\
IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class)
// -----------------------------------------------------------------------------
// Every class must include a destructor and a log method that is keyed to the
// specific types.
#define IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class) \
msg_class::~msg_class() {} \
\
void msg_class::Log(const Message* msg, std::string* l) { \
if (msg->is_sync()) { \
TupleTypes<SendParam>::ValueTuple p; \
if (ReadSendParam(msg, &p)) \
IPC::LogParam(p, l); \
\
AddOutputParamsToLog(msg, l); \
} else { \
TupleTypes<ReplyParam>::ValueTuple p; \
if (ReadReplyParam(msg, &p)) \
IPC::LogParam(p, l); \
} \
}
#define IPC_SYNC_MESSAGE_CONTROL0_0(msg_class) \
msg_class::msg_class() \
: IPC::MessageWithReply<Tuple0, Tuple0 >( \
MSG_ROUTING_CONTROL, ID, \
MakeTuple(), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL0_1(msg_class, type1_out) \
msg_class::msg_class(type1_out* arg1) \
: IPC::MessageWithReply<Tuple0, Tuple1<type1_out&> >( \
MSG_ROUTING_CONTROL, ID, \
MakeTuple(), MakeRefTuple(*arg1)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL0_2(msg_class, type1_out, type2_out) \
msg_class::msg_class(type1_out* arg1, type2_out* arg2) \
: IPC::MessageWithReply<Tuple0, Tuple2<type1_out&, type2_out&> >( \
MSG_ROUTING_CONTROL, ID, \
MakeTuple(), MakeRefTuple(*arg1, *arg2)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL0_3(msg_class, type1_out, type2_out, \
type3_out) \
msg_class::msg_class(type1_out* arg1, type2_out* arg2, type3_out* arg3) \
: IPC::MessageWithReply<Tuple0, Tuple3<type1_out&, type2_out&, \
type3_out&> >( \
MSG_ROUTING_CONTROL, ID, \
MakeTuple(), MakeRefTuple(*arg1, *arg2, *arg3)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL1_0(msg_class, type1_in) \
msg_class::msg_class(const type1_in& arg1) \
: IPC::MessageWithReply<Tuple1<type1_in>, Tuple0 >( \
MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL1_1(msg_class, type1_in, type1_out) \
msg_class::msg_class(const type1_in& arg1, type1_out* arg2) \
: IPC::MessageWithReply<Tuple1<type1_in>, Tuple1<type1_out&> >( \
MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1), MakeRefTuple(*arg2)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL1_2(msg_class, type1_in, type1_out, type2_out) \
msg_class::msg_class(const type1_in& arg1, type1_out* arg2, type2_out* arg3) \
: IPC::MessageWithReply<Tuple1<type1_in>, \
Tuple2<type1_out&, type2_out&> >( \
MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1), MakeRefTuple(*arg2, *arg3)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL1_3(msg_class, type1_in, type1_out, \
type2_out, type3_out) \
msg_class::msg_class(const type1_in& arg1, type1_out* arg2, \
type2_out* arg3, type3_out* arg4) \
: IPC::MessageWithReply<Tuple1<type1_in>, \
Tuple3<type1_out&, type2_out&, type3_out&> >( \
MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1), MakeRefTuple(*arg2, *arg3, *arg4)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL2_0(msg_class, type1_in, type2_in) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2) \
: IPC::MessageWithReply<Tuple2<type1_in, type2_in>, Tuple0 >( \
MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1, arg2), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL2_1(msg_class, type1_in, type2_in, type1_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
type1_out* arg3) \
: IPC::MessageWithReply<Tuple2<type1_in, type2_in>, \
Tuple1<type1_out&> >( \
MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1, arg2), MakeRefTuple(*arg3)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL2_2(msg_class, type1_in, type2_in, \
type1_out, type2_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
type1_out* arg3, type2_out* arg4) \
: IPC::MessageWithReply<Tuple2<type1_in, type2_in>, \
Tuple2<type1_out&, type2_out&> >(MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1, arg2), MakeRefTuple(*arg3, *arg4)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL2_3(msg_class, type1_in, type2_in, \
type1_out, type2_out, type3_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
type1_out* arg3, type2_out* arg4, type3_out* arg5) \
: IPC::MessageWithReply<Tuple2<type1_in, type2_in>, \
Tuple3<type1_out&, type2_out&, type3_out&> >(MSG_ROUTING_CONTROL, \
ID, \
MakeRefTuple(arg1, arg2), MakeRefTuple(*arg3, *arg4, *arg5)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL3_1(msg_class, type1_in, type2_in, \
type3_in, type1_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
const type3_in& arg3, type1_out* arg4) \
: IPC::MessageWithReply<Tuple3<type1_in, type2_in, type3_in>, \
Tuple1<type1_out&> >(MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1, arg2, arg3), MakeRefTuple(*arg4)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL3_2(msg_class, type1_in, type2_in, \
type3_in, type1_out, type2_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
const type3_in& arg3, type1_out* arg4, type2_out* arg5) \
: IPC::MessageWithReply<Tuple3<type1_in, type2_in, type3_in>, \
Tuple2<type1_out&, type2_out&> >(MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1, arg2, arg3), MakeRefTuple(*arg4, *arg5)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL3_3(msg_class, type1_in, type2_in, \
type3_in, type1_out, type2_out, \
type3_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
const type3_in& arg3, type1_out* arg4, \
type2_out* arg5, type3_out* arg6) \
: IPC::MessageWithReply<Tuple3<type1_in, type2_in, type3_in>, \
Tuple3<type1_out&, type2_out&, type3_out&> >(MSG_ROUTING_CONTROL, \
ID, \
MakeRefTuple(arg1, arg2, arg3), \
MakeRefTuple(*arg4, *arg5, *arg6)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL3_4(msg_class, type1_in, type2_in, \
type3_in, type1_out, type2_out, \
type3_out, type4_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
const type3_in& arg3, type1_out* arg4, \
type2_out* arg5, type3_out* arg6, type4_out* arg7) \
: IPC::MessageWithReply<Tuple3<type1_in, type2_in, type3_in>, \
Tuple4<type1_out&, type2_out&, type3_out&, type4_out&> >( \
MSG_ROUTING_CONTROL, \
ID, \
MakeRefTuple(arg1, arg2, arg3), \
MakeRefTuple(*arg4, *arg5, *arg6, *arg7)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL4_1(msg_class, type1_in, type2_in, \
type3_in, type4_in, type1_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
const type3_in& arg3, const type4_in& arg4, \
type1_out* arg6) \
: IPC::MessageWithReply<Tuple4<type1_in, type2_in, type3_in, type4_in>, \
Tuple1<type1_out&> >(MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4), MakeRefTuple(*arg6)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_CONTROL4_2(msg_class, type1_in, type2_in, \
type3_in, type4_in, type1_out, \
type2_out) \
msg_class::msg_class(const type1_in& arg1, const type2_in& arg2, \
const type3_in& arg3, const type4_in& arg4, \
type1_out* arg5, type2_out* arg6) \
: IPC::MessageWithReply<Tuple4<type1_in, type2_in, type3_in, \
type4_in>, \
Tuple2<type1_out&, type2_out&> >(MSG_ROUTING_CONTROL, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4), \
MakeRefTuple(*arg5, *arg6)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED0_0(msg_class) \
msg_class::msg_class(int routing_id) \
: IPC::MessageWithReply<Tuple0, Tuple0>( \
routing_id, ID, \
MakeTuple(), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED0_1(msg_class, type1_out) \
msg_class::msg_class(int routing_id, type1_out* arg1) \
: IPC::MessageWithReply<Tuple0, Tuple1<type1_out&> >( \
routing_id, ID, \
MakeTuple(), MakeRefTuple(*arg1)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED0_2(msg_class, type1_out, type2_out) \
msg_class::msg_class(int routing_id, type1_out* arg1, type2_out* arg2) \
: IPC::MessageWithReply<Tuple0, Tuple2<type1_out&, type2_out&> >( \
routing_id, ID, \
MakeTuple(), MakeRefTuple(*arg1, *arg2)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED0_3(msg_class, type1_out, type2_out, \
type3_out) \
msg_class::msg_class(int routing_id, type1_out* arg1, type2_out* arg2, \
type3_out* arg3) \
: IPC::MessageWithReply<Tuple0, \
Tuple3<type1_out&, type2_out&, type3_out&> >(routing_id, ID, \
MakeTuple(), MakeRefTuple(*arg1, *arg2, *arg3)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED1_0(msg_class, type1_in) \
msg_class::msg_class(int routing_id, const type1_in& arg1) \
: IPC::MessageWithReply<Tuple1<type1_in>, Tuple0 >( \
routing_id, ID, \
MakeRefTuple(arg1), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED1_1(msg_class, type1_in, type1_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
type1_out* arg2) \
: IPC::MessageWithReply<Tuple1<type1_in>, Tuple1<type1_out&> >( \
routing_id, ID, \
MakeRefTuple(arg1), MakeRefTuple(*arg2)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED1_2(msg_class, type1_in, type1_out, \
type2_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
type1_out* arg2, type2_out* arg3) \
: IPC::MessageWithReply<Tuple1<type1_in>, \
Tuple2<type1_out&, type2_out&> >( \
routing_id, ID, \
MakeRefTuple(arg1), MakeRefTuple(*arg2, *arg3)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED1_3(msg_class, type1_in, type1_out, \
type2_out, type3_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
type1_out* arg2, type2_out* arg3, type3_out* arg4) \
: IPC::MessageWithReply<Tuple1<type1_in>, \
Tuple3<type1_out&, type2_out&, type3_out&> >(routing_id, ID, \
MakeRefTuple(arg1), MakeRefTuple(*arg2, *arg3, *arg4)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED1_4(msg_class, type1_in, type1_out, \
type2_out, type3_out, type4_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
type1_out* arg2, type2_out* arg3, \
type3_out* arg4, type4_out* arg5) \
: IPC::MessageWithReply<Tuple1<type1_in>, \
Tuple4<type1_out&, type2_out&, type3_out&, type4_out&> >( \
routing_id, ID, MakeRefTuple(arg1), \
MakeRefTuple(*arg2, *arg3, *arg4, *arg5)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED2_0(msg_class, type1_in, type2_in) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2) \
: IPC::MessageWithReply<Tuple2<type1_in, type2_in>, Tuple0 >( \
routing_id, ID, MakeRefTuple(arg1, arg2), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED2_1(msg_class, type1_in, type2_in, \
type1_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, type1_out* arg3) \
: IPC::MessageWithReply<Tuple2<type1_in, type2_in>, \
Tuple1<type1_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2), MakeRefTuple(*arg3)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED2_2(msg_class, type1_in, type2_in, \
type1_out, type2_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, type1_out* arg3, \
type2_out* arg4) \
: IPC::MessageWithReply<Tuple2<type1_in, type2_in>, \
Tuple2<type1_out&, type2_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2), MakeRefTuple(*arg3, *arg4)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED2_3(msg_class, type1_in, type2_in, \
type1_out, type2_out, type3_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, type1_out* arg3, \
type2_out* arg4, type3_out* arg5) \
: IPC::MessageWithReply<Tuple2<type1_in, type2_in>, \
Tuple3<type1_out&, type2_out&, type3_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2), MakeRefTuple(*arg3, *arg4, *arg5)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED3_0(msg_class, type1_in, type2_in, \
type3_in) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3) \
: IPC::MessageWithReply<Tuple3<type1_in, type2_in, type3_in>, Tuple0>( \
routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED3_1(msg_class, type1_in, type2_in, \
type3_in, type1_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
type1_out* arg4) \
: IPC::MessageWithReply<Tuple3<type1_in, type2_in, type3_in>, \
Tuple1<type1_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3), MakeRefTuple(*arg4)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED3_2(msg_class, type1_in, type2_in, \
type3_in, type1_out, type2_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
type1_out* arg4, type2_out* arg5) \
: IPC::MessageWithReply<Tuple3<type1_in, type2_in, type3_in>, \
Tuple2<type1_out&, type2_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3), MakeRefTuple(*arg4, *arg5)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED3_3(msg_class, type1_in, type2_in, \
type3_in, type1_out, type2_out, \
type3_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
type1_out* arg4, type2_out* arg5, type3_out* arg6) \
: IPC::MessageWithReply<Tuple3<type1_in, type2_in, type3_in>, \
Tuple3<type1_out&, type2_out&, type3_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3), MakeRefTuple(*arg4, *arg5, \
*arg6)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED4_0(msg_class, type1_in, type2_in, \
type3_in, type4_in) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
const type4_in& arg4) \
: IPC::MessageWithReply<Tuple4<type1_in, type2_in, type3_in, \
type4_in>, Tuple0 >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED4_1(msg_class, type1_in, type2_in, \
type3_in, type4_in, type1_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
const type4_in& arg4, type1_out* arg6) \
: IPC::MessageWithReply<Tuple4<type1_in, type2_in, type3_in, type4_in>, \
Tuple1<type1_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4), MakeRefTuple(*arg6)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED4_2(msg_class, type1_in, type2_in, \
type3_in, type4_in, type1_out, \
type2_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
const type4_in& arg4, type1_out* arg5, type2_out* arg6) \
: IPC::MessageWithReply<Tuple4<type1_in, type2_in, type3_in, type4_in>, \
Tuple2<type1_out&, type2_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4), MakeRefTuple(*arg5, *arg6)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED4_3(msg_class, type1_in, type2_in, \
type3_in, type4_in, type1_out, \
type2_out, type3_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
const type4_in& arg4, type1_out* arg5, \
type2_out* arg6, type3_out* arg7) \
: IPC::MessageWithReply<Tuple4<type1_in, type2_in, type3_in, type4_in>, \
Tuple3<type1_out&, type2_out&, type3_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4), \
MakeRefTuple(*arg5, *arg6, *arg7)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED5_0(msg_class, type1_in, type2_in, \
type3_in, type4_in, type5_in) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
const type4_in& arg4, const type5_in& arg5) \
: IPC::MessageWithReply<Tuple5<type1_in, type2_in, type3_in, \
type4_in, type5_in>, Tuple0 >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4, arg5), MakeTuple()) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED5_1(msg_class, type1_in, type2_in, \
type3_in, type4_in, type5_in, type1_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
const type4_in& arg4, const type5_in& arg5, \
type1_out* arg6) \
: IPC::MessageWithReply<Tuple5<type1_in, type2_in, type3_in, \
type4_in, type5_in>, Tuple1<type1_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4, arg5), \
MakeRefTuple(*arg6)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED5_2(msg_class, type1_in, type2_in, \
type3_in, type4_in, type5_in, \
type1_out, type2_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
const type4_in& arg4, const type4_in& arg5, \
type1_out* arg6, type2_out* arg7) \
: IPC::MessageWithReply<Tuple5<type1_in, type2_in, type3_in, \
type4_in, type5_in>, Tuple2<type1_out&, type2_out&> >( \
routing_id, ID, MakeRefTuple(arg1, arg2, arg3, arg4, arg5), \
MakeRefTuple(*arg6, *arg7)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
#define IPC_SYNC_MESSAGE_ROUTED5_3(msg_class, type1_in, type2_in, \
type3_in, type4_in, type5_in, \
type1_out, type2_out, type3_out) \
msg_class::msg_class(int routing_id, const type1_in& arg1, \
const type2_in& arg2, const type3_in& arg3, \
const type4_in& arg4, const type4_in& arg5, \
type1_out* arg6, type2_out* arg7, \
type3_out* arg8) \
: IPC::MessageWithReply<Tuple5<type1_in, type2_in, type3_in, \
type4_in, type5_in>, \
Tuple3<type1_out&, type2_out&, type3_out&> >(routing_id, ID, \
MakeRefTuple(arg1, arg2, arg3, arg4, arg5), \
MakeRefTuple(*arg6, *arg7, *arg8)) {} \
\
IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class)
// Trigger the header guard define in ipc_message_macros.h so we don't get
// duplicate including when we include MESSAGES_INTERNAL_FILE again at the end
// of this file.
#define IPC_MESSAGE_MACROS_INCLUDE_BLOCK
// Redefine MESSAGES_INTERNAL_FILE just for the header check in
// ipc_messages_macros.h that happens before it breaks on the header guard.
#define MESSAGES_INTERNAL_FILE MESSAGES_INTERNAL_IMPL_FILE
// Include our INTERNAL file first to get the normal expansion.
#include MESSAGES_INTERNAL_IMPL_FILE
#endif // IPC_IPC_MESSAGE_IMPL_MACROS_H_
|