blob: d56ff5008128d168e5567a882ba4ebec1deeeddd (
plain)
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
|
// IBM_PROLOG_BEGIN_TAG
// This is an automatically generated prolog.
//
// $Source: src/usr/errl/errlsctnhdr.C $
//
// IBM CONFIDENTIAL
//
// COPYRIGHT International Business Machines Corp. 2011
//
// p1
//
// Object Code Only (OCO) source materials
// Licensed Internal Code Source Materials
// IBM HostBoot Licensed Internal Code
//
// The source code for this program is not published or other-
// wise divested of its trade secrets, irrespective of what has
// been deposited with the U.S. Copyright Office.
//
// Origin: 30
//
// IBM_PROLOG_END
/**
* @file errlsctnhdr.C
*
* @brief Header data for any/all sections in an error log.
*
*/
#include <assert.h>
#include <errl/errlsctnhdr.H>
namespace ERRORLOG
{
extern trace_desc_t* g_trac_errl;
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ErrlSctnHdr::ErrlSctnHdr( const uint16_t i_sid,
const uint16_t i_slen,
const uint8_t i_ver,
const uint8_t i_sst,
const compId_t i_compId ) :
iv_sid( i_sid ),
iv_ver( i_ver ),
iv_sst( i_sst ),
iv_compId(i_compId)
{
// Caller/owner of this instance has provided the slen (section length)
// for its data, but does not include the size of its ErrlSctnHdr.
iv_slen = i_slen + flatSize();
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ErrlSctnHdr::~ErrlSctnHdr()
{
}
///////////////////////////////////////////////////////////////////////////////
// Flatten the data to the output pointer given as PEL as defined in
// eCLipz and P7 Platform Event Log and SRC PLDD mcdoc 1675
uint64_t ErrlSctnHdr::flatten( void * o_pBuffer, const uint64_t i_cbBuffer )
{
uint64_t l_rc = 0;
// Compile-time assertions
CPPASSERT( 8 == sizeof( pelSectionHeader_t ));
CPPASSERT( 2 == sizeof( iv_sid ));
CPPASSERT( 2 == sizeof( iv_slen ));
CPPASSERT( 1 == sizeof( iv_ver ));
CPPASSERT( 1 == sizeof( iv_sst ));
CPPASSERT( 2 == sizeof( iv_compId ));
if( i_cbBuffer >= sizeof( pelSectionHeader_t ))
{
// See errltypes.H for pelSectionHeader_t
pelSectionHeader_t * p = static_cast<pelSectionHeader_t *>(o_pBuffer);
p->sid = iv_sid;
p->len = iv_slen;
p->ver = iv_ver;
p->sst = iv_sst;
p->compId = iv_compId;
l_rc = sizeof( pelSectionHeader_t );
}
else
{
TRACFCOMP( g_trac_errl, "ErrlSctnHdr::flatten: buffer too small");
}
return l_rc;
};
} // End namespace
|