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 1:5d332fa199ce 1 /* Copyright C2013 Doug Anson, MIT License
ansond 1:5d332fa199ce 2 *
ansond 1:5d332fa199ce 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 1:5d332fa199ce 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 1:5d332fa199ce 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 1:5d332fa199ce 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 1:5d332fa199ce 7 * furnished to do so, subject to the following conditions:
ansond 1:5d332fa199ce 8 *
ansond 1:5d332fa199ce 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 1:5d332fa199ce 10 * substantial portions of the Software.
ansond 1:5d332fa199ce 11 *
ansond 1:5d332fa199ce 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 1:5d332fa199ce 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 1:5d332fa199ce 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 1:5d332fa199ce 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 1:5d332fa199ce 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 1:5d332fa199ce 17 */
ansond 1:5d332fa199ce 18
ansond 1:5d332fa199ce 19 #ifndef _RESOURCE_FACTORY_H_
ansond 1:5d332fa199ce 20 #define _RESOURCE_FACTORY_H_
ansond 1:5d332fa199ce 21
ansond 135:7f3f963cd159 22 // BaseClass support
ansond 135:7f3f963cd159 23 #include "BaseClass.h"
ansond 2:4d81c828b230 24
ansond 6:9a4085eeac52 25 // Resource support
ansond 6:9a4085eeac52 26 #include "Resource.h"
ansond 6:9a4085eeac52 27
ansond 135:7f3f963cd159 28 class ResourceFactory : public BaseClass {
ansond 7:36ec6469949e 29 protected:
ansond 26:791d22d43cb4 30 Resource *m_list[NUM_RESOURCES];
ansond 26:791d22d43cb4 31 int m_count;
ansond 1:5d332fa199ce 32
ansond 1:5d332fa199ce 33 public:
ansond 192:54b758a8eaaa 34 ResourceFactory(Logger *logger,void *endpoint);
ansond 1:5d332fa199ce 35 virtual ~ResourceFactory();
ansond 135:7f3f963cd159 36
ansond 7:36ec6469949e 37 virtual void createResources(char *endpoint_name);
ansond 7:36ec6469949e 38 char *getResourceValue(char *name);
ansond 21:cfdaee0a2b50 39 bool setResourceValue(char *name, char *value);
ansond 25:2a001b4f7024 40 int numResources();
ansond 25:2a001b4f7024 41 Resource *getResource(int index);
ansond 6:9a4085eeac52 42
ansond 7:36ec6469949e 43 protected:
ansond 40:eae89a487d86 44 virtual void createResource(char *endpoint_name,char *name,char *value,void *cb);
ansond 8:d7ea38b0e131 45 virtual void createResource(char *name,char *value);
ansond 21:cfdaee0a2b50 46 void *getCallbackPointer(char *name);
ansond 1:5d332fa199ce 47 };
ansond 1:5d332fa199ce 48
ansond 1:5d332fa199ce 49
ansond 1:5d332fa199ce 50 #endif // _RESOURCE_FACTORY_H_