Core Base Classes for the Light Endpoints

Dependencies:   BufferedSerial

Dependents:   mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more

Committer:
ansond
Date:
Fri Sep 26 05:16:07 2014 +0000
Revision:
192:54b758a8eaaa
Parent:
135:7f3f963cd159
updates to new logger name

Who changed what in which revision?

UserRevisionLine numberNew 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
ansond 0:4c9bfcb3e759 20 #ifndef ___TRANSPORT_H_
ansond 0:4c9bfcb3e759 21 #define ___TRANSPORT_H_
ansond 0:4c9bfcb3e759 22
ansond 0:4c9bfcb3e759 23 // Definitions
ansond 0:4c9bfcb3e759 24 #include "Definitions.h"
ansond 0:4c9bfcb3e759 25
ansond 135:7f3f963cd159 26 // BaseClass support
ansond 135:7f3f963cd159 27 #include "BaseClass.h"
ansond 0:4c9bfcb3e759 28
ansond 135:7f3f963cd159 29 class Transport : public BaseClass {
ansond 0:4c9bfcb3e759 30 public:
ansond 192:54b758a8eaaa 31 Transport(Logger *error_handler,void *endpoint);
ansond 0:4c9bfcb3e759 32 virtual ~Transport();
ansond 0:4c9bfcb3e759 33
ansond 37:1588ba3af6d1 34 virtual bool connect();
ansond 37:1588ba3af6d1 35 virtual bool disconnect();
ansond 0:4c9bfcb3e759 36
ansond 22:f337db5c8f6e 37 virtual void checkAndProcess();
ansond 22:f337db5c8f6e 38
ansond 23:645790d6a2f0 39 virtual bool loadEndpoint(char *data,int data_length,char *result,int result_length);
ansond 24:b45d4ef84a64 40 virtual bool updateEndpoint(int ioc_id,char *data,int data_length,char *result,int result_length);
ansond 135:7f3f963cd159 41
ansond 0:4c9bfcb3e759 42 protected:
ansond 0:4c9bfcb3e759 43 bool m_connected;
ansond 0:4c9bfcb3e759 44 };
ansond 0:4c9bfcb3e759 45
ansond 0:4c9bfcb3e759 46 #endif // ___TRANSPORT_H_