CGI Post

This hook function, if defined, is called by μC/HTTP-server after an HTTP request has been completely received as shown in the figure Hook Functions. It allows the upper application to do whatever wanted with data received in the request body. The hook function SHOULD NOT be blocking and SHOULD return quickly. A time consuming function will block the processing of the other connections and reduce the HTTP server performance. In case the request processing is time consuming, the Poll hook function SHOULD be enabled to allow the server to periodically verify if the upper application has finished the request processing. If the hook is not required by the upper application, it can be set as DEF_NULL and no function will be called.

Prototype

CPU_BOOLEAN  HTTPs_ReqRdySignalHook (const  HTTPs_INSTANCE  *p_instance,
                                            HTTPs_CONN      *p_conn,
                                     const  void            *p_hook_cfg,
                                     const  HTTPs_KEY_VAL   *p_data);

Arguments

p_instance

Pointer to the instance structure (read only).

p_conn

Pointer to the connection structure.

p_hook_cfg

Pointer to hook application data.

p_data

Pointer to the first control key value pair, if any form was received.
DEF_NULL, otherwise.

Return Values

DEF_YES

If the response can be sent.

DEF_NO

if the response cannot be sent after this call and Poll function MUST be called before sending the response

Required Configuration

See section Hook Configuration.

Notes / Warnings

  • The instance structure is for read-only. It must not be modified.
  • The following connection attributes can be accessed to analyze the connection (see HTTPs_CONN in Control Structures for further details on each parameters):

    • ClientAddr
    • Method
    • PathPtr
    • ReqHdrCtr
    • ReqHdrFirstPtr
    • ConnDataPtr
  • In this hook function, only the under-mentioned connection parameters are allowed to be modified (see HTTPs_CONN in Control Structures for further details on each parameters):
    • StatusCode
    • PathPtr
    • FilePtr
    • FileLen
    • BodyDataType
  • If the request data take a while to be processed:
    • The processing should be done in a separate task and not in this callback function to avoid blocking other connections.
    • The poll callback function should be used to allow the connection to poll periodically the upper application and verify if the request processing has been completed.

      Note that The ConnDataPtr attribute inside de HTTPs_CONN structure can be used to store a semaphore pointer related or anything else that can help to determine the completion of the request processing.

Example Template

The listing below is shown to demonstrate the µC/HTTP-server module capabilities. That code analyses each key value pair in the list and try to find control name which is linked to led blinking functionality and change the document returned to display the led state using a data in memory as well.

Listing - CGI Post Hook Function Example Code
static  CPU_BOOLEAN  HTTPs_ReqRdySignalHook (const  HTTPs_INSTANCE   *p_instance,
                                                    HTTPs_CONN       *p_conn,
                                              const  void            *p_hook_cfg,
                                              const  HTTPs_KEY_VAL   *p_data)
{
          HTTPs_KEY_VAL   *p_key_val;
  static  CPU_CHAR         buf[4];
          CPU_INT16S       str_cmp;
          CPU_SIZE_T       str_len;
  static  CPU_BOOLEAN      led1_val;
  static  CPU_BOOLEAN      led2_val;
          CPU_BOOLEAN      led_val;
          HTTPs_ERR        err_https;
   
    p_key_val = (HTTPs_KEY_VAL *)p_data;

    while (p_key_val != DEF_NULL) {                                                           (1)

		printf("Ctrl Name = %s, Value = %s\n\r",
                p_key_val->KeyPtr,
                p_key_val->ValPtr);

		if (p_key_val->DataType == HTTPs_KEY_VAL_TYPE_PAIR) {                                 (2)
		
			str_cmp = Str_Cmp_N(p_key_val->KeyPtr, "LED", p_key_val->KeyLen);                 (3)
        
			if (str_cmp == 0) {

				str_cmp = Str_Cmp_N(p_key_val->ValPtr, "LED1", p_key_val->ValLen);            (4)

				if (str_cmp == 0) {
                	led1_val = !led1_val;
                	led_val  = led1_val;
            	} else {
               		str_cmp = Str_Cmp_N(p_key_val->ValPtr, "LED2", p_key_val->ValLen);        (5)
                	if (str_cmp == 0) {
                    	led2_val = !led2_val;
                    	led_val  = led2_val;
                	}
				}

				if (led_val == DEF_ON) {                                                      (6)
              	  str_len          = Str_Len("ON");
               	  Str_Copy(&buf[0], "ON");
            	} else {
                	str_len          = Str_Len("OFF");
                	Str_Copy(&buf[0], "OFF");
            	}

                HTTPs_RespBodySetParamStaticData(p_instance,                                  (7)
                                                 p_conn, 
                                                 HTTP_CONTENT_TYPE_PLAIN,
                                                &buf[0], 
                                                 str_len, 
                                                 DEF_NO, 
                                                &err_https);     
		}

		} else if (p_key_val->DataType == HTTPs_KEY_VAL_TYPE_FILE) {                          (8)

            HTTPs_RespBodySetParamFile(p_instance,                                            (9)
                                       p_conn, 
                                       p_key_val->ValPtr,
                                       HTTP_CONTENT_TYPE_UNKNOWN,
                                       DEF_YES,
                                      &err_https);
   		}

			p_key_val = p_key_val->DataNextPtr;
  
	}

	return (DEF_NO);
}
  1. Analyze each key value pair into the list
     
  2. Make sure the key value pair item is a control key and not a file.
     
  3. If the control name starts with the key word ‘LED’ than a led should be toggled.
     
  4. If the value contains ‘LED1’ than the first led should be toggled.
     
  5. Else if the value contains ‘LED2’ than the second led should be toggled.

  6. Update memory data to transmit based on the led state.
     
  7. Set the data to send in the response body.
     
  8. If the key value pair is for a file uploaded.
     
  9. Change the file to be transmitted equal to the file just received.