summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/mdia/mdiaworkitem.H
blob: 04200e01b82904af7a891ffb7f66ae0a54789876 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/diag/mdia/mdiaworkitem.H $                            */
/*                                                                        */
/* IBM CONFIDENTIAL                                                       */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2012,2013              */
/*                                                                        */
/* 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 otherwise         */
/* divested of its trade secrets, irrespective of what has been           */
/* deposited with the U.S. Copyright Office.                              */
/*                                                                        */
/* Origin: 30                                                             */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
#ifndef __MDIA_MDIAWORKITEM_H
#define __MDIA_MDIAWORKITEM_H

/**
 * @file mdiaworkitem.H
 * @brief threadpool workitem definition
 */

#include <stdint.h>
#include "mdiafwd.H"

namespace MDIA
{

/**
 * @brief mdia work item
 */
class WorkItem
{
    public:

        /**
         * @brief task function, called by threadpool
         */
        void operator()();

        /**
         * @brief work item comparison
         * @param[in] i_rhs external work item to compare to
         *
         * @retval -1 this < i_rhs
         * @retval 1 i_rhs < this
         * @retval 0 i_rhs !< this && this !< i_rhs
         */
        int64_t compare(const WorkItem & i_rhs) const;

        /**
         * @brief ctor
         *
         * work items with higher i_priority are executed before
         * work items with lower i_priority
         *
         * @param[in] i_sm state machine to forward call to
         * @param[in] i_wfp state machine state snapshot
         * @param[in] i_priority work item priority
         * @param[in] i_chipUnit mba position (0/1)
         */
        WorkItem(StateMachine & i_sm, WorkFlowProperties * i_wfp,
                uint64_t i_priority, uint8_t i_chipUnit);

    private:

        /**
         * @brief state machine reference
         */
        StateMachine & iv_sm;

        /**
         * @brief state machine state to be passed back to the state machine
         */
        WorkFlowProperties * iv_wfp;

        /**
         * @brief the scheduling priority for the work item
         */
        uint64_t iv_priority;

        /**
         * @brief the mba number on the membuf (0/1)
         */
        uint8_t iv_chipUnit;

        /**
         * @brief copy disabled
         */
        WorkItem(const WorkItem &);

        /**
         * @brief assignment disabled
         */
        WorkItem & operator=(const WorkItem &);

        /**
         * @brief provide internal access to unit test
         */
        friend class ::MdiaWorkItemTest;
};

/**
 * @brief comparison operator
 * @param[in] i_l left hand side
 * @param[in] i_r right hand side
 */
inline bool operator<(const WorkItem & i_l, const WorkItem & i_r)
{
    return i_l.compare(i_r) < 0;
}
}
#endif
OpenPOWER on IntegriCloud