blob: ad87a939bb781aff3494403f92903b79e17cd38f [file] [log] [blame]
jbates@chromium.org0fc87362012-03-08 05:42:56 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
tsepez@chromium.org1ac46132011-02-12 03:46:19 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef IPC_PARAM_TRAITS_MACROS_H_
6#define IPC_PARAM_TRAITS_MACROS_H_
7
8#include <string>
9
10// Traits generation for structs.
11#define IPC_STRUCT_TRAITS_BEGIN(struct_name) \
12 namespace IPC { \
13 template <> \
dpranke@chromium.org5a4c53c2011-09-30 09:28:14 +090014 struct IPC_MESSAGE_EXPORT ParamTraits<struct_name> { \
tsepez@chromium.org1ac46132011-02-12 03:46:19 +090015 typedef struct_name param_type; \
16 static void Write(Message* m, const param_type& p); \
jbates@chromium.org0fc87362012-03-08 05:42:56 +090017 static bool Read(const Message* m, PickleIterator* iter, param_type* p); \
tsepez@chromium.org1ac46132011-02-12 03:46:19 +090018 static void Log(const param_type& p, std::string* l); \
19 }; \
20 }
21
22#define IPC_STRUCT_TRAITS_MEMBER(name)
jam@chromium.org4ae3f562011-03-06 04:08:32 +090023#define IPC_STRUCT_TRAITS_PARENT(type)
tsepez@chromium.org1ac46132011-02-12 03:46:19 +090024#define IPC_STRUCT_TRAITS_END()
25
tsepez@chromium.org384d9762013-06-04 16:20:32 +090026// Convenience macro for defining enumerated type traits for types which are
27// not range-checked by the IPC system. The author of the message handlers
28// is responsible for all validation. This macro should not need to be
29// subsequently redefined.
30#define IPC_ENUM_TRAITS(type) \
31 IPC_ENUM_TRAITS_VALIDATE(type, true)
32
33// Convenience macro for defining enumerated type traits for types which are
34// range-checked by the IPC system to be in the range of 0..maxvalue inclusive.
35// This macro should not need to be subsequently redefined.
36#define IPC_ENUM_TRAITS_MAX_VALUE(type, maxvalue) \
37 IPC_ENUM_TRAITS_MIN_MAX_VALUE(type, 0, maxvalue)
38
39// Convenience macro for defining enumerated type traits for types which are
40// range-checked by the IPC system to be in the range of minvalue..maxvalue
41// inclusive. This macro should not need to be subsequently redefined.
42#define IPC_ENUM_TRAITS_MIN_MAX_VALUE(type, minvalue, maxvalue) \
43 IPC_ENUM_TRAITS_VALIDATE(type, (value >= (minvalue) && value <= (maxvalue)))
44
45// Traits generation for enums. This macro may be redefined later.
46#define IPC_ENUM_TRAITS_VALIDATE(enum_name, validation_expression) \
tsepez@chromium.org1ac46132011-02-12 03:46:19 +090047 namespace IPC { \
48 template <> \
tfarina@chromium.orgc14d4482011-12-07 11:43:47 +090049 struct IPC_MESSAGE_EXPORT ParamTraits<enum_name> { \
tsepez@chromium.org1ac46132011-02-12 03:46:19 +090050 typedef enum_name param_type; \
51 static void Write(Message* m, const param_type& p); \
jbates@chromium.org0fc87362012-03-08 05:42:56 +090052 static bool Read(const Message* m, PickleIterator* iter, param_type* p); \
tsepez@chromium.org1ac46132011-02-12 03:46:19 +090053 static void Log(const param_type& p, std::string* l); \
54 }; \
55 }
56
57#endif // IPC_PARAM_TRAITS_MACROS_H_
58