aboutsummaryrefslogtreecommitdiffstats
path: root/ucs2-lib/inc/ucs_jobs.h
blob: 7642279c1ba9450aeb7d75348df83309116b5875 (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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*------------------------------------------------------------------------------------------------*/
/* UNICENS V2.1.0-3491                                                                            */
/* Copyright (c) 2017 Microchip Technology Germany II GmbH & Co. KG.                              */
/*                                                                                                */
/* This program is free software: you can redistribute it and/or modify                           */
/* it under the terms of the GNU General Public License as published by                           */
/* the Free Software Foundation, either version 2 of the License, or                              */
/* (at your option) any later version.                                                            */
/*                                                                                                */
/* This program is distributed in the hope that it will be useful,                                */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of                                 */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                  */
/* GNU General Public License for more details.                                                   */
/*                                                                                                */
/* You should have received a copy of the GNU General Public License                              */
/* along with this program.  If not, see <http://www.gnu.org/licenses/>.                          */
/*                                                                                                */
/* You may also obtain this software under a propriety license from Microchip.                    */
/* Please contact Microchip for further information.                                              */
/*------------------------------------------------------------------------------------------------*/

/*!
 * \file
 * \brief Internal header file of Job classes
 *
 * \cond UCS_INTERNAL_DOC
 * \addtogroup G_JOBS
 * @{
 */

#ifndef UCS_JOBS_H
#define UCS_JOBS_H

/*------------------------------------------------------------------------------------------------*/
/* Includes                                                                                       */
/*------------------------------------------------------------------------------------------------*/
#include "ucs_base.h"

#ifdef __cplusplus
extern "C"
{
#endif

/*------------------------------------------------------------------------------------------------*/
/* Internal constants                                                                             */
/*------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------*/
/* Types                                                                                          */
/*------------------------------------------------------------------------------------------------*/
struct CJob_;
typedef struct CJob_ CJob;

/*! \brief   Starts up the MOST Network
 *  \param   self       The instance
 */
typedef void (*Job_StartCb_t)(void *self);

/*------------------------------------------------------------------------------------------------*/
/* CJob Class                                                                                     */
/*------------------------------------------------------------------------------------------------*/

/*! \brief Job state */
typedef enum Job_State_
{
    JOB_S_STOPPED  = 0U,
    JOB_S_STARTED  = 1U,
    JOB_S_FINISHED = 2U

} Job_State_t;

/*! \brief Job result */
typedef enum Job_Result_
{
    JOB_R_NA       = 0U,
    JOB_R_SUCCESS  = 1U,
    JOB_R_FAILED   = 2U

} Job_Result_t;

/*! \brief      Job class
 *  \details    Definition of job class
 */
struct CJob_
{
    void           *inst_ptr;
    Job_StartCb_t   start_fptr;
    Job_State_t     state;
    Job_Result_t    result;
    CSingleSubject  subject;
};

/*------------------------------------------------------------------------------------------------*/
/* CJob Methods                                                                                   */
/*------------------------------------------------------------------------------------------------*/
void Job_Ctor(CJob *self, Job_StartCb_t start_fptr, void *inst_ptr);
void Job_Start(CJob *self, CSingleObserver *result_obs_ptr);
void Job_Stop(CJob *self);
void Job_SetResult(CJob *self, Job_Result_t result);
Job_State_t Job_GetState(CJob *self);
Job_Result_t Job_GetResult(CJob *self);


/*------------------------------------------------------------------------------------------------*/
/* CJobQ Class                                                                                    */
/*------------------------------------------------------------------------------------------------*/
struct CJobService_;
typedef struct CJobService_ CJobService;

/*! \brief      JobQ class
 *  \details    Definition of job queue class
 */
typedef struct CJobQ_
{
    Srv_Event_t     event_id;
    Job_State_t     state;
    Job_Result_t    result;
    CJob**          job_list;
    CJobService*    job_service_ptr;
    
    uint8_t         index;          /*! \brief The index of current job */
    CSingleObserver result_obs;     /*! \brief Required to get the job result */
    CSingleSubject  q_subject;      /*! \brief Notifies the JobQ result */
    CDlNode         node;           /*! \brief Required node to add JobQ to JobService class*/

} CJobQ;

/*------------------------------------------------------------------------------------------------*/
/* CJobQ Methods                                                                                  */
/*------------------------------------------------------------------------------------------------*/
void Jbq_Ctor(CJobQ *self, CJobService *job_service_ptr, Srv_Event_t event_id, CJob *job_list[]);
void Jbq_Start(CJobQ *self, CSingleObserver *result_obs_ptr);
void Jbq_Stop(CJobQ *self);
void Jbq_Service(CJobQ *self);
Srv_Event_t Jbq_GetEventId(CJobQ *self);


/*------------------------------------------------------------------------------------------------*/
/* CJobService Class                                                                              */
/*------------------------------------------------------------------------------------------------*/
/*! \brief      Job Service class
 *  \details    Definition of job service class
 */
struct CJobService_
{
    CBase          *base_ptr;
    CDlList         list;
    CService        service;
};

/*------------------------------------------------------------------------------------------------*/
/* CJobService Methods                                                                            */
/*------------------------------------------------------------------------------------------------*/
void Jbs_Ctor(CJobService *self, CBase *base_ptr);
void Jbs_RegisterJobQ(CJobService *self, CDlNode *job_q_node);
void Jbs_TriggerEvent(CJobService *self, Srv_Event_t id);


#ifdef __cplusplus
}               /* extern "C" */
#endif

#endif          /* UCS_JOBS_H */

/*!
 * @}
 * \endcond
 */

/*------------------------------------------------------------------------------------------------*/
/* End of file                                                                                    */
/*------------------------------------------------------------------------------------------------*/