d9977ca59451e5f76e675a6f4f1980808ee224c9
[profile/ivi/ico-vic-amb-plugin.git] / src / messageformat.h
1 /**
2  * Copyright (C) 2012  TOYOTA MOTOR CORPORATION.
3  * 
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  * 
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  * 
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17  * 
18  */
19 #ifndef MESSAGEFORMAT_H_
20 #define MESSAGEFORMAT_H_
21 #include "standardmessage.h"
22
23 /**
24  * Message Type.
25  */
26 enum MessageType {
27     SET, GET, CALLBACK
28 };
29
30 /**
31  * Common_Status(Used in the data message.)
32  */
33 enum CommonStatus {
34     UNKNOWN, NOTSUPPORT, SUPPORT
35 };
36
37 /**
38  * The size of status(Used in the data message.)
39  */
40 static const int STATUSSIZE = StandardMessage::BUFSIZE - 
41                               StandardMessage::KEYEVENTTYPESIZE - 
42                               sizeof(timeval) - sizeof(int);
43
44 /**
45  * The data portion of the data message.
46  */
47 struct DataOpt {
48     enum CommonStatus common_status;
49     char status[STATUSSIZE];
50 };
51
52 /**
53  * The data portion of the event message.
54  */
55 struct EventOpt {
56     int common;
57     int sense;
58     int event_mask;
59 };
60 #endif // MESSAGEFORMAT_H_