mbed Connector Endpoint interface. This interface permits a mbed endpoint to easily setup MDS resources and emit those resources to an MDS server.

Dependents:   IoT_LED_demo ServoTest uWater_Project hackathon ... more

Committer:
ansond
Date:
Sat Apr 11 17:20:56 2015 +0000
Revision:
38:96d15287b6f9
Child:
40:bb551b9f4522
added ticker resource observer

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 38:96d15287b6f9 1 /**
ansond 38:96d15287b6f9 2 * @file TickerResourceObserver.cpp
ansond 38:96d15287b6f9 3 * @brief mbed CoAP DynamicResource Ticker-based observer (implementation)
ansond 38:96d15287b6f9 4 * @author Doug Anson/Chris Paola
ansond 38:96d15287b6f9 5 * @version 1.0
ansond 38:96d15287b6f9 6 * @see
ansond 38:96d15287b6f9 7 *
ansond 38:96d15287b6f9 8 * Copyright (c) 2014
ansond 38:96d15287b6f9 9 *
ansond 38:96d15287b6f9 10 * Licensed under the Apache License, Version 2.0 (the "License");
ansond 38:96d15287b6f9 11 * you may not use this file except in compliance with the License.
ansond 38:96d15287b6f9 12 * You may obtain a copy of the License at
ansond 38:96d15287b6f9 13 *
ansond 38:96d15287b6f9 14 * http://www.apache.org/licenses/LICENSE-2.0
ansond 38:96d15287b6f9 15 *
ansond 38:96d15287b6f9 16 * Unless required by applicable law or agreed to in writing, software
ansond 38:96d15287b6f9 17 * distributed under the License is distributed on an "AS IS" BASIS,
ansond 38:96d15287b6f9 18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ansond 38:96d15287b6f9 19 * See the License for the specific language governing permissions and
ansond 38:96d15287b6f9 20 * limitations under the License.
ansond 38:96d15287b6f9 21 */
ansond 38:96d15287b6f9 22
ansond 38:96d15287b6f9 23 #include "TickerResourceObserver.h"
ansond 38:96d15287b6f9 24
ansond 38:96d15287b6f9 25 // determines whether the mDS endpoint has been registered or not...
ansond 38:96d15287b6f9 26 extern "C" bool nsdl_endpoint_is_registered(void);
ansond 38:96d15287b6f9 27
ansond 38:96d15287b6f9 28 // constructor
ansond 38:96d15287b6f9 29 TickerResourceObserver::TickerResourceObserver(DynamicResource *resource,uint8_t timer_id,int sleep_time) :
ansond 38:96d15287b6f9 30 ResourceObserver(resource,(int)(sleep_time/1000)), m_ticker_active(false) {
ansond 38:96d15287b6f9 31 }
ansond 38:96d15287b6f9 32
ansond 38:96d15287b6f9 33 // destructor
ansond 38:96d15287b6f9 34 TickerResourceObserver::~TickerResourceObserver() {
ansond 38:96d15287b6f9 35 this->stopObservation();
ansond 38:96d15287b6f9 36 }
ansond 38:96d15287b6f9 37
ansond 38:96d15287b6f9 38 // notifier
ansond 38:96d15287b6f9 39 void TickerResourceObserver::observationNotifier() {
ansond 38:96d15287b6f9 40 if (this->isObserving() == true && this->getResource() != NULL && nsdl_endpoint_is_registered() == true && this->m_ticker_active == true) {
ansond 38:96d15287b6f9 41 std::printf("Calling observe()...\r\n");
ansond 38:96d15287b6f9 42 this->getResource()->observe();
ansond 38:96d15287b6f9 43 }
ansond 38:96d15287b6f9 44 }
ansond 38:96d15287b6f9 45
ansond 38:96d15287b6f9 46 // begin observing...
ansond 38:96d15287b6f9 47 void TickerResourceObserver::beginObservation() {
ansond 38:96d15287b6f9 48 if (this->m_ticker_active == false) {
ansond 38:96d15287b6f9 49 this->m_ticker.attach(this,&TickerResourceObserver::observationNotifier,(float)this->getSleepTime());
ansond 38:96d15287b6f9 50 this->m_ticker_active = true;
ansond 38:96d15287b6f9 51 }
ansond 38:96d15287b6f9 52 }
ansond 38:96d15287b6f9 53
ansond 38:96d15287b6f9 54 // begin observing...
ansond 38:96d15287b6f9 55 void TickerResourceObserver::stopObservation() {
ansond 38:96d15287b6f9 56 this->m_ticker_active = false;
ansond 38:96d15287b6f9 57 }