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 Mar 14 21:47:58 2014 +0000
Revision:
101:8747b6612e32
Parent:
99:0fa83e641f75
Child:
105:759dee018363
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 91:8732d54328ae 26 void *_instance = NULL;
ansond 91:8732d54328ae 27
ansond 91:8732d54328ae 28 // Blinking Looper
ansond 91:8732d54328ae 29 static void blinking_action(void const *args) {
ansond 91:8732d54328ae 30 if (_instance != NULL) {
ansond 91:8732d54328ae 31 Light *self = (Light *)_instance;
ansond 101:8747b6612e32 32 self->updateDirection();
ansond 91:8732d54328ae 33 while(true) self->blinkLight();
ansond 91:8732d54328ae 34 }
ansond 91:8732d54328ae 35 }
ansond 91:8732d54328ae 36
ansond 0:4c9bfcb3e759 37 // default constructor
ansond 0:4c9bfcb3e759 38 Light::Light(ErrorHandler *error_handler,Transport *transports[NUM_TRANSPORTS],int instance,void *endpoint) {
ansond 0:4c9bfcb3e759 39 this->m_error_handler = error_handler;
ansond 1:5d332fa199ce 40 this->m_resources = ((MBEDEndpoint *)endpoint)->initResourceFactory();
ansond 0:4c9bfcb3e759 41 this->m_endpoint = endpoint;
ansond 28:52b7ca6aacd6 42 this->m_ioc_id = 0;
ansond 101:8747b6612e32 43 this->m_forward = true;
ansond 20:f2dbbd852e08 44 for(int i=0;i<NUM_TRANSPORTS;++i) this->m_transports[i] = transports[i];
ansond 16:fda7dbb8b47a 45 memset(this->m_name,0,LIGHT_NAME_LEN+1);
ansond 0:4c9bfcb3e759 46 sprintf(this->m_name,LIGHT_NAME,instance);
ansond 5:c1c4d511b589 47 this->resources()->createResources(this->getName());
ansond 29:9a99f076129a 48
ansond 91:8732d54328ae 49 // setup the blinking thread
ansond 91:8732d54328ae 50 this->m_blinking_thread = NULL;
ansond 91:8732d54328ae 51 this->m_is_blinking = false;
ansond 91:8732d54328ae 52
ansond 29:9a99f076129a 53 // Setup Philips Light if enabled
ansond 29:9a99f076129a 54 if (PL_ENABLE) this->m_pl = new PhilipsLight(PL_LIGHT_ID,this->m_transports[HTTP_TRANSPORT],this->logger());
ansond 29:9a99f076129a 55 else this->m_pl = NULL;
ansond 9:90fadae5489a 56
ansond 0:4c9bfcb3e759 57 // DEBUG
ansond 29:9a99f076129a 58 if (PL_ENABLE) this->logger()->log("Light name: %s (Philips Light %d)",this->getName(),PL_LIGHT_ID);
ansond 91:8732d54328ae 59 else this->logger()->log("Light name: %s", this->getName());
ansond 92:330746c526b7 60
ansond 91:8732d54328ae 61 // we are activated
ansond 91:8732d54328ae 62 _instance = (void *)this;
ansond 0:4c9bfcb3e759 63 }
ansond 0:4c9bfcb3e759 64
ansond 9:90fadae5489a 65 // destructor
ansond 9:90fadae5489a 66 Light::~Light() {
ansond 47:fa96ddc36f04 67 if (this->m_resources != NULL) delete this->m_resources;
ansond 47:fa96ddc36f04 68 if (this->m_dimmer_action != NULL) delete this->m_dimmer_action;
ansond 47:fa96ddc36f04 69 if (this->m_switch_action != NULL) delete this->m_switch_action;
ansond 47:fa96ddc36f04 70 if (this->m_pl != NULL) delete this->m_pl;
ansond 91:8732d54328ae 71 this->stopBlinkingThread();
ansond 0:4c9bfcb3e759 72 }
ansond 0:4c9bfcb3e759 73
ansond 92:330746c526b7 74 // initialize the light
ansond 92:330746c526b7 75 void Light::initLight() {
ansond 92:330746c526b7 76 this->m_current_state = LIGHT_DEFAULT_STATE;
ansond 92:330746c526b7 77 this->m_last_state = this->m_current_state;
ansond 92:330746c526b7 78 }
ansond 92:330746c526b7 79
ansond 21:cfdaee0a2b50 80 // get the resource factory
ansond 21:cfdaee0a2b50 81 ResourceFactory *Light::getResourceFactory() { return this->m_resources; }
ansond 21:cfdaee0a2b50 82
ansond 29:9a99f076129a 83 // get the Philips light
ansond 29:9a99f076129a 84 PhilipsLight *Light::pl() { return this->m_pl; }
ansond 29:9a99f076129a 85
ansond 9:90fadae5489a 86 // set the dimmer action
ansond 9:90fadae5489a 87 void Light::setDimmerAction(void *dimmer_action) { this->m_dimmer_action = dimmer_action; }
ansond 9:90fadae5489a 88
ansond 9:90fadae5489a 89 // set the switch actino
ansond 9:90fadae5489a 90 void Light::setSwitchAction(void *switch_action) {this->m_switch_action = switch_action; }
ansond 9:90fadae5489a 91
ansond 9:90fadae5489a 92 // get the dimmer action
ansond 9:90fadae5489a 93 void *Light::getDimmerAction() { return this->m_dimmer_action; }
ansond 9:90fadae5489a 94
ansond 9:90fadae5489a 95 // get the switch action
ansond 9:90fadae5489a 96 void *Light::getSwitchAction() { return this->m_switch_action; }
ansond 9:90fadae5489a 97
ansond 0:4c9bfcb3e759 98 // get the requested transport
ansond 0:4c9bfcb3e759 99 Transport *Light::getTransport(int index) { return this->m_transports[index]; }
ansond 0:4c9bfcb3e759 100
ansond 0:4c9bfcb3e759 101 // get the light name
ansond 0:4c9bfcb3e759 102 char *Light::getName() { return this->m_name; }
ansond 1:5d332fa199ce 103
ansond 0:4c9bfcb3e759 104 // get the error handler
ansond 0:4c9bfcb3e759 105 ErrorHandler *Light::logger() { return this->m_error_handler; }
ansond 0:4c9bfcb3e759 106
ansond 1:5d332fa199ce 107 // get the resources factory
ansond 1:5d332fa199ce 108 ResourceFactory *Light::resources() { return this->m_resources; }
ansond 91:8732d54328ae 109
ansond 29:9a99f076129a 110 // turn ON
ansond 91:8732d54328ae 111 void Light::on() { this->m_current_state = 1; this->manageBlinkingThread(); if (PL_ENABLE && this->pl() != NULL) this->pl()->on(); }
ansond 9:90fadae5489a 112
ansond 29:9a99f076129a 113 // turn OFF
ansond 91:8732d54328ae 114 void Light::off() { this->m_current_state = 0; this->manageBlinkingThread(); if (PL_ENABLE && this->pl() != NULL) this->pl()->off(); }
ansond 91:8732d54328ae 115
ansond 91:8732d54328ae 116 // initiate blinking
ansond 91:8732d54328ae 117 void Light::blink() {
ansond 91:8732d54328ae 118 this->m_last_state = this->m_current_state;
ansond 91:8732d54328ae 119 this->startBlinkingThread();
ansond 91:8732d54328ae 120 }
ansond 91:8732d54328ae 121
ansond 91:8732d54328ae 122 // manage the blinking thread
ansond 91:8732d54328ae 123 void Light::manageBlinkingThread() {
ansond 91:8732d54328ae 124 if (this->m_is_blinking == false) this->stopBlinkingThread();
ansond 91:8732d54328ae 125 this->m_is_blinking = false;
ansond 91:8732d54328ae 126 }
ansond 91:8732d54328ae 127
ansond 91:8732d54328ae 128 // stop blinking
ansond 91:8732d54328ae 129 void Light::stopBlinking() {
ansond 91:8732d54328ae 130 this->m_is_blinking = false;
ansond 91:8732d54328ae 131 if (this->m_last_state == 1) this->on();
ansond 91:8732d54328ae 132 if (this->m_last_state == 0) this->off();
ansond 91:8732d54328ae 133 this->m_current_state = this->m_last_state;
ansond 91:8732d54328ae 134 }
ansond 91:8732d54328ae 135
ansond 91:8732d54328ae 136 // start blinking thread
ansond 91:8732d54328ae 137 void Light::startBlinkingThread() {
ansond 91:8732d54328ae 138 if (this->m_blinking_thread == NULL)
ansond 91:8732d54328ae 139 this->m_blinking_thread = new Thread(blinking_action);
ansond 91:8732d54328ae 140 }
ansond 91:8732d54328ae 141
ansond 91:8732d54328ae 142 // stop blinking thread
ansond 91:8732d54328ae 143 void Light::stopBlinkingThread() {
ansond 91:8732d54328ae 144 if (this->m_blinking_thread != NULL) {
ansond 91:8732d54328ae 145 this->m_blinking_thread->terminate();
ansond 91:8732d54328ae 146 delete this->m_blinking_thread;
ansond 91:8732d54328ae 147 }
ansond 91:8732d54328ae 148 this->m_blinking_thread = NULL;
ansond 91:8732d54328ae 149 }
ansond 9:90fadae5489a 150
ansond 101:8747b6612e32 151 // update our blinking sequencing to properly mesh with the lights current state
ansond 101:8747b6612e32 152 void Light::updateDirection() {
ansond 101:8747b6612e32 153 this->m_forward = true;
ansond 101:8747b6612e32 154 if (this->m_current_state == 0) this->m_forward = false;
ansond 101:8747b6612e32 155 }
ansond 101:8747b6612e32 156
ansond 87:e9d77e9f9eae 157 // Blink
ansond 91:8732d54328ae 158 void Light::blinkLight() {
ansond 91:8732d54328ae 159 this->m_is_blinking = true;
ansond 101:8747b6612e32 160 if (this->m_forward) this->on(); else this->off();
ansond 101:8747b6612e32 161 if (PL_ENABLE && this->pl() != NULL) { if (this->m_forward) this->pl()->on(); else this->pl()->off(); }
ansond 98:3ea8058f4c54 162 wait_ms(LIGHT_BLINK_WAIT_MS);
ansond 91:8732d54328ae 163 this->m_is_blinking = true;
ansond 101:8747b6612e32 164 if (this->m_forward) this->off(); else this->on();
ansond 101:8747b6612e32 165 if (PL_ENABLE && this->pl() != NULL) { if (this->m_forward) this->pl()->off(); else this->pl()->on(); }
ansond 98:3ea8058f4c54 166 wait_ms(LIGHT_BLINK_WAIT_MS);
ansond 91:8732d54328ae 167 }
ansond 91:8732d54328ae 168
ansond 29:9a99f076129a 169 // dim
ansond 32:56a11a9a35a2 170 void Light::dim(int value) { if (PL_ENABLE && this->pl() != NULL) this->pl()->dim(value); }
ansond 9:90fadae5489a 171
ansond 28:52b7ca6aacd6 172 // set the IOC ID
ansond 28:52b7ca6aacd6 173 void Light::setIOCID(int ioc_id) { this->m_ioc_id = ioc_id; }
ansond 28:52b7ca6aacd6 174
ansond 28:52b7ca6aacd6 175 // get the IOC ID
ansond 28:52b7ca6aacd6 176 int Light::getIOCID() { return this->m_ioc_id; }
ansond 28:52b7ca6aacd6 177
ansond 28:52b7ca6aacd6 178
ansond 0:4c9bfcb3e759 179
ansond 0:4c9bfcb3e759 180