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