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:
Mon Feb 24 21:01:32 2014 +0000
Revision:
6:9a4085eeac52
Child:
9:90fadae5489a
updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 6:9a4085eeac52 1 /* Copyright C2013 Doug Anson, MIT License
ansond 6:9a4085eeac52 2 *
ansond 6:9a4085eeac52 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 6:9a4085eeac52 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 6:9a4085eeac52 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 6:9a4085eeac52 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 6:9a4085eeac52 7 * furnished to do so, subject to the following conditions:
ansond 6:9a4085eeac52 8 *
ansond 6:9a4085eeac52 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 6:9a4085eeac52 10 * substantial portions of the Software.
ansond 6:9a4085eeac52 11 *
ansond 6:9a4085eeac52 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 6:9a4085eeac52 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 6:9a4085eeac52 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 6:9a4085eeac52 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 6:9a4085eeac52 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 6:9a4085eeac52 17 */
ansond 6:9a4085eeac52 18
ansond 6:9a4085eeac52 19 #ifndef _RESOURCE_H
ansond 6:9a4085eeac52 20 #define _RESOURCE_H
ansond 6:9a4085eeac52 21
ansond 6:9a4085eeac52 22 // ErrorHandler support
ansond 6:9a4085eeac52 23 #include "ErrorHandler.h"
ansond 6:9a4085eeac52 24
ansond 6:9a4085eeac52 25 class Resource {
ansond 6:9a4085eeac52 26 private:
ansond 6:9a4085eeac52 27 ErrorHandler *m_error_handler;
ansond 6:9a4085eeac52 28 char m_name[RESOURCE_NAME_LEN+1];
ansond 6:9a4085eeac52 29 char m_value[RESOURCE_VALUE_LEN+1];
ansond 6:9a4085eeac52 30 char *m_endpoint_name;
ansond 6:9a4085eeac52 31 void *m_internals;
ansond 6:9a4085eeac52 32
ansond 6:9a4085eeac52 33 public:
ansond 6:9a4085eeac52 34 Resource(ErrorHandler *error_handler,char *endpoint_name,char *name,char *value,void *internals);
ansond 6:9a4085eeac52 35 Resource(const Resource &resource);
ansond 6:9a4085eeac52 36 virtual ~Resource();
ansond 6:9a4085eeac52 37
ansond 6:9a4085eeac52 38 ErrorHandler *logger();
ansond 6:9a4085eeac52 39
ansond 6:9a4085eeac52 40 char *getName();
ansond 6:9a4085eeac52 41 void setName(char *name);
ansond 6:9a4085eeac52 42 char *getValue();
ansond 6:9a4085eeac52 43 void setValue(char *value);
ansond 6:9a4085eeac52 44
ansond 6:9a4085eeac52 45 virtual void plumb(char *endpoint_name,char *name);
ansond 6:9a4085eeac52 46 virtual void extract(char *name);
ansond 6:9a4085eeac52 47
ansond 6:9a4085eeac52 48 protected:
ansond 6:9a4085eeac52 49 char *endpoint();
ansond 6:9a4085eeac52 50 void setInternals(void *internals);
ansond 6:9a4085eeac52 51 void *getInternals();
ansond 6:9a4085eeac52 52
ansond 6:9a4085eeac52 53 private:
ansond 6:9a4085eeac52 54 int min(int value1, int value2);
ansond 6:9a4085eeac52 55
ansond 6:9a4085eeac52 56
ansond 6:9a4085eeac52 57 };
ansond 6:9a4085eeac52 58
ansond 6:9a4085eeac52 59 #endif // _RESOURCE_H