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
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/usr/ipmi/ipmimsg.C $ */
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2012,2015 */
/* [+] International Business Machines Corp. */
/* */
/* */
/* Licensed under the Apache License, Version 2.0 (the "License"); */
/* you may not use this file except in compliance with the License. */
/* You may obtain a copy of the License at */
/* */
/* http://www.apache.org/licenses/LICENSE-2.0 */
/* */
/* Unless required by applicable law or agreed to in writing, software */
/* distributed under the License is distributed on an "AS IS" BASIS, */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
/* implied. See the License for the specific language governing */
/* permissions and limitations under the License. */
/* */
/* IBM_PROLOG_END_TAG */
/**
* @file ipmi.C
* @brief code for the IPMI message class
*/
#include <errl/errlmanager.H>
#include "ipmimsg.H"
// This is because the factory lives in here.
#include "ipmibt.H"
#include <kernel/console.H>
#include <config.h>
// Defined in ipmidd.C
extern trace_desc_t * g_trac_ipmi;
#define IPMI_TRAC(printf_string,args...) \
TRACFCOMP(g_trac_ipmi,"msg: "printf_string,##args)
namespace IPMI
{
///
/// @brief msg ctor
/// @param[in] i_cmd, the network function & command
/// @param[in] i_len, the length of the data
/// @param[in] i_data, the data (new'd space)
///
Message::Message(const command_t& i_cmd,
const uint8_t i_len,
uint8_t* i_data):
iv_msg(msg_allocate()),
iv_key(0),
iv_len(i_len),
iv_netfun(i_cmd.first),
iv_seq(iv_key),
iv_cmd(i_cmd.second),
iv_cc(0),
iv_state(0),
iv_errl(NULL),
iv_data(i_data)
{
iv_timeout.tv_sec = 0;
iv_timeout.tv_nsec = 0;
}
///
/// @brief static factory
/// @param[in] i_cmd, the network function & command
/// @param[in] i_len, the length of the data
/// @param[in] i_data, the data (allocated space)
/// @param[in] i_type, synchronous or async
///
/// @return a pointer to a new'd Message object
///
Message* Message::factory(const command_t& i_cmd, const uint8_t i_len,
uint8_t* i_data, const message_type i_type)
{
Message* new_message = NULL;
// CHECK: Put an ifdef here for the config'd transport type.
switch(i_type)
{
case TYPE_SYNC:
new_message = new BTSyncMessage(i_cmd, i_len, i_data);
break;
case TYPE_ASYNC:
new_message = new BTAsyncMessage(i_cmd, i_len, i_data);
break;
case TYPE_EVENT:
new_message = new BTAsyncReadEventMessage(i_cmd, i_len, i_data);
break;
default:
// We have ourselves a bug
assert(false, "ipmi message factory: unk type %d\n", i_type);
break;
}
return new_message;
}
};
|