portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

DeviceBootstrap.h

Committer:
ublox
Date:
2014-10-03
Revision:
56:2da813cc2f47
Parent:
52:8f1370084268

File content as of revision 56:2da813cc2f47:

#ifndef DEVICEBOOTSTRAP_H
#define DEVICEBOOTSTRAP_H

#include <stddef.h>
#include "MDM.h"
#include "DeviceIO.h"
#include "SmartRest.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

#define CREDENTIALS_FILE "001_CREDENTIALS"

class DeviceBootstrap
{
public:
    DeviceBootstrap(SmartRest&, MDMSerial&, DeviceIO&, DeviceInfo&);
    
    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:
    SmartRest& _client;
    MDMSerial& _mdm;
    DeviceInfo& _deviceInfo;
    DeviceIO& _io;
    char _username[DEVICE_BOOTSTRAP_CREDENTIALS_LENGTH],                    
         _password[DEVICE_BOOTSTRAP_CREDENTIALS_LENGTH];
};

#endif