Own fork of MbedSmartRest

Dependents:   MbedSmartRestMain MbedSmartRestMain

Fork of MbedSmartRest by Cumulocity Official

MbedClient.cpp

Committer:
xinlei
Date:
2015-03-04
Revision:
17:b3a4b4bdfc59
Parent:
14:56478403e340
Child:
18:16192696c106

File content as of revision 17:b3a4b4bdfc59:

/*
 * MbedClient.cpp
 *
 * Created on: Feb 1, 2013
 * * Authors: Vincent Wochnik <v.wochnik@gmail.com>
 *
 * Copyright (c) 2013 Cumulocity GmbH
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#include <stdlib.h>
#include <string.h>
#include "b64.h"
#include "mbed.h"
#include "MbedClient.h"
#include "logging.h"

#define STATE_INIT 0
#define STATE_IN_REQUEST 1
#define STATE_SENT_ID 2
#define STATE_SENT_DATA 3
#define STATE_REQ_COMPLETE 4
#define STATE_RECVD_RESPONSE 5
#define STATE_INTERNAL_ERROR 6
#define MBCL_DBG(...) aDebug(__VA_ARGS__)
//#define MBCL_DBG(fmt, ...)
#define DNS_ENTRY_DURATION 50

MbedClient::MbedClient(const char* host, uint16_t port, MDMSerial& mdm, uint8_t tries) :
    _host(host),
    _username(NULL),
    _password(NULL),
    _port(port),
    _tries(tries),
    _state(STATE_INIT),
    _isStreamRequest(false),
    _filter(_source),
    _source(_sock),
    _sink(_sock),
    _sock(),
    _mdm(mdm),
    cachedIPValid(0)
{
}

MbedClient::~MbedClient()
{
}

uint8_t MbedClient::setAuthorization(const char* username, const char* password)
{
    if (_state != STATE_INIT)
        return internalError();

    _username = username;
    _password = password;
    MBCL_DBG("\033[32mMbedClient:\033[39m Set authorization to %s:%s\r\n", username, password);
    return CLIENT_OK;
}

uint8_t MbedClient::beginRequest()
{
    if (_state != STATE_INIT)
        return internalError();

    MBCL_DBG("\033[32mMbedClient:\033[39m Beginning SmartREST request.\r\n");
    _source.setTimeout(60000);
    if (!connect())
        return connectionError();

    if (!sendRequestHeader("/s"))
        return connectionError();

    _state = STATE_IN_REQUEST;
    return CLIENT_OK;
}

uint8_t MbedClient::beginStream(const char *uri)
{
    if (_state != STATE_INIT)
        return internalError();

    // set stream request flag to later set the timeout right
    _isStreamRequest = true;

    MBCL_DBG("\033[32mMbedClient:\033[39m Beginning SmartREST request.\r\n");
    _source.setTimeout(60000);
    if (!connect())
        return connectionError();

    if (!sendRequestHeader(uri))
        return connectionError();

    _state = STATE_IN_REQUEST;
    return CLIENT_OK;
}

uint8_t MbedClient::sendIdentifier(const char* identifier)
{
    if (_state != STATE_IN_REQUEST)
        return internalError();

    MBCL_DBG("\033[32mMbedClient:\033[39m Sending template identifier.\r\n");
    if ((identifier != NULL) && (strlen(identifier) != 0)) {
        if ((!send("X-Id: ")) ||
            (!send(identifier)) ||
            (!send("\r\n")))
            return connectionError();
    }
    _state = STATE_SENT_ID;
    return CLIENT_OK;
}

uint8_t MbedClient::sendData(const DataGenerator& generator)
{
    size_t len;
    
    if ((_state != STATE_IN_REQUEST) && (_state != STATE_SENT_ID))
        return internalError();
    
    MBCL_DBG("\033[32mMbedClient:\033[39m Sending request payload.\r\n");
    len = generator.writtenLength();
    if ((!send("Content-Length: ")) ||
        (_sink.write((unsigned long)len) == 0) ||
        (!send("\r\n\r\n")))
        return connectionError();

    if (generator.writeTo(_sink) != len)
        return connectionError();
    _state = STATE_SENT_DATA;
    return CLIENT_OK;
}

uint8_t MbedClient::endRequest()
{
    if ((_state != STATE_IN_REQUEST) &&
        (_state != STATE_SENT_ID) &&
        (_state != STATE_SENT_DATA))
        return internalError();
    
    MBCL_DBG("\033[32mMbedClient:\033[39m Ending request.\r\n");

    if (_state != STATE_SENT_DATA) {
        // send end of headers
        if (!send("\r\n"))
            return connectionError();
    }
    
    if (!_sink.flush())
        return connectionError();
    
    _state = STATE_REQ_COMPLETE;
    return CLIENT_OK;
}

uint8_t MbedClient::awaitResponse()
{
    uint8_t status;

    if (_state != STATE_REQ_COMPLETE)
        return internalError();
    
    MBCL_DBG("\033[32mMbedClient:\033[39m Awaiting response...\r\n");

    status = _filter.readStatus();
    MBCL_DBG("\033[32mMbedClient:\033[39m Status code: %u\r\n", status);

    if ((status != 200) || (!_filter.skipHeaders()))
        return connectionError();

    // set timeout to fifteen minutes if stream request flag set
    if (_isStreamRequest)
        _source.setTimeout(900000);
    
    _state = STATE_RECVD_RESPONSE;
    return CLIENT_OK;
}

AbstractDataSource& MbedClient::receiveData()
{
    return _filter;
}

void MbedClient::stop()
{
    MBCL_DBG("\033[32mMbedClient:\033[39m Resetting client.\r\n");
    MBCL_DBG("\033[32mMbedClient:\033[39m Bytes tramsmitted sofar: %zu\r\n", packetSize);
    _isStreamRequest = false;
    _sock.close();
    _source.reset();
    _sink.reset();
    _filter.reset();
    _state = STATE_INIT;
}

bool MbedClient::connect()
{
    uint8_t tries;

    tries = _tries;
    do {
        if (cachedIPValid == 0) {
            MDMParser::IP ip = _mdm.gethostbyname(_host);
            if (ip == NOIP) 
                continue;
            const unsigned char *c = (const unsigned char*)&ip;
            snprintf(cachedIP, sizeof(cachedIP), "%u.%u.%u.%u", c[3], c[2], c[1], c[0]);
            MBCL_DBG("\033[32mMbedClient:\033[39m Connecting to %s:%u with resolved IP %s\r\n", _host, _port, cachedIP);
        } else {
            MBCL_DBG("\033[32mMbedClient:\033[39m Connecting to %s:%u\r\n", cachedIP, _port);
        }
        if (_sock.connect(cachedIP, _port) >= 0)
            break;
        cachedIPValid = 0;
        _sock.close();
        MBCL_DBG("\033[32mMbedClient:\033[39m Connection attempt failed.\r\n");
    } while (--tries > 0);

    cachedIPValid = (cachedIPValid+1) % DNS_ENTRY_DURATION;
    return (tries > 0);
}

bool MbedClient::send(const char *str)
{
    return (_sink.write(str) == strlen(str));
}

bool MbedClient::sendRequestHeader(const char *uri)
{
    MBCL_DBG("\033[32mMbedClient:\033[39m Sending request header.\r\n");
    if ((!send("POST ")) ||
        (!send(uri)) ||
        (!send(" HTTP/1.0\r\n")) ||
        (!send("Host: ")) ||
        (!send(_host)) ||
        (!send("\r\n")))
        return false;
    
    return sendBasicAuth();
}

bool MbedClient::sendBasicAuth()
{
    size_t ul, pl; unsigned char input[3]; unsigned char output[5];
    int inputOffset = 0;

    // no need to send authorization if not specified
    if ((_username == NULL) || (strlen(_username) == 0) ||
        (_password == NULL) || (strlen(_password) == 0))
        return true;

    if (!send("Authorization: Basic "))
        return false;
        
    ul = strlen(_username);
    pl = strlen(_password);

    for (int i = 0; i < (ul+1+pl); i++) {
        if (i < ul)
            input[inputOffset++] = _username[i];
        else if (i == ul)
            input[inputOffset++] = ':';
        else
            input[inputOffset++] = _password[i-(ul+1)];

        if ((inputOffset == 3) || (i == ul+pl)) {
            b64_encode(input, inputOffset, output, 4);
            output[4] = '\0';
            if (!send((char*)output))
                return false;
            inputOffset = 0;
        }
    }
    
    if (!send("\r\n"))
        return false;
    return true;
}

uint8_t MbedClient::internalError()
{
    MBCL_DBG("\033[32mMbedClient:\033[39m Internal error occurred.\r\n");
    _state = STATE_INTERNAL_ERROR;
    return CLIENT_INTERNAL_ERROR;
}

uint8_t MbedClient::connectionError()
{
    MBCL_DBG("\033[32mMbedClient:\033[39m Connection error occurred.\r\n");
    _state = STATE_INTERNAL_ERROR;
    return CLIENT_CONNECTION_ERROR;
}