mirror of https://github.com/ARMmbed/mbed-os.git
				
				
				
			
		
			
				
	
	
		
			178 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			178 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C++
		
	
	
/* Socket
 | 
						|
 * 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.
 | 
						|
 */
 | 
						|
 | 
						|
#include "UDPSocket.h"
 | 
						|
#include "Timer.h"
 | 
						|
#include "mbed_assert.h"
 | 
						|
 | 
						|
UDPSocket::UDPSocket()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
UDPSocket::~UDPSocket()
 | 
						|
{
 | 
						|
    close();
 | 
						|
}
 | 
						|
 | 
						|
nsapi_protocol_t UDPSocket::get_proto()
 | 
						|
{
 | 
						|
    return NSAPI_UDP;
 | 
						|
}
 | 
						|
 | 
						|
nsapi_error_t UDPSocket::connect(const SocketAddress &address)
 | 
						|
{
 | 
						|
    _remote_peer = address;
 | 
						|
    return NSAPI_ERROR_OK;
 | 
						|
}
 | 
						|
 | 
						|
nsapi_size_or_error_t UDPSocket::sendto(const char *host, uint16_t port, const void *data, nsapi_size_t size)
 | 
						|
{
 | 
						|
    SocketAddress address;
 | 
						|
    nsapi_size_or_error_t err = _stack->gethostbyname(host, &address);
 | 
						|
    if (err) {
 | 
						|
        return NSAPI_ERROR_DNS_FAILURE;
 | 
						|
    }
 | 
						|
 | 
						|
    address.set_port(port);
 | 
						|
 | 
						|
    // sendto is thread safe
 | 
						|
    return sendto(address, data, size);
 | 
						|
}
 | 
						|
 | 
						|
nsapi_size_or_error_t UDPSocket::sendto(const SocketAddress &address, const void *data, nsapi_size_t size)
 | 
						|
{
 | 
						|
    _lock.lock();
 | 
						|
    nsapi_size_or_error_t ret;
 | 
						|
 | 
						|
    _writers++;
 | 
						|
 | 
						|
    while (true) {
 | 
						|
        if (!_socket) {
 | 
						|
            ret = NSAPI_ERROR_NO_SOCKET;
 | 
						|
            break;
 | 
						|
        }
 | 
						|
 | 
						|
        _pending = 0;
 | 
						|
        nsapi_size_or_error_t sent = _stack->socket_sendto(_socket, address, data, size);
 | 
						|
        if ((0 == _timeout) || (NSAPI_ERROR_WOULD_BLOCK != sent)) {
 | 
						|
            ret = sent;
 | 
						|
            break;
 | 
						|
        } else {
 | 
						|
            uint32_t flag;
 | 
						|
 | 
						|
            // Release lock before blocking so other threads
 | 
						|
            // accessing this object aren't blocked
 | 
						|
            _lock.unlock();
 | 
						|
            flag = _event_flag.wait_any(WRITE_FLAG, _timeout);
 | 
						|
            _lock.lock();
 | 
						|
 | 
						|
            if (flag & osFlagsError) {
 | 
						|
                // Timeout break
 | 
						|
                ret = NSAPI_ERROR_WOULD_BLOCK;
 | 
						|
                break;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    _writers--;
 | 
						|
    if (!_socket || !_writers) {
 | 
						|
         _event_flag.set(FINISHED_FLAG);
 | 
						|
    }
 | 
						|
    _lock.unlock();
 | 
						|
    return ret;
 | 
						|
}
 | 
						|
 | 
						|
nsapi_size_or_error_t UDPSocket::send(const void *data, nsapi_size_t size)
 | 
						|
{
 | 
						|
    if (!_remote_peer)
 | 
						|
        return NSAPI_ERROR_NO_ADDRESS;
 | 
						|
    return sendto(_remote_peer, data, size);
 | 
						|
}
 | 
						|
 | 
						|
nsapi_size_or_error_t UDPSocket::recvfrom(SocketAddress *address, void *buffer, nsapi_size_t size)
 | 
						|
{
 | 
						|
    _lock.lock();
 | 
						|
    nsapi_size_or_error_t ret;
 | 
						|
    SocketAddress ignored;
 | 
						|
 | 
						|
    if (!address) {
 | 
						|
        address = &ignored;
 | 
						|
    }
 | 
						|
 | 
						|
    _readers++;
 | 
						|
 | 
						|
    while (true) {
 | 
						|
        if (!_socket) {
 | 
						|
            ret = NSAPI_ERROR_NO_SOCKET;
 | 
						|
            break;
 | 
						|
        }
 | 
						|
 | 
						|
        _pending = 0;
 | 
						|
        nsapi_size_or_error_t recv = _stack->socket_recvfrom(_socket, address, buffer, size);
 | 
						|
 | 
						|
        // Filter incomming packets using connected peer address
 | 
						|
        if (recv >= 0 && _remote_peer && _remote_peer != *address) {
 | 
						|
            continue;
 | 
						|
        }
 | 
						|
 | 
						|
        // Non-blocking sockets always return. Blocking only returns when success or errors other than WOULD_BLOCK
 | 
						|
        if ((0 == _timeout) || (NSAPI_ERROR_WOULD_BLOCK != recv)) {
 | 
						|
            ret = recv;
 | 
						|
            break;
 | 
						|
        } else {
 | 
						|
            uint32_t flag;
 | 
						|
 | 
						|
            // Release lock before blocking so other threads
 | 
						|
            // accessing this object aren't blocked
 | 
						|
            _lock.unlock();
 | 
						|
            flag = _event_flag.wait_any(READ_FLAG, _timeout);
 | 
						|
            _lock.lock();
 | 
						|
 | 
						|
            if (flag & osFlagsError) {
 | 
						|
                // Timeout break
 | 
						|
                ret = NSAPI_ERROR_WOULD_BLOCK;
 | 
						|
                break;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    _readers--;
 | 
						|
    if (!_socket || !_readers) {
 | 
						|
         _event_flag.set(FINISHED_FLAG);
 | 
						|
    }
 | 
						|
 | 
						|
    _lock.unlock();
 | 
						|
    return ret;
 | 
						|
}
 | 
						|
 | 
						|
nsapi_size_or_error_t UDPSocket::recv(void *buffer, nsapi_size_t size)
 | 
						|
{
 | 
						|
    return recvfrom(NULL, buffer, size);
 | 
						|
}
 | 
						|
 | 
						|
Socket *UDPSocket::accept(nsapi_error_t *error)
 | 
						|
{
 | 
						|
    if (error) {
 | 
						|
        *error = NSAPI_ERROR_UNSUPPORTED;
 | 
						|
    }
 | 
						|
    return NULL;
 | 
						|
}
 | 
						|
 | 
						|
nsapi_error_t UDPSocket::listen(int)
 | 
						|
{
 | 
						|
    return NSAPI_ERROR_UNSUPPORTED;
 | 
						|
}
 |