123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Intel Corporation nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #include <stdint.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include "network_ra.h"
- #include "service_provider.h"
- // Used to send requests to the service provider sample. It
- // simulates network communication between the ISV app and the
- // ISV service provider. This would be modified in a real
- // product to use the proper IP communication.
- //
- // @param server_url String name of the server URL
- // @param p_req Pointer to the message to be sent.
- // @param p_resp Pointer to a pointer of the response message.
- // @return int
- int ra_network_send_receive(const char *server_url,
- const ra_samp_request_header_t *p_req,
- ra_samp_response_header_t **p_resp)
- {
- int ret = 0;
- ra_samp_response_header_t* p_resp_msg;
- if((NULL == server_url) ||
- (NULL == p_req) ||
- (NULL == p_resp))
- {
- return -1;
- }
- switch(p_req->type)
- {
- case TYPE_RA_MSG0:
- ret = sp_ra_proc_msg0_req((const sample_ra_msg0_t*)((uint8_t*)p_req
- + sizeof(ra_samp_request_header_t)),
- p_req->size);
- if (0 != ret)
- {
- fprintf(stderr, "\nError, call sp_ra_proc_msg1_req fail [%s].",
- __FUNCTION__);
- }
- break;
- case TYPE_RA_MSG1:
- ret = sp_ra_proc_msg1_req((const sample_ra_msg1_t*)((uint8_t*)p_req
- + sizeof(ra_samp_request_header_t)),
- p_req->size,
- &p_resp_msg);
- if(0 != ret)
- {
- fprintf(stderr, "\nError, call sp_ra_proc_msg1_req fail [%s].",
- __FUNCTION__);
- }
- else
- {
- *p_resp = p_resp_msg;
- }
- break;
- case TYPE_RA_MSG3:
- ret =sp_ra_proc_msg3_req((const sample_ra_msg3_t*)((uint8_t*)p_req +
- sizeof(ra_samp_request_header_t)),
- p_req->size,
- &p_resp_msg);
- if(0 != ret)
- {
- fprintf(stderr, "\nError, call sp_ra_proc_msg3_req fail [%s].",
- __FUNCTION__);
- }
- else
- {
- *p_resp = p_resp_msg;
- }
- break;
- default:
- ret = -1;
- fprintf(stderr, "\nError, unknown ra message type. Type = %d [%s].",
- p_req->type, __FUNCTION__);
- break;
- }
- return ret;
- }
- // Used to free the response messages. In the sample code, the
- // response messages are allocated by the SP code.
- //
- //
- // @param resp Pointer to the response buffer to be freed.
- void ra_free_network_response_buffer(ra_samp_response_header_t *resp)
- {
- if(resp!=NULL)
- {
- free(resp);
- }
- }
|