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