summaryrefslogtreecommitdiffstats
path: root/src/usr/errl/errluserdetails.C
blob: d05af09f3a90732ad94f6834ce0e6e146d8eb545 (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
//  IBM_PROLOG_BEGIN_TAG
//  This is an automatically generated prolog.
//
//  $Source: src/usr/errl/errluserdetails.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 errluserdetails.C
 *
 *  @brief Implementation for ErrlUsrDetails
 *
 *  2011-09-28  mww Forked from /esw/fips740/Builds/b0824a_1135.740/src/util/fsp
 *
*/


/******************************************************************************/
// I n c l u d e s
/*****************************************************************************/
#include    <stdio.h>
#include    <stdlib.h>
#include    <string.h>                          // memcpy

#include    <hbotcompid.H>
#include    <errl/errlentry.H>
#include    <errl/errlmanager.H>
#include    <errl/errlreasoncodes.H>

#include    <errl/errluserdetails.H>

#include    "errlsctn.H"
#include    <errl/errlud.H>                        // ErrlFFDC


namespace ERRORLOG
{

/*****************************************************************************/
// ErrlUserDetails default constructor
/*****************************************************************************/
ErrlUserDetails::ErrlUserDetails()
: iv_CompId(HBERRL_COMP_ID),
  iv_Version(0),
  iv_SubSection(0),
  iv_pErrlFFDC(NULL),
  iv_pBuffer(NULL),
  iv_BufLen(0)
{
}

/*****************************************************************************/
// ErrlUserDetails Destructor
/*****************************************************************************/
ErrlUserDetails::~ErrlUserDetails()
{
    if (iv_pBuffer)
    {
        delete [] iv_pBuffer;
        iv_pBuffer = NULL;
    }

}


/*****************************************************************************/
//  ErrlUserDetails  add/appendToLog
/*****************************************************************************/
void ErrlUserDetails::addToLog(
        errlHndl_t      i_errl,
        const void      *i_paddBuf,
        const uint32_t  i_addBufLen )
{

    assert( i_errl != NULL );

    if ( iv_pErrlFFDC == NULL )
    {
        // first time through, do an addFFDC() and save the returned handle
        iv_pErrlFFDC =   i_errl->addFFDC(
                                    iv_CompId,
                                    iv_pBuffer,
                                    iv_BufLen,
                                    iv_Version,
                                    iv_SubSection );

        // assert if fails to addFFDC
        assert( iv_pErrlFFDC != NULL );
    }

    // if there is a buffer/len , append it to the existing FFDC.
    if ( ( i_paddBuf != NULL ) && ( i_addBufLen > 0 ) )
    {
        i_errl->appendToFFDC(
                        iv_pErrlFFDC,
                        i_paddBuf,
                        i_addBufLen );
    }
}


/*****************************************************************************/
// ErrlUserDetails allocUsrBuf
/*****************************************************************************/
uint8_t * ErrlUserDetails::allocUsrBuf(const uint32_t i_size)
{
    uint8_t * pNewBuffer = new uint8_t[i_size];
    if (iv_pBuffer)
    {
        if (iv_BufLen <= i_size)
        {
            memcpy(pNewBuffer, iv_pBuffer, iv_BufLen);
        }
        else
        {
            memcpy(pNewBuffer, iv_pBuffer, i_size);
        }
        delete [] iv_pBuffer;
    }

    iv_pBuffer = pNewBuffer;
    iv_BufLen = i_size;

    return (iv_pBuffer);
}

/*****************************************************************************/
// ErrlUserDetails getUsrBufSize
/*****************************************************************************/
uint32_t ErrlUserDetails::getUsrBufSize() const
{
    return iv_BufLen;
}

} // end namespace
OpenPOWER on IntegriCloud