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 07:16:47 2014 +0000
Revision:
40:eae89a487d86
Parent:
26:791d22d43cb4
Child:
42:ff05e71c4cb5
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 26:791d22d43cb4 39 Resource *ResourceFactory::getResource(int index) { return this->m_list[index]; };
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 40:eae89a487d86 50 this->createResource(endpoint->getEndpointName(),name,value,NULL);
ansond 40:eae89a487d86 51 }
ansond 40:eae89a487d86 52
ansond 40:eae89a487d86 53 void ResourceFactory::createResource(char *endpoint_name,char *name,char *value,void *cb) {
ansond 40:eae89a487d86 54 this->m_list[this->m_count] = new Resource(this->logger(),endpoint_name,name,value,cb);
ansond 26:791d22d43cb4 55 ++this->m_count;
ansond 6:9a4085eeac52 56 }
ansond 6:9a4085eeac52 57
ansond 6:9a4085eeac52 58 // get a resource value (null in base class)
ansond 6:9a4085eeac52 59 char *ResourceFactory::getResourceValue(char *name) {
ansond 6:9a4085eeac52 60 char *value = NULL;
ansond 6:9a4085eeac52 61 bool found = false;
ansond 6:9a4085eeac52 62
ansond 6:9a4085eeac52 63 // loop through the resource list
ansond 26:791d22d43cb4 64 for(int i=0;i<this->m_count && !found;++i) {
ansond 26:791d22d43cb4 65 if (strcmp(this->m_list[i]->getName(),name) == 0) {
ansond 6:9a4085eeac52 66 found = true;
ansond 26:791d22d43cb4 67 value = this->m_list[i]->getValue();
ansond 14:d4f8ab1e199a 68 this->logger()->log("Getting Resource: %s Value: %s",name,value);
ansond 6:9a4085eeac52 69 }
ansond 6:9a4085eeac52 70 }
ansond 6:9a4085eeac52 71
ansond 6:9a4085eeac52 72 return value;
ansond 10:62107616fc6c 73 }
ansond 10:62107616fc6c 74
ansond 10:62107616fc6c 75 // set a resource value
ansond 21:cfdaee0a2b50 76 bool ResourceFactory::setResourceValue(char *name, char *value) {
ansond 10:62107616fc6c 77 bool found = false;
ansond 21:cfdaee0a2b50 78 bool set = false;
ansond 10:62107616fc6c 79
ansond 10:62107616fc6c 80 // loop through the resource list
ansond 26:791d22d43cb4 81 for(int i=0;i<this->m_count && !found;++i) {
ansond 26:791d22d43cb4 82 if (strcmp(this->m_list[i]->getName(),name) == 0) {
ansond 10:62107616fc6c 83 found = true;
ansond 14:d4f8ab1e199a 84 this->logger()->log("Setting Resource: %s Value: %s",name,value);
ansond 26:791d22d43cb4 85 this->m_list[i]->setValue(value);
ansond 21:cfdaee0a2b50 86 set = true;
ansond 10:62107616fc6c 87 }
ansond 10:62107616fc6c 88 }
ansond 21:cfdaee0a2b50 89
ansond 21:cfdaee0a2b50 90 return set;
ansond 6:9a4085eeac52 91 }
ansond 10:62107616fc6c 92
ansond 21:cfdaee0a2b50 93 // get the callback pointer
ansond 21:cfdaee0a2b50 94 void *ResourceFactory::getCallbackPointer(char *name) {
ansond 21:cfdaee0a2b50 95 void *cb = NULL;
ansond 21:cfdaee0a2b50 96 bool found = false;
ansond 21:cfdaee0a2b50 97
ansond 21:cfdaee0a2b50 98 // loop through the resource list
ansond 26:791d22d43cb4 99 for(int i=0;i<this->m_count && !found;++i) {
ansond 26:791d22d43cb4 100 if (strcmp(this->m_list[i]->getName(),name) == 0) {
ansond 21:cfdaee0a2b50 101 found = true;
ansond 26:791d22d43cb4 102 cb = this->m_list[i]->getCallbackPointer();
ansond 21:cfdaee0a2b50 103 }
ansond 21:cfdaee0a2b50 104 }
ansond 21:cfdaee0a2b50 105
ansond 21:cfdaee0a2b50 106 return cb;
ansond 21:cfdaee0a2b50 107 }
ansond 21:cfdaee0a2b50 108