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 Feb 28 04:56:16 2014 +0000
Revision:
29:9a99f076129a
Parent:
28:52b7ca6aacd6
Child:
32:56a11a9a35a2
updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 0:4c9bfcb3e759 1 /* Copyright C2013 Doug Anson, MIT License
ansond 0:4c9bfcb3e759 2 *
ansond 0:4c9bfcb3e759 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 0:4c9bfcb3e759 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 0:4c9bfcb3e759 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 0:4c9bfcb3e759 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 0:4c9bfcb3e759 7 * furnished to do so, subject to the following conditions:
ansond 0:4c9bfcb3e759 8 *
ansond 0:4c9bfcb3e759 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 0:4c9bfcb3e759 10 * substantial portions of the Software.
ansond 0:4c9bfcb3e759 11 *
ansond 0:4c9bfcb3e759 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 0:4c9bfcb3e759 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 0:4c9bfcb3e759 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 0:4c9bfcb3e759 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 0:4c9bfcb3e759 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 0:4c9bfcb3e759 17 */
ansond 0:4c9bfcb3e759 18
ansond 0:4c9bfcb3e759 19 #include "Light.h"
ansond 1:5d332fa199ce 20 #include "MBEDEndpoint.h"
ansond 0:4c9bfcb3e759 21
ansond 9:90fadae5489a 22 // include the relevant action support
ansond 9:90fadae5489a 23 #include "LightDimmerAction.h"
ansond 9:90fadae5489a 24 #include "LightSwitchAction.h"
ansond 9:90fadae5489a 25
ansond 0:4c9bfcb3e759 26 // default constructor
ansond 0:4c9bfcb3e759 27 Light::Light(ErrorHandler *error_handler,Transport *transports[NUM_TRANSPORTS],int instance,void *endpoint) {
ansond 0:4c9bfcb3e759 28 this->m_error_handler = error_handler;
ansond 1:5d332fa199ce 29 this->m_resources = ((MBEDEndpoint *)endpoint)->initResourceFactory();
ansond 0:4c9bfcb3e759 30 this->m_endpoint = endpoint;
ansond 28:52b7ca6aacd6 31 this->m_ioc_id = 0;
ansond 20:f2dbbd852e08 32 for(int i=0;i<NUM_TRANSPORTS;++i) this->m_transports[i] = transports[i];
ansond 16:fda7dbb8b47a 33 memset(this->m_name,0,LIGHT_NAME_LEN+1);
ansond 0:4c9bfcb3e759 34 sprintf(this->m_name,LIGHT_NAME,instance);
ansond 5:c1c4d511b589 35 this->resources()->createResources(this->getName());
ansond 29:9a99f076129a 36
ansond 29:9a99f076129a 37 // Setup Philips Light if enabled
ansond 29:9a99f076129a 38 if (PL_ENABLE) this->m_pl = new PhilipsLight(PL_LIGHT_ID,this->m_transports[HTTP_TRANSPORT],this->logger());
ansond 29:9a99f076129a 39 else this->m_pl = NULL;
ansond 9:90fadae5489a 40
ansond 0:4c9bfcb3e759 41 // DEBUG
ansond 29:9a99f076129a 42 if (PL_ENABLE) this->logger()->log("Light name: %s (Philips Light %d)",this->getName(),PL_LIGHT_ID);
ansond 29:9a99f076129a 43 else this->logger()->log("Light name: %s", this->getName());
ansond 0:4c9bfcb3e759 44 }
ansond 0:4c9bfcb3e759 45
ansond 9:90fadae5489a 46 // destructor
ansond 9:90fadae5489a 47 Light::~Light() {
ansond 9:90fadae5489a 48 if (this->m_resources != NULL) delete this->m_resources;
ansond 26:791d22d43cb4 49 if (this->m_dimmer_action != NULL) delete this->m_dimmer_action;
ansond 26:791d22d43cb4 50 if (this->m_switch_action != NULL) delete this->m_switch_action;
ansond 0:4c9bfcb3e759 51 }
ansond 0:4c9bfcb3e759 52
ansond 21:cfdaee0a2b50 53 // get the resource factory
ansond 21:cfdaee0a2b50 54 ResourceFactory *Light::getResourceFactory() { return this->m_resources; }
ansond 21:cfdaee0a2b50 55
ansond 29:9a99f076129a 56 // get the Philips light
ansond 29:9a99f076129a 57 PhilipsLight *Light::pl() { return this->m_pl; }
ansond 29:9a99f076129a 58
ansond 9:90fadae5489a 59 // set the dimmer action
ansond 9:90fadae5489a 60 void Light::setDimmerAction(void *dimmer_action) { this->m_dimmer_action = dimmer_action; }
ansond 9:90fadae5489a 61
ansond 9:90fadae5489a 62 // set the switch actino
ansond 9:90fadae5489a 63 void Light::setSwitchAction(void *switch_action) {this->m_switch_action = switch_action; }
ansond 9:90fadae5489a 64
ansond 9:90fadae5489a 65 // get the dimmer action
ansond 9:90fadae5489a 66 void *Light::getDimmerAction() { return this->m_dimmer_action; }
ansond 9:90fadae5489a 67
ansond 9:90fadae5489a 68 // get the switch action
ansond 9:90fadae5489a 69 void *Light::getSwitchAction() { return this->m_switch_action; }
ansond 9:90fadae5489a 70
ansond 0:4c9bfcb3e759 71 // get the requested transport
ansond 0:4c9bfcb3e759 72 Transport *Light::getTransport(int index) { return this->m_transports[index]; }
ansond 0:4c9bfcb3e759 73
ansond 0:4c9bfcb3e759 74 // get the light name
ansond 0:4c9bfcb3e759 75 char *Light::getName() { return this->m_name; }
ansond 1:5d332fa199ce 76
ansond 0:4c9bfcb3e759 77 // get the error handler
ansond 0:4c9bfcb3e759 78 ErrorHandler *Light::logger() { return this->m_error_handler; }
ansond 0:4c9bfcb3e759 79
ansond 1:5d332fa199ce 80 // get the resources factory
ansond 1:5d332fa199ce 81 ResourceFactory *Light::resources() { return this->m_resources; }
ansond 1:5d332fa199ce 82
ansond 29:9a99f076129a 83 // turn ON
ansond 29:9a99f076129a 84 void Light::on() { if (PL_ENABLE && this->pl() != NULL) this->pl()->on(); }
ansond 9:90fadae5489a 85
ansond 29:9a99f076129a 86 // turn OFF
ansond 29:9a99f076129a 87 void Light::off() { if (PL_ENABLE && this->pl() != NULL) this->pl()->off(); }
ansond 9:90fadae5489a 88
ansond 29:9a99f076129a 89 // dim
ansond 29:9a99f076129a 90 void Light::dim(int value) { if (PL_ENABLE && this->pl() != NULL) this->pl()->dim(value);}
ansond 9:90fadae5489a 91
ansond 28:52b7ca6aacd6 92 // set the IOC ID
ansond 28:52b7ca6aacd6 93 void Light::setIOCID(int ioc_id) { this->m_ioc_id = ioc_id; }
ansond 28:52b7ca6aacd6 94
ansond 28:52b7ca6aacd6 95 // get the IOC ID
ansond 28:52b7ca6aacd6 96 int Light::getIOCID() { return this->m_ioc_id; }
ansond 28:52b7ca6aacd6 97
ansond 28:52b7ca6aacd6 98
ansond 0:4c9bfcb3e759 99
ansond 0:4c9bfcb3e759 100