1 | /* |
2 | Copyright (c) 2012, Broadcom Europe Ltd |
3 | All rights reserved. |
4 | |
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the following conditions are met: |
7 | * Redistributions of source code must retain the above copyright |
8 | notice, this list of conditions and the following disclaimer. |
9 | * Redistributions in binary form must reproduce the above copyright |
10 | notice, this list of conditions and the following disclaimer in the |
11 | documentation and/or other materials provided with the distribution. |
12 | * Neither the name of the copyright holder nor the |
13 | names of its contributors may be used to endorse or promote products |
14 | derived from this software without specific prior written permission. |
15 | |
16 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
17 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
18 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
19 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY |
20 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
21 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
22 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
23 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
25 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ |
27 | |
28 | #include "mmal_vc_msgnames.h" |
29 | #include "mmal_vc_msgs.h" |
30 | |
31 | /** Convert a message id to a name. |
32 | */ |
33 | const char *mmal_msgname(uint32_t id) |
34 | { |
35 | #define MSGNAME(x) { MMAL_WORKER_##x, #x } |
36 | static struct { |
37 | uint32_t id; |
38 | const char *name; |
39 | } msgnames[] = { |
40 | MSGNAME(QUIT), |
41 | MSGNAME(SERVICE_CLOSED), |
42 | MSGNAME(GET_VERSION), |
43 | MSGNAME(COMPONENT_CREATE), |
44 | MSGNAME(COMPONENT_DESTROY), |
45 | MSGNAME(COMPONENT_ENABLE), |
46 | MSGNAME(COMPONENT_DISABLE), |
47 | MSGNAME(PORT_INFO_GET), |
48 | MSGNAME(PORT_INFO_SET), |
49 | MSGNAME(PORT_ACTION), |
50 | MSGNAME(BUFFER_FROM_HOST), |
51 | MSGNAME(BUFFER_TO_HOST), |
52 | MSGNAME(GET_STATS), |
53 | MSGNAME(PORT_PARAMETER_SET), |
54 | MSGNAME(PORT_PARAMETER_GET), |
55 | MSGNAME(EVENT_TO_HOST), |
56 | MSGNAME(GET_CORE_STATS_FOR_PORT), |
57 | MSGNAME(OPAQUE_ALLOCATOR), |
58 | MSGNAME(CONSUME_MEM), |
59 | MSGNAME(LMK), |
60 | MSGNAME(OPAQUE_ALLOCATOR_DESC), |
61 | MSGNAME(DRM_GET_LHS32), |
62 | MSGNAME(DRM_GET_TIME), |
63 | MSGNAME(BUFFER_FROM_HOST_ZEROLEN), |
64 | MSGNAME(PORT_FLUSH), |
65 | MSGNAME(HOST_LOG), |
66 | MSGNAME(COMPACT), |
67 | { 0, NULL }, |
68 | }; |
69 | vcos_static_assert(sizeof(msgnames)/sizeof(msgnames[0]) == MMAL_WORKER_MSG_LAST); |
70 | int i = 0; |
71 | while (msgnames[i].name) |
72 | { |
73 | if (msgnames[i].id == id) |
74 | return msgnames[i].name; |
75 | i++; |
76 | } |
77 | return "unknown-message" ; |
78 | } |
79 | |