astroboy astroboy
/
CoOS_LWIP
Quick and dirty CoOS + LWIP ( Webserver )
CoOS/kernel/serviceReq.c
- Committer:
- astroboy
- Date:
- 2011-09-10
- Revision:
- 0:94897d537b31
File content as of revision 0:94897d537b31:
/** ******************************************************************************* * @file serviceReq.c * @version V1.1.4 * @date 2011.04.20 * @brief servive request management implementation code of CooCox CoOS kernel. ******************************************************************************* * @copy * * INTERNAL FILE,DON'T PUBLIC. * * <h2><center>© COPYRIGHT 2009 CooCox </center></h2> ******************************************************************************* */ /*---------------------------- Include ---------------------------------------*/ #include <coocox.h> #if (CFG_TASK_WAITTING_EN > 0) || (CFG_TMR_EN >0) #if CFG_MAX_SERVICE_REQUEST > 0 /*---------------------------- Variable Define -------------------------------*/ SRQ ServiceReq = {0,0}; /*!< ISR server request queue */ #endif BOOL IsrReq = Co_FALSE; #if (CFG_TASK_WAITTING_EN > 0) BOOL TimeReq = Co_FALSE; /*!< Time delay dispose request */ #endif #if CFG_TMR_EN > 0 BOOL TimerReq = Co_FALSE; /*!< Timer dispose request */ #endif /** ******************************************************************************* * @brief Insert into service requst queue * @param[in] type Service request type. * @param[in] id Service request event id,event id/flag id. * @param[in] arg Service request argument. * @param[out] None * * @retval Co_FALSE Successfully insert into service request queue. * @retval Co_TRUE Failure to insert into service request queue. * * @par Description * @details This function be called to insert a requst into service request * queue. * @note ******************************************************************************* */ #if (CFG_MAX_SERVICE_REQUEST > 0) BOOL InsertInSRQ(U8 type,U8 id,void* arg) { P_SQC pcell; U8 cnt; U8 heed; IRQ_DISABLE_SAVE(); if (ServiceReq.cnt >= CFG_MAX_SERVICE_REQUEST) { IRQ_ENABLE_RESTORE (); return Co_FALSE; /* Error return */ } cnt = Inc8(&ServiceReq.cnt); heed = ServiceReq.head; IsrReq = Co_TRUE; pcell = &ServiceReq.cell[((cnt+heed)%CFG_MAX_SERVICE_REQUEST)];/*the tail */ pcell->type = type; /* Save service request type, */ pcell->id = id; /* event id */ pcell->arg = arg; /* and parameter */ IRQ_ENABLE_RESTORE (); return Co_TRUE; /* Return OK */ } #endif /** ******************************************************************************* * @brief Respond the request in the service request queue. * @param[in] None * @param[out] None * @retval None * * @par Description * @details This function be called to respond the request in the service * request queue. * @note ******************************************************************************* */ void RespondSRQ(void) { #if CFG_MAX_SERVICE_REQUEST > 0 SQC cell; #endif #if (CFG_TASK_WAITTING_EN > 0) if(TimeReq == Co_TRUE) /* Time delay request? */ { TimeDispose(); /* Yes,call handler */ TimeReq = Co_FALSE; /* Reset time delay request Co_FALSE */ } #endif #if CFG_TMR_EN > 0 if(TimerReq == Co_TRUE) /* Timer request? */ { TmrDispose(); /* Yes,call handler */ TimerReq = Co_FALSE; /* Reset timer request Co_FALSE */ } #endif #if CFG_MAX_SERVICE_REQUEST > 0 while (ServiceReq.cnt != 0) { IRQ_DISABLE_SAVE (); /* need to protect the following */ cell = ServiceReq.cell[ServiceReq.head]; /* extract one cell */ ServiceReq.head = (ServiceReq.head + 1) % /* move head (pop) */ CFG_MAX_SERVICE_REQUEST; ServiceReq.cnt--; IRQ_ENABLE_RESTORE (); /* now use the cell copy */ switch(cell.type) /* Judge service request type */ { #if CFG_SEM_EN > 0 case SEM_REQ: /* Semaphore post request,call handler*/ CoPostSem(cell.id); break; #endif #if CFG_MAILBOX_EN > 0 case MBOX_REQ: /* Mailbox post request,call handler */ CoPostMail(cell.id, cell.arg); break; #endif #if CFG_FLAG_EN > 0 case FLAG_REQ: /* Flag set request,call handler */ CoSetFlag(cell.id); break; #endif #if CFG_QUEUE_EN > 0 case QUEUE_REQ: /* Queue post request,call handler */ CoPostQueueMail(cell.id, cell.arg); break; #endif default: /* Others,break */ break; } } #endif IRQ_DISABLE_SAVE (); /* need to protect the following */ if (ServiceReq.cnt == 0) /* another item in the queue already? */ { IsrReq = Co_FALSE; /* queue still empty here */ } IRQ_ENABLE_RESTORE (); /* now it is done and return */ } #endif