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 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 135:7f3f963cd159 22 // BaseClass support
ansond 135:7f3f963cd159 23 #include "BaseClass.h"
ansond 6:9a4085eeac52 24
ansond 135:7f3f963cd159 25 class Resource : public BaseClass {
ansond 6:9a4085eeac52 26 private:
ansond 6:9a4085eeac52 27 char m_name[RESOURCE_NAME_LEN+1];
ansond 6:9a4085eeac52 28 char m_value[RESOURCE_VALUE_LEN+1];
ansond 134:58e7537a8c5f 29 char m_endpoint_name[PERSONALITY_NAME_LEN+1];
ansond 9:90fadae5489a 30 void *m_cb;
ansond 40:eae89a487d86 31 void *m_io;
ansond 6:9a4085eeac52 32
ansond 6:9a4085eeac52 33 public:
ansond 192:54b758a8eaaa 34 Resource(Logger *logger,char *ep_name,char *name,char *value,void *cb);
ansond 6:9a4085eeac52 35 virtual ~Resource();
ansond 135:7f3f963cd159 36
ansond 6:9a4085eeac52 37 char *getName();
ansond 6:9a4085eeac52 38 void setName(char *name);
ansond 6:9a4085eeac52 39 char *getValue();
ansond 43:361a61395588 40 char *getValuePointer();
ansond 6:9a4085eeac52 41 void setValue(char *value);
ansond 56:604a75f111fd 42 void setValue(char *value,int length);
ansond 6:9a4085eeac52 43
ansond 6:9a4085eeac52 44 virtual void plumb(char *endpoint_name,char *name);
ansond 6:9a4085eeac52 45 virtual void extract(char *name);
ansond 21:cfdaee0a2b50 46
ansond 21:cfdaee0a2b50 47 void *getCallbackPointer();
ansond 40:eae89a487d86 48
ansond 125:979332edc1c2 49 void setIO(void *io);
ansond 125:979332edc1c2 50 void *getIO();
ansond 6:9a4085eeac52 51
ansond 6:9a4085eeac52 52 protected:
ansond 56:604a75f111fd 53 char *getEndpointName();
ansond 135:7f3f963cd159 54 void setCallbackPointer(void *cb);
ansond 6:9a4085eeac52 55 };
ansond 6:9a4085eeac52 56
ansond 6:9a4085eeac52 57 #endif // _RESOURCE_H