1 /****************************************************************************
3 (c) SYSTEC electronic GmbH, D-07973 Greiz, August-Bebel-Str. 29
4 www.systec-electronic.com
8 Description: source file for Statusu-Module
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions
16 1. Redistributions of source code must retain the above copyright
17 notice, this list of conditions and the following disclaimer.
19 2. Redistributions in binary form must reproduce the above copyright
20 notice, this list of conditions and the following disclaimer in the
21 documentation and/or other materials provided with the distribution.
23 3. Neither the name of SYSTEC electronic GmbH nor the names of its
24 contributors may be used to endorse or promote products derived
25 from this software without prior written permission. For written
26 permission, please contact info@systec-electronic.com.
28 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
31 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
32 COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
33 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
34 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
35 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
36 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
38 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 POSSIBILITY OF SUCH DAMAGE.
43 If a provision of this License is or becomes illegal, invalid or
44 unenforceable in any jurisdiction, that shall not affect:
45 1. the validity or enforceability in that jurisdiction of any other
46 provision of this License; or
47 2. the validity or enforceability in other jurisdictions of that or
48 any other provision of this License.
50 -------------------------------------------------------------------------
52 $RCSfile: EplStatusu.c,v $
56 $Revision: 1.5 $ $Date: 2008/10/17 15:32:32 $
63 -------------------------------------------------------------------------
67 2006/11/15 d.k.: start of the implementation
69 ****************************************************************************/
71 #include "user/EplStatusu.h"
72 #include "user/EplDlluCal.h"
74 /***************************************************************************/
77 /* G L O B A L D E F I N I T I O N S */
80 /***************************************************************************/
82 //---------------------------------------------------------------------------
84 //---------------------------------------------------------------------------
86 //---------------------------------------------------------------------------
88 //---------------------------------------------------------------------------
90 //---------------------------------------------------------------------------
92 //---------------------------------------------------------------------------
94 //---------------------------------------------------------------------------
95 // local function prototypes
96 //---------------------------------------------------------------------------
98 /***************************************************************************/
101 /* C L A S S <xxxxx> */
104 /***************************************************************************/
109 /***************************************************************************/
111 //=========================================================================//
113 // P R I V A T E D E F I N I T I O N S //
115 //=========================================================================//
117 //---------------------------------------------------------------------------
119 //---------------------------------------------------------------------------
121 //---------------------------------------------------------------------------
123 //---------------------------------------------------------------------------
126 tEplStatusuCbResponse m_apfnCbResponse
[254];
128 } tEplStatusuInstance
;
130 //---------------------------------------------------------------------------
132 //---------------------------------------------------------------------------
134 static tEplStatusuInstance EplStatusuInstance_g
;
136 //---------------------------------------------------------------------------
137 // local function prototypes
138 //---------------------------------------------------------------------------
140 static tEplKernel
EplStatusuCbStatusResponse(tEplFrameInfo
*pFrameInfo_p
);
142 //=========================================================================//
144 // P U B L I C F U N C T I O N S //
146 //=========================================================================//
148 //---------------------------------------------------------------------------
150 // Function: EplStatusuInit
152 // Description: init first instance of the module
159 // Returns: tEplKernel = errorcode
164 //---------------------------------------------------------------------------
166 tEplKernel
EplStatusuInit(void)
170 Ret
= EplStatusuAddInstance();
175 //---------------------------------------------------------------------------
177 // Function: EplStatusuAddInstance
179 // Description: init other instances of the module
186 // Returns: tEplKernel = errorcode
191 //---------------------------------------------------------------------------
193 tEplKernel
EplStatusuAddInstance(void)
197 Ret
= kEplSuccessful
;
199 // reset instance structure
200 EPL_MEMSET(&EplStatusuInstance_g
, 0, sizeof(EplStatusuInstance_g
));
202 // register StatusResponse callback function
204 EplDlluCalRegAsndService(kEplDllAsndStatusResponse
,
205 EplStatusuCbStatusResponse
,
206 kEplDllAsndFilterAny
);
212 //---------------------------------------------------------------------------
214 // Function: EplStatusuDelInstance
216 // Description: delete instance
223 // Returns: tEplKernel = errorcode
228 //---------------------------------------------------------------------------
230 tEplKernel
EplStatusuDelInstance(void)
234 Ret
= kEplSuccessful
;
236 // deregister StatusResponse callback function
238 EplDlluCalRegAsndService(kEplDllAsndStatusResponse
, NULL
,
239 kEplDllAsndFilterNone
);
245 //---------------------------------------------------------------------------
247 // Function: EplStatusuReset
249 // Description: resets this instance
253 // Returns: tEplKernel = errorcode
258 //---------------------------------------------------------------------------
260 tEplKernel
EplStatusuReset(void)
264 Ret
= kEplSuccessful
;
266 // reset instance structure
267 EPL_MEMSET(&EplStatusuInstance_g
, 0, sizeof(EplStatusuInstance_g
));
273 //---------------------------------------------------------------------------
275 // Function: EplStatusuRequestStatusResponse
277 // Description: returns the StatusResponse for the specified node.
279 // Parameters: uiNodeId_p = IN: node ID
280 // pfnCbResponse_p = IN: function pointer to callback function
281 // which will be called if StatusResponse is received
283 // Return: tEplKernel = error code
287 //---------------------------------------------------------------------------
289 tEplKernel
EplStatusuRequestStatusResponse(unsigned int uiNodeId_p
,
290 tEplStatusuCbResponse pfnCbResponse_p
)
294 Ret
= kEplSuccessful
;
296 // decrement node ID, because array is zero based
298 if (uiNodeId_p
< tabentries(EplStatusuInstance_g
.m_apfnCbResponse
)) {
299 #if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_NMT_MN)) != 0)
300 if (EplStatusuInstance_g
.m_apfnCbResponse
[uiNodeId_p
] != NULL
) { // request already issued (maybe by someone else)
301 Ret
= kEplInvalidOperation
;
303 EplStatusuInstance_g
.m_apfnCbResponse
[uiNodeId_p
] =
306 EplDlluCalIssueRequest(kEplDllReqServiceStatus
,
307 (uiNodeId_p
+ 1), 0xFF);
310 Ret
= kEplInvalidOperation
;
312 } else { // invalid node ID specified
313 Ret
= kEplInvalidNodeId
;
320 //=========================================================================//
322 // P R I V A T E F U N C T I O N S //
324 //=========================================================================//
326 //---------------------------------------------------------------------------
328 // Function: EplStatusuCbStatusResponse
330 // Description: callback funktion for StatusResponse
334 // Parameters: pFrameInfo_p = Frame with the StatusResponse
337 // Returns: tEplKernel = error code
342 //---------------------------------------------------------------------------
343 static tEplKernel
EplStatusuCbStatusResponse(tEplFrameInfo
*pFrameInfo_p
)
345 tEplKernel Ret
= kEplSuccessful
;
346 unsigned int uiNodeId
;
347 unsigned int uiIndex
;
348 tEplStatusuCbResponse pfnCbResponse
;
350 uiNodeId
= AmiGetByteFromLe(&pFrameInfo_p
->m_pFrame
->m_le_bSrcNodeId
);
352 uiIndex
= uiNodeId
- 1;
354 if (uiIndex
< tabentries(EplStatusuInstance_g
.m_apfnCbResponse
)) {
355 // memorize pointer to callback function
356 pfnCbResponse
= EplStatusuInstance_g
.m_apfnCbResponse
[uiIndex
];
357 if (pfnCbResponse
== NULL
) { // response was not requested
360 // reset callback function pointer so that caller may issue next request
361 EplStatusuInstance_g
.m_apfnCbResponse
[uiIndex
] = NULL
;
363 if (pFrameInfo_p
->m_uiFrameSize
< EPL_C_DLL_MINSIZE_STATUSRES
) { // StatusResponse not received or it has invalid size
364 Ret
= pfnCbResponse(uiNodeId
, NULL
);
365 } else { // StatusResponse received
367 pfnCbResponse(uiNodeId
,
368 &pFrameInfo_p
->m_pFrame
->m_Data
.
369 m_Asnd
.m_Payload
.m_StatusResponse
);