mirror of https://github.com/ARMmbed/mbed-os.git
				
				
				
			
		
			
				
	
	
		
			235 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			235 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			C++
		
	
	
/* NetworkStack
 | 
						|
 * Copyright (c) 2015 ARM Limited
 | 
						|
 *
 | 
						|
 * 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 NETWORK_INTERFACE_H
 | 
						|
#define NETWORK_INTERFACE_H
 | 
						|
 | 
						|
#include "netsocket/nsapi_types.h"
 | 
						|
#include "netsocket/SocketAddress.h"
 | 
						|
#include "Callback.h"
 | 
						|
 | 
						|
// Predeclared classes
 | 
						|
class NetworkStack;
 | 
						|
class EthInterface;
 | 
						|
class WiFiInterface;
 | 
						|
class MeshInterface;
 | 
						|
class CellularBase;
 | 
						|
class EMACInterface;
 | 
						|
 | 
						|
/** NetworkInterface class
 | 
						|
 *
 | 
						|
 *  Common interface that is shared between network devices
 | 
						|
 *  @addtogroup netsocket
 | 
						|
 */
 | 
						|
class NetworkInterface {
 | 
						|
public:
 | 
						|
 | 
						|
 | 
						|
 | 
						|
    virtual ~NetworkInterface() {};
 | 
						|
 | 
						|
    /** Get the local MAC address
 | 
						|
     *
 | 
						|
     *  Provided MAC address is intended for info or debug purposes and
 | 
						|
     *  may not be provided if the underlying network interface does not
 | 
						|
     *  provide a MAC address
 | 
						|
     *  
 | 
						|
     *  @return         Null-terminated representation of the local MAC address
 | 
						|
     *                  or null if no MAC address is available
 | 
						|
     */
 | 
						|
    virtual const char *get_mac_address();
 | 
						|
 | 
						|
    /** Get the local IP address
 | 
						|
     *
 | 
						|
     *  @return         Null-terminated representation of the local IP address
 | 
						|
     *                  or null if no IP address has been received
 | 
						|
     */
 | 
						|
    virtual const char *get_ip_address();
 | 
						|
 | 
						|
    /** Get the local network mask
 | 
						|
     *
 | 
						|
     *  @return         Null-terminated representation of the local network mask 
 | 
						|
     *                  or null if no network mask has been received
 | 
						|
     */
 | 
						|
    virtual const char *get_netmask();
 | 
						|
 | 
						|
    /** Get the local gateway
 | 
						|
     *
 | 
						|
     *  @return         Null-terminated representation of the local gateway
 | 
						|
     *                  or null if no network mask has been received
 | 
						|
     */
 | 
						|
    virtual const char *get_gateway();
 | 
						|
 | 
						|
    /** Set a static IP address
 | 
						|
     *
 | 
						|
     *  Configures this network interface to use a static IP address.
 | 
						|
     *  Implicitly disables DHCP, which can be enabled in set_dhcp.
 | 
						|
     *  Requires that the network is disconnected.
 | 
						|
     *
 | 
						|
     *  @param ip_address Null-terminated representation of the local IP address
 | 
						|
     *  @param netmask    Null-terminated representation of the local network mask
 | 
						|
     *  @param gateway    Null-terminated representation of the local gateway
 | 
						|
     *  @return           0 on success, negative error code on failure
 | 
						|
     */
 | 
						|
    virtual nsapi_error_t set_network(
 | 
						|
            const char *ip_address, const char *netmask, const char *gateway);
 | 
						|
 | 
						|
    /** Enable or disable DHCP on the network
 | 
						|
     *
 | 
						|
     *  Enables DHCP on connecting the network. Defaults to enabled unless
 | 
						|
     *  a static IP address has been assigned. Requires that the network is
 | 
						|
     *  disconnected.
 | 
						|
     *
 | 
						|
     *  @param dhcp     True to enable DHCP
 | 
						|
     *  @return         0 on success, negative error code on failure
 | 
						|
     */
 | 
						|
    virtual nsapi_error_t set_dhcp(bool dhcp);
 | 
						|
 | 
						|
    /** Start the interface
 | 
						|
     *
 | 
						|
     *  @return     0 on success, negative error code on failure
 | 
						|
     */
 | 
						|
    virtual nsapi_error_t connect() = 0;
 | 
						|
 | 
						|
    /** Stop the interface
 | 
						|
     *
 | 
						|
     *  @return     0 on success, negative error code on failure
 | 
						|
     */
 | 
						|
    virtual nsapi_error_t disconnect() = 0;
 | 
						|
 | 
						|
    /** Translates a hostname to an IP address with specific version
 | 
						|
     *
 | 
						|
     *  The hostname may be either a domain name or an IP address. If the
 | 
						|
     *  hostname is an IP address, no network transactions will be performed.
 | 
						|
     *
 | 
						|
     *  If no stack-specific DNS resolution is provided, the hostname
 | 
						|
     *  will be resolve using a UDP socket on the stack.
 | 
						|
     *
 | 
						|
     *  @param address  Destination for the host SocketAddress
 | 
						|
     *  @param host     Hostname to resolve
 | 
						|
     *  @param version  IP version of address to resolve, NSAPI_UNSPEC indicates
 | 
						|
     *                  version is chosen by the stack (defaults to NSAPI_UNSPEC)
 | 
						|
     *  @return         0 on success, negative error code on failure
 | 
						|
     */
 | 
						|
    virtual nsapi_error_t gethostbyname(const char *host,
 | 
						|
            SocketAddress *address, nsapi_version_t version = NSAPI_UNSPEC);
 | 
						|
 | 
						|
    /** Hostname translation callback (asynchronous)
 | 
						|
     *
 | 
						|
     *  Callback will be called after DNS resolution completes or a failure
 | 
						|
     *  occurs.
 | 
						|
     *
 | 
						|
     *  @param status  0 on success, negative error code on failure
 | 
						|
     *  @param address On success, destination for the host SocketAddress
 | 
						|
     *  @param data    Caller defined data
 | 
						|
     */
 | 
						|
    typedef mbed::Callback<void (nsapi_error_t result, SocketAddress *address, void *data)> hostbyname_cb_t;
 | 
						|
 | 
						|
    /** Translates a hostname to an IP address (asynchronous)
 | 
						|
     *
 | 
						|
     *  The hostname may be either a domain name or an IP address. If the
 | 
						|
     *  hostname is an IP address, no network transactions will be performed.
 | 
						|
     *
 | 
						|
     *  If no stack-specific DNS resolution is provided, the hostname
 | 
						|
     *  will be resolve using a UDP socket on the stack.
 | 
						|
     *
 | 
						|
     *  Call is non-blocking. Result of the DNS operation is returned by the callback.
 | 
						|
     *  If this function returns failure, callback will not be called.
 | 
						|
     *
 | 
						|
     *  @param host     Hostname to resolve
 | 
						|
     *  @param callback Callback that is called for result
 | 
						|
     *  @param data     Caller defined data returned in callback
 | 
						|
     *  @param version  IP version of address to resolve, NSAPI_UNSPEC indicates
 | 
						|
     *                  version is chosen by the stack (defaults to NSAPI_UNSPEC)
 | 
						|
     *  @return         0 on success, negative error code on failure
 | 
						|
     */
 | 
						|
    virtual nsapi_error_t gethostbyname_async(const char *host, hostbyname_cb_t callback, void *data,
 | 
						|
            nsapi_version_t version = NSAPI_UNSPEC);
 | 
						|
 | 
						|
    /** Add a domain name server to list of servers to query
 | 
						|
     *
 | 
						|
     *  @param address  Destination for the host address
 | 
						|
     *  @return         0 on success, negative error code on failure
 | 
						|
     */
 | 
						|
    virtual nsapi_error_t add_dns_server(const SocketAddress &address);
 | 
						|
 | 
						|
    /** Register callback for status reporting
 | 
						|
     *
 | 
						|
     *  The specified status callback function will be called on status changes
 | 
						|
     *  on the network. The parameters on the callback are the event type and
 | 
						|
     *  event-type dependent reason parameter.
 | 
						|
     *
 | 
						|
     *  @param status_cb The callback for status changes
 | 
						|
     */
 | 
						|
    virtual void attach(mbed::Callback<void(nsapi_event_t, intptr_t)> status_cb);
 | 
						|
 | 
						|
    /** Get the connection status
 | 
						|
     *
 | 
						|
     *  @return         The connection status according to ConnectionStatusType
 | 
						|
     */
 | 
						|
    virtual nsapi_connection_status_t get_connection_status() const;
 | 
						|
 | 
						|
    /** Set blocking status of connect() which by default should be blocking
 | 
						|
     *
 | 
						|
     *  @param blocking true if connect is blocking
 | 
						|
     *  @return         0 on success, negative error code on failure
 | 
						|
     */
 | 
						|
    virtual nsapi_error_t set_blocking(bool blocking);
 | 
						|
 | 
						|
    /** Dynamic downcast to an EthInterface */
 | 
						|
    virtual EthInterface *ethInterface() {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /** Dynamic downcast to a WiFiInterface */
 | 
						|
    virtual WiFiInterface *wifiInterface() {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /** Dynamic downcast to a MeshInterface */
 | 
						|
    virtual MeshInterface *meshInterface() {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /** Dynamic downcast to a CellularBase */
 | 
						|
    virtual CellularBase *cellularBase() {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /** Dynamic downcast to an EMACInterface */
 | 
						|
    virtual EMACInterface *emacInterface() {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
protected:
 | 
						|
    friend class Socket;
 | 
						|
    friend class UDPSocket;
 | 
						|
    friend class TCPSocket;
 | 
						|
    friend class TCPServer;
 | 
						|
    friend class SocketAddress;
 | 
						|
    template <typename IF>
 | 
						|
    friend NetworkStack *nsapi_create_stack(IF *iface);
 | 
						|
 | 
						|
    /** Provide access to the NetworkStack object
 | 
						|
     *
 | 
						|
     *  @return The underlying NetworkStack object
 | 
						|
     */
 | 
						|
    virtual NetworkStack *get_stack() = 0;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif
 |