Core Base Classes for the Light Endpoints
Dependents: mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more
Transport.cpp@24:b45d4ef84a64, 2014-02-27 (annotated)
- Committer:
- ansond
- Date:
- Thu Feb 27 00:23:20 2014 +0000
- Revision:
- 24:b45d4ef84a64
- Parent:
- 23:645790d6a2f0
- Child:
- 37:1588ba3af6d1
updates
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ansond | 0:4c9bfcb3e759 | 1 | /* Copyright C2013 Doug Anson, MIT License |
ansond | 0:4c9bfcb3e759 | 2 | * |
ansond | 0:4c9bfcb3e759 | 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
ansond | 0:4c9bfcb3e759 | 4 | * and associated documentation files the "Software", to deal in the Software without restriction, |
ansond | 0:4c9bfcb3e759 | 5 | * including without limitation the rights to use, copy, modify, merge, publish, distribute, |
ansond | 0:4c9bfcb3e759 | 6 | * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is |
ansond | 0:4c9bfcb3e759 | 7 | * furnished to do so, subject to the following conditions: |
ansond | 0:4c9bfcb3e759 | 8 | * |
ansond | 0:4c9bfcb3e759 | 9 | * The above copyright notice and this permission notice shall be included in all copies or |
ansond | 0:4c9bfcb3e759 | 10 | * substantial portions of the Software. |
ansond | 0:4c9bfcb3e759 | 11 | * |
ansond | 0:4c9bfcb3e759 | 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
ansond | 0:4c9bfcb3e759 | 13 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
ansond | 0:4c9bfcb3e759 | 14 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
ansond | 0:4c9bfcb3e759 | 15 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
ansond | 0:4c9bfcb3e759 | 16 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
ansond | 0:4c9bfcb3e759 | 17 | */ |
ansond | 0:4c9bfcb3e759 | 18 | |
ansond | 0:4c9bfcb3e759 | 19 | #include "Transport.h" |
ansond | 0:4c9bfcb3e759 | 20 | |
ansond | 0:4c9bfcb3e759 | 21 | // default constructor |
ansond | 20:f2dbbd852e08 | 22 | Transport::Transport(ErrorHandler *error_handler,void *endpoint) { |
ansond | 20:f2dbbd852e08 | 23 | this->m_endpoint = endpoint; |
ansond | 0:4c9bfcb3e759 | 24 | this->m_error_handler = error_handler; |
ansond | 0:4c9bfcb3e759 | 25 | this->m_connected = false; |
ansond | 0:4c9bfcb3e759 | 26 | } |
ansond | 0:4c9bfcb3e759 | 27 | |
ansond | 0:4c9bfcb3e759 | 28 | // default destructor |
ansond | 0:4c9bfcb3e759 | 29 | Transport::~Transport() { |
ansond | 0:4c9bfcb3e759 | 30 | } |
ansond | 0:4c9bfcb3e759 | 31 | |
ansond | 0:4c9bfcb3e759 | 32 | // check transport and process stuff |
ansond | 0:4c9bfcb3e759 | 33 | void Transport::checkAndProcess() { |
ansond | 0:4c9bfcb3e759 | 34 | // default is no action |
ansond | 0:4c9bfcb3e759 | 35 | ; |
ansond | 0:4c9bfcb3e759 | 36 | } |
ansond | 0:4c9bfcb3e759 | 37 | |
ansond | 0:4c9bfcb3e759 | 38 | // get the error handler |
ansond | 0:4c9bfcb3e759 | 39 | ErrorHandler *Transport::logger() { return this->m_error_handler; } |
ansond | 20:f2dbbd852e08 | 40 | |
ansond | 0:4c9bfcb3e759 | 41 | // get the endpoint |
ansond | 22:f337db5c8f6e | 42 | void *Transport::getEndpoint() { return this->m_endpoint; } |
ansond | 22:f337db5c8f6e | 43 | |
ansond | 22:f337db5c8f6e | 44 | // load the endpoint (base class does nothing) |
ansond | 23:645790d6a2f0 | 45 | bool Transport::loadEndpoint(char *data,int data_length,char *result,int result_length) { return false; } |
ansond | 22:f337db5c8f6e | 46 | |
ansond | 22:f337db5c8f6e | 47 | // update the endpoing (base class does nothing) |
ansond | 24:b45d4ef84a64 | 48 | bool Transport::updateEndpoint(int ioc_id,char *data,int data_length,char *result,int result_length) { return false; } |