mbed Connector Interface simplification API on top of mbed-client

Fork of mbedConnectorInterfaceV3 by Doug Anson

NOTE:

This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!

Committer:
ansond
Date:
Thu Jul 13 18:48:54 2017 +0000
Revision:
122:4072e03884e4
Parent:
54:dfee8691c83a
Child:
126:f37e34daa100
updated with EventQueue resource observer

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 0:1f1f55e73248 1 /**
ansond 0:1f1f55e73248 2 * @file TickerResourceObserver.cpp
ansond 0:1f1f55e73248 3 * @brief mbed CoAP DynamicResource Ticker-based observer (implementation)
ansond 0:1f1f55e73248 4 * @author Doug Anson/Chris Paola
ansond 0:1f1f55e73248 5 * @version 1.0
ansond 0:1f1f55e73248 6 * @see
ansond 0:1f1f55e73248 7 *
ansond 0:1f1f55e73248 8 * Copyright (c) 2014
ansond 0:1f1f55e73248 9 *
ansond 0:1f1f55e73248 10 * Licensed under the Apache License, Version 2.0 (the "License");
ansond 0:1f1f55e73248 11 * you may not use this file except in compliance with the License.
ansond 0:1f1f55e73248 12 * You may obtain a copy of the License at
ansond 0:1f1f55e73248 13 *
ansond 0:1f1f55e73248 14 * http://www.apache.org/licenses/LICENSE-2.0
ansond 0:1f1f55e73248 15 *
ansond 0:1f1f55e73248 16 * Unless required by applicable law or agreed to in writing, software
ansond 0:1f1f55e73248 17 * distributed under the License is distributed on an "AS IS" BASIS,
ansond 0:1f1f55e73248 18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ansond 0:1f1f55e73248 19 * See the License for the specific language governing permissions and
ansond 0:1f1f55e73248 20 * limitations under the License.
ansond 0:1f1f55e73248 21 */
ansond 0:1f1f55e73248 22
ansond 33:1d0b855df5a5 23 // Class support
ansond 31:2507e64fcc42 24 #include "mbed-connector-interface/TickerResourceObserver.h"
ansond 34:a10d65907549 25
ansond 34:a10d65907549 26 #ifdef CONNECTOR_USING_TICKER
ansond 0:1f1f55e73248 27
ansond 0:1f1f55e73248 28 // constructor
ansond 122:4072e03884e4 29 TickerResourceObserver::TickerResourceObserver(DynamicResource *resource,int sleep_time) : ResourceObserver(resource,(int)(sleep_time/1000)) {
ansond 0:1f1f55e73248 30 this->setObserving(false);
ansond 54:dfee8691c83a 31
ansond 0:1f1f55e73248 32 // DEBUG
ansond 122:4072e03884e4 33 this->logger()->log("TickerResourceObserver being used for %s (sleep_time: %d ms)",resource->getFullName().c_str(),sleep_time);
ansond 0:1f1f55e73248 34 }
ansond 0:1f1f55e73248 35
ansond 0:1f1f55e73248 36 // destructor
ansond 0:1f1f55e73248 37 TickerResourceObserver::~TickerResourceObserver() {
ansond 0:1f1f55e73248 38 this->stopObservation();
ansond 0:1f1f55e73248 39 }
ansond 0:1f1f55e73248 40
ansond 122:4072e03884e4 41 // observation task method
ansond 122:4072e03884e4 42 void TickerResourceObserver::observation_task() {
ansond 122:4072e03884e4 43 if (this->isObserving() == true && this->getResource() != NULL) {
ansond 122:4072e03884e4 44 DynamicResource *res = this->getResource();
ansond 122:4072e03884e4 45 if (res != NULL && res->isRegistered() == true) {
ansond 122:4072e03884e4 46 res->observe();
ansond 122:4072e03884e4 47 }
ansond 0:1f1f55e73248 48 }
ansond 0:1f1f55e73248 49 }
ansond 0:1f1f55e73248 50
ansond 0:1f1f55e73248 51 // begin observing...
ansond 0:1f1f55e73248 52 void TickerResourceObserver::beginObservation() {
ansond 0:1f1f55e73248 53 if (this->isObserving() == false) {
ansond 0:1f1f55e73248 54 this->m_ticker.attach(this,&TickerResourceObserver::observationNotifier,(float)this->getSleepTime());
ansond 0:1f1f55e73248 55 this->setObserving(true);
ansond 0:1f1f55e73248 56 }
ansond 0:1f1f55e73248 57 }
ansond 0:1f1f55e73248 58
ansond 0:1f1f55e73248 59 // begin observing...
ansond 0:1f1f55e73248 60 void TickerResourceObserver::stopObservation() {
ansond 0:1f1f55e73248 61 this->setObserving(false);
ansond 34:a10d65907549 62 }
ansond 54:dfee8691c83a 63
ansond 54:dfee8691c83a 64 // halt the underlying observer mechanism
ansond 54:dfee8691c83a 65 void TickerResourceObserver::halt() {
ansond 54:dfee8691c83a 66 this->m_ticker.detach();
ansond 54:dfee8691c83a 67 }
ansond 34:a10d65907549 68
ansond 35:782c99a7a290 69 #endif // CONNECTOR_USING_TICKER