Official reference client implementation for Cumulocity SmartREST on u-blox C027.

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

operation/OperationExecutor.h

Committer:
xinlei
Date:
2015-04-13
Revision:
93:0acd11870c6a
Parent:
82:ca7430f50b2b

File content as of revision 93:0acd11870c6a:

#ifndef OPERATIONEXECUTOR_H
#define OPERATIONEXECUTOR_H

#include "AbstractSmartRest.h"
#include "SmartRestTemplate.h"
#include "Operation.h"
#include "ConfigurationSynchronization.h"
#include "DeviceFeedback.h"
#include "LCDDisplay.h"

class OperationExecutor
{
public:
    OperationExecutor(AbstractSmartRest&, SmartRestTemplate&, long&, ConfigurationSynchronization&, LCDDisplay&);
    
    bool init();
    bool executeOperation(ParsedRecord&);
    
protected:
    bool executeRelayStateUpdate(bool relayState);
    bool executeMessageDisplay(const char *message);
    bool executeUpdateConfiguration(const char *config);

private:
    bool _init;
    long& _deviceId;
    SmartRestTemplate& _tpl;
    AbstractSmartRest& _client;
    ConfigurationSynchronization& _configurationSynchronization;
    DeviceFeedback _deviceFeedback;
    LCDDisplay& _lcdDisplay;
};

#endif