custom for >5 resources

Fork of mbedConnectorInterface by Doug Anson

api/Options.h

Committer:
ansond
Date:
2015-02-24
Revision:
19:e2cbaeeea509
Parent:
15:8ada80242804
Child:
42:20c375e74e8e

File content as of revision 19:e2cbaeeea509:

/**
 * @file    Options.h
 * @brief   mbed CoAP Options (immutable OptionsBuilder instance) class header
 * @author  Doug Anson/Chris Paola
 * @version 1.0
 * @see
 *
 * Copyright (c) 2014
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef __OPTIONS_H__
#define __OPTIONS_H__

// Static Resources
#include "StaticResource.h"

// Dynamic Resources
#include "DynamicResource.h"

// include the mbed connector resource list
#include "mbedConnectorInterface.h"

// Vector support
#include <vector>

// Resources list
typedef vector<StaticResource *> StaticResourcesList;
typedef vector<DynamicResource *> DynamicResourcesList;

// WiFi Security types
typedef enum {
    WIFI_WPA_PERSONAL,
    WIFI_WPA2_PERSONAL,
    WIFI_WEP,
    WIFI_NUM_TYPES
} WiFiAuthTypes;

namespace Connector {

/** Options class
 */
class Options
{
public:
    /**
    Default constructor
    */
    Options();

    /**
    Copy constructor
    */
    Options(const Options &opt);

    /**
    Destructor
    */
    virtual ~Options();

    /**
    Get the node lifetime
    */
    char *getLifetime();

    /**
    Get the NSP domain
    */
    string getDomain();

    /**
    Get the node name
    */
    string getEndpointNodename();

    /**
    Get the node type
    */
    string getEndpointType();

    /**
    Get the NSP port number
    */
    int getNSPPortNumber();

    /**
    Get the node radio channel list
    */
    uint32_t getRadioChannelList();

    /**
    Get the NSP read update period
    */
    int getReadUpdatePeriod();

    /**
    Get the NSP address
    */
    uint8_t *getNSPAddress();

    /**
    Get the node MAC address
    */
    uint8_t *getMACAddress();

    /**
    Get the list of static resources
    */
    StaticResourcesList *getStaticResourceList();

    /**
    Get the list of dynamic resources
    */
    DynamicResourcesList *getDynamicResourceList();
    
    /**
    Get the WiFi SSID
    */
    string getWiFiSSID();
    
    /**
    Get the WiFi Auth Type
    */
    WiFiAuthTypes getWiFiAuthType();
    
    /**
    Get the WiFi Auth Key
    */
    string getWiFiAuthKey();
    
    /**
    Get the 802.15.4 Network ID
    */
    string getNetworkID();
    
    /**
    Get the 802.15.4 Radio channel
    */
    uint8_t getRadioChannel();

protected:
    // mDS Resources
    char                *m_lifetime;
    string               m_domain;
    string               m_node_name;
    string               m_endpoint_type;
    int                  m_rd_update_period;
    int                  m_nsp_port;
    uint8_t              m_nsp_address[NSP_IP_ADDRESS_LENGTH];
    
    // WiFi Resources
    string               m_wifi_ssid;
    string               m_wifi_auth_key;
    WiFiAuthTypes        m_wifi_auth_type;
    
    // 802.15.4 Resources
    string               m_network_id;
    uint32_t             m_channel_list;
    uint8_t              m_mac_address[NODE_MAC_ADDRESS_LENGTH];
    uint8_t              m_channel;
    
    // Endpoint Resources
    StaticResourcesList  m_static_resources;
    DynamicResourcesList m_dynamic_resources;
};

} // namespace Connector

#endif // __OPTIONS_H__