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

DeviceBootstrap.h

Committer:
vwochnik
Date:
2014-11-30
Revision:
67:c360a2b2c948
Parent:
55:a0f7295ed6b6
Child:
92:48069375dffa

File content as of revision 67:c360a2b2c948:

#ifndef DEVICEBOOTSTRAP_H
#define DEVICEBOOTSTRAP_H

#include <stddef.h>
#include "DeviceIO.h"
#include "DeviceMemory.h"
#include "AbstractSmartRest.h"
#include "DeviceInfo.h"

/** The username used for device bootstrapping. */
#define DEVICE_BOOTSTRAP_USERNAME "management/devicebootstrap"

/** The password used for device bootstrapping. */
#define DEVICE_BOOTSTRAP_PASSWORD "Fhdt1bb1f"

#define DEVICE_BOOTSTRAP_CREDENTIALS_LENGTH 256

class DeviceBootstrap
{
public:
    DeviceBootstrap(AbstractSmartRest&, DeviceIO&, DeviceInfo&, DeviceMemory&);
    
    bool setUpCredentials();
    const char * username();
    const char * password();

protected:
    bool obtainFromStorage();
    bool obtainFromPlatform();

private:
    bool writeToStorage();
    void setCredentials(const char *, const char*, const char*);

private:
    AbstractSmartRest& _client;
    DeviceInfo& _deviceInfo;
    DeviceMemory& _deviceMemory;
    DeviceIO& _io;
    char _username[DEVICE_BOOTSTRAP_CREDENTIALS_LENGTH],                    
         _password[DEVICE_BOOTSTRAP_CREDENTIALS_LENGTH];
};

#endif