Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027 C12832 EthernetInterface StatusReporter LM75B MQTT-ansond endpoint_core endpoint_mqtt mbed-rtos mbed
HTTPTransport.cpp@12:952dce085876, 2014-02-27 (annotated)
- Committer:
- ansond
- Date:
- Thu Feb 27 00:23:30 2014 +0000
- Revision:
- 12:952dce085876
- Parent:
- 11:59ee476fda24
- Child:
- 15:e44d75d95b38
updates
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ansond | 0:ae2a45502448 | 1 | /* Copyright C2013 Doug Anson, MIT License |
| ansond | 0:ae2a45502448 | 2 | * |
| ansond | 0:ae2a45502448 | 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
| ansond | 0:ae2a45502448 | 4 | * and associated documentation files the "Software", to deal in the Software without restriction, |
| ansond | 0:ae2a45502448 | 5 | * including without limitation the rights to use, copy, modify, merge, publish, distribute, |
| ansond | 0:ae2a45502448 | 6 | * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is |
| ansond | 0:ae2a45502448 | 7 | * furnished to do so, subject to the following conditions: |
| ansond | 0:ae2a45502448 | 8 | * |
| ansond | 0:ae2a45502448 | 9 | * The above copyright notice and this permission notice shall be included in all copies or |
| ansond | 0:ae2a45502448 | 10 | * substantial portions of the Software. |
| ansond | 0:ae2a45502448 | 11 | * |
| ansond | 0:ae2a45502448 | 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
| ansond | 0:ae2a45502448 | 13 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| ansond | 0:ae2a45502448 | 14 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
| ansond | 0:ae2a45502448 | 15 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| ansond | 0:ae2a45502448 | 16 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| ansond | 0:ae2a45502448 | 17 | */ |
| ansond | 0:ae2a45502448 | 18 | |
| ansond | 0:ae2a45502448 | 19 | #include "HTTPTransport.h" |
| ansond | 0:ae2a45502448 | 20 | |
| ansond | 9:ff877db53cfd | 21 | // Endpoint Support |
| ansond | 9:ff877db53cfd | 22 | #include "MBEDEndpoint.h" |
| ansond | 9:ff877db53cfd | 23 | |
| ansond | 9:ff877db53cfd | 24 | // EmulatedResourceFactory support |
| ansond | 9:ff877db53cfd | 25 | #include "EmulatedResourceFactory.h" |
| ansond | 9:ff877db53cfd | 26 | |
| ansond | 0:ae2a45502448 | 27 | // HTTP Client |
| ansond | 0:ae2a45502448 | 28 | HTTPClient _http; |
| ansond | 0:ae2a45502448 | 29 | |
| ansond | 0:ae2a45502448 | 30 | // default constructor |
| ansond | 7:f570eb3f38cd | 31 | HTTPTransport::HTTPTransport(ErrorHandler *error_handler,void *endpoint) : Transport(error_handler,endpoint) { |
| ansond | 0:ae2a45502448 | 32 | this->m_http = &_http; |
| ansond | 0:ae2a45502448 | 33 | this->m_connected = true; |
| ansond | 0:ae2a45502448 | 34 | } |
| ansond | 0:ae2a45502448 | 35 | |
| ansond | 0:ae2a45502448 | 36 | // default destructor |
| ansond | 0:ae2a45502448 | 37 | HTTPTransport::~HTTPTransport() { |
| ansond | 0:ae2a45502448 | 38 | } |
| ansond | 0:ae2a45502448 | 39 | |
| ansond | 9:ff877db53cfd | 40 | // Load up our endpoint into the IOC |
| ansond | 12:952dce085876 | 41 | bool HTTPTransport::loadEndpoint(char *data,int data_length,char *result,int result_length) { return this->httpPost(this->createIOCLoadURL(),data,strlen(data),result,result_length); } |
| ansond | 9:ff877db53cfd | 42 | |
| ansond | 9:ff877db53cfd | 43 | // update our endpoint with the IOC |
| ansond | 12:952dce085876 | 44 | bool HTTPTransport::updateEndpoint(int ioc_id,char *data,int data_length,char *result,int result_length) { return this->httpPut(this->createIOCUpdateURL(ioc_id),data,strlen(data),result,result_length); } |
| ansond | 10:748fc7052e61 | 45 | |
| ansond | 10:748fc7052e61 | 46 | // create the IOC load URL |
| ansond | 10:748fc7052e61 | 47 | char *HTTPTransport::createIOCLoadURL() { return this->createIOCUpdateURL(0); } |
| ansond | 10:748fc7052e61 | 48 | |
| ansond | 10:748fc7052e61 | 49 | // create the IOC update URL |
| ansond | 10:748fc7052e61 | 50 | char *HTTPTransport::createIOCUpdateURL(int ioc_id) { |
| ansond | 11:59ee476fda24 | 51 | char ioc_id_str[IOC_IOC_ID_LEN+1]; |
| ansond | 11:59ee476fda24 | 52 | memset(ioc_id_str,0,IOC_IOC_ID_LEN+1); |
| ansond | 10:748fc7052e61 | 53 | if (ioc_id > 0) sprintf(ioc_id_str,"/%d",ioc_id); |
| ansond | 10:748fc7052e61 | 54 | memset(this->m_url_buffer,0,IOC_REST_URL_LEN+1); |
| ansond | 10:748fc7052e61 | 55 | sprintf(this->m_url_buffer,IOC_REST_URL,IOC_HOST_NAME,IOC_DATASOURCE_ID,ioc_id_str); |
| ansond | 10:748fc7052e61 | 56 | return this->m_url_buffer; |
| ansond | 10:748fc7052e61 | 57 | } |
| ansond | 9:ff877db53cfd | 58 | |
| ansond | 0:ae2a45502448 | 59 | // connect up HTTP |
| ansond | 0:ae2a45502448 | 60 | bool HTTPTransport::connect() { return this->m_connected; } |
| ansond | 0:ae2a45502448 | 61 | |
| ansond | 0:ae2a45502448 | 62 | // disconnect from HTTP |
| ansond | 0:ae2a45502448 | 63 | bool HTTPTransport::disconnect() { return true; } |
| ansond | 0:ae2a45502448 | 64 | |
| ansond | 0:ae2a45502448 | 65 | // HTTP Get |
| ansond | 0:ae2a45502448 | 66 | bool HTTPTransport::httpGet(char *url,char *result,int result_length) { |
| ansond | 0:ae2a45502448 | 67 | return (this->m_http->get(url,result,result_length) == 0); |
| ansond | 0:ae2a45502448 | 68 | } |
| ansond | 0:ae2a45502448 | 69 | |
| ansond | 0:ae2a45502448 | 70 | // HTTP Put |
| ansond | 0:ae2a45502448 | 71 | bool HTTPTransport::httpPut(char *url,char *data,int data_length,char *result,int result_length) { |
| ansond | 0:ae2a45502448 | 72 | HTTPText input(data,data_length); |
| ansond | 0:ae2a45502448 | 73 | HTTPText output(result,result_length); |
| ansond | 0:ae2a45502448 | 74 | return (this->m_http->put(url,output,&input) != 0); |
| ansond | 0:ae2a45502448 | 75 | } |
| ansond | 0:ae2a45502448 | 76 | |
| ansond | 0:ae2a45502448 | 77 | // HTTP Post |
| ansond | 0:ae2a45502448 | 78 | bool HTTPTransport::httpPost(char *url,char *data,int data_length,char *result,int result_length) { |
| ansond | 0:ae2a45502448 | 79 | HTTPText input(data,data_length); |
| ansond | 0:ae2a45502448 | 80 | HTTPText output(result,result_length); |
| ansond | 0:ae2a45502448 | 81 | return (this->m_http->post(url,output,&input) != 0); |
| ansond | 0:ae2a45502448 | 82 | } |
| ansond | 0:ae2a45502448 | 83 | |
| ansond | 0:ae2a45502448 | 84 | // HTTP Delete |
| ansond | 0:ae2a45502448 | 85 | bool HTTPTransport::httpDelete(char *url,char *data,int data_length) { |
| ansond | 0:ae2a45502448 | 86 | HTTPText input(data,data_length); |
| ansond | 0:ae2a45502448 | 87 | return (this->m_http->del(url,&input) != 0); |
| ansond | 0:ae2a45502448 | 88 | } |