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:
Sat Mar 01 17:01:46 2014 +0000
Revision:
47:fa96ddc36f04
Parent:
42:ff05e71c4cb5
Child:
55:63350425d704
updates

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 #include "ResourceFactory.h"
ansond 40:eae89a487d86 20 #include "MBEDEndpoint.h"
ansond 1:5d332fa199ce 21
ansond 1:5d332fa199ce 22 // default constructor
ansond 40:eae89a487d86 23 ResourceFactory::ResourceFactory(ErrorHandler *error_handler,void *endpoint) {
ansond 1:5d332fa199ce 24 this->m_error_handler = error_handler;
ansond 40:eae89a487d86 25 this->m_endpoint = endpoint;
ansond 26:791d22d43cb4 26 this->m_count = 0;
ansond 26:791d22d43cb4 27 for(int i=0;i<NUM_RESOURCES;++i) this->m_list[i] = NULL;
ansond 1:5d332fa199ce 28 }
ansond 1:5d332fa199ce 29
ansond 1:5d332fa199ce 30 // default destructor
ansond 1:5d332fa199ce 31 ResourceFactory::~ResourceFactory() {
ansond 26:791d22d43cb4 32 for(int i=0;i<NUM_RESOURCES;++i) if (this->m_list[i] != NULL) delete this->m_list[i];
ansond 1:5d332fa199ce 33 }
ansond 1:5d332fa199ce 34
ansond 25:2a001b4f7024 35 // get our number of resources
ansond 26:791d22d43cb4 36 int ResourceFactory::numResources() { return this->m_count; }
ansond 25:2a001b4f7024 37
ansond 25:2a001b4f7024 38 // get the ith resource
ansond 47:fa96ddc36f04 39 Resource *ResourceFactory::getResource(int index) { if (index >= 0 && index < NUM_RESOURCES) return this->m_list[index]; return NULL;};
ansond 25:2a001b4f7024 40
ansond 1:5d332fa199ce 41 // get the error handler
ansond 2:4d81c828b230 42 ErrorHandler *ResourceFactory::logger() { return this->m_error_handler; }
ansond 1:5d332fa199ce 43
ansond 1:5d332fa199ce 44 // create resources (base class does nothing)
ansond 4:3176f927618d 45 void ResourceFactory::createResources(char *endpoint_name) { ; }
ansond 6:9a4085eeac52 46
ansond 6:9a4085eeac52 47 // create a resource value
ansond 40:eae89a487d86 48 void ResourceFactory::createResource(char *name,char *value) {
ansond 40:eae89a487d86 49 MBEDEndpoint *endpoint = (MBEDEndpoint *)this->m_endpoint;
ansond 42:ff05e71c4cb5 50 char *ep_name = NULL; if (endpoint != NULL) ep_name = endpoint->getEndpointName();
ansond 42:ff05e71c4cb5 51 this->createResource(ep_name,name,value,NULL);
ansond 40:eae89a487d86 52 }
ansond 40:eae89a487d86 53
ansond 40:eae89a487d86 54 void ResourceFactory::createResource(char *endpoint_name,char *name,char *value,void *cb) {
ansond 40:eae89a487d86 55 this->m_list[this->m_count] = new Resource(this->logger(),endpoint_name,name,value,cb);
ansond 26:791d22d43cb4 56 ++this->m_count;
ansond 6:9a4085eeac52 57 }
ansond 6:9a4085eeac52 58
ansond 6:9a4085eeac52 59 // get a resource value (null in base class)
ansond 6:9a4085eeac52 60 char *ResourceFactory::getResourceValue(char *name) {
ansond 6:9a4085eeac52 61 char *value = NULL;
ansond 6:9a4085eeac52 62 bool found = false;
ansond 6:9a4085eeac52 63
ansond 6:9a4085eeac52 64 // loop through the resource list
ansond 47:fa96ddc36f04 65 for(int i=0;i<this->m_count && !found && name != NULL;++i) {
ansond 26:791d22d43cb4 66 if (strcmp(this->m_list[i]->getName(),name) == 0) {
ansond 6:9a4085eeac52 67 found = true;
ansond 26:791d22d43cb4 68 value = this->m_list[i]->getValue();
ansond 14:d4f8ab1e199a 69 this->logger()->log("Getting Resource: %s Value: %s",name,value);
ansond 6:9a4085eeac52 70 }
ansond 6:9a4085eeac52 71 }
ansond 6:9a4085eeac52 72
ansond 6:9a4085eeac52 73 return value;
ansond 10:62107616fc6c 74 }
ansond 10:62107616fc6c 75
ansond 10:62107616fc6c 76 // set a resource value
ansond 21:cfdaee0a2b50 77 bool ResourceFactory::setResourceValue(char *name, char *value) {
ansond 10:62107616fc6c 78 bool found = false;
ansond 21:cfdaee0a2b50 79 bool set = false;
ansond 10:62107616fc6c 80
ansond 10:62107616fc6c 81 // loop through the resource list
ansond 47:fa96ddc36f04 82 for(int i=0;i<this->m_count && !found && name != NULL && value != NULL;++i) {
ansond 26:791d22d43cb4 83 if (strcmp(this->m_list[i]->getName(),name) == 0) {
ansond 10:62107616fc6c 84 found = true;
ansond 14:d4f8ab1e199a 85 this->logger()->log("Setting Resource: %s Value: %s",name,value);
ansond 26:791d22d43cb4 86 this->m_list[i]->setValue(value);
ansond 21:cfdaee0a2b50 87 set = true;
ansond 10:62107616fc6c 88 }
ansond 10:62107616fc6c 89 }
ansond 21:cfdaee0a2b50 90
ansond 21:cfdaee0a2b50 91 return set;
ansond 6:9a4085eeac52 92 }
ansond 10:62107616fc6c 93
ansond 21:cfdaee0a2b50 94 // get the callback pointer
ansond 21:cfdaee0a2b50 95 void *ResourceFactory::getCallbackPointer(char *name) {
ansond 21:cfdaee0a2b50 96 void *cb = NULL;
ansond 21:cfdaee0a2b50 97 bool found = false;
ansond 21:cfdaee0a2b50 98
ansond 21:cfdaee0a2b50 99 // loop through the resource list
ansond 47:fa96ddc36f04 100 for(int i=0;i<this->m_count && !found && name != NULL;++i) {
ansond 26:791d22d43cb4 101 if (strcmp(this->m_list[i]->getName(),name) == 0) {
ansond 21:cfdaee0a2b50 102 found = true;
ansond 26:791d22d43cb4 103 cb = this->m_list[i]->getCallbackPointer();
ansond 21:cfdaee0a2b50 104 }
ansond 21:cfdaee0a2b50 105 }
ansond 21:cfdaee0a2b50 106
ansond 21:cfdaee0a2b50 107 return cb;
ansond 21:cfdaee0a2b50 108 }
ansond 21:cfdaee0a2b50 109