mirror of https://github.com/ARMmbed/mbed-os.git
161 lines
5.3 KiB
C++
161 lines
5.3 KiB
C++
/* CellularNonIPSocket
|
|
* 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 CELLULARNONIPSOCKET_H
|
|
#define CELLULARNONIPSOCKET_H
|
|
|
|
#include "netsocket/Socket.h"
|
|
#include "rtos/Mutex.h"
|
|
#include "rtos/EventFlags.h"
|
|
#include "Callback.h"
|
|
#include "mbed_toolchain.h"
|
|
#include "ControlPlane_netif.h"
|
|
#include "CellularContext.h"
|
|
|
|
namespace mbed {
|
|
|
|
/** \addtogroup netsocket */
|
|
/** @{*/
|
|
|
|
/** Socket implementation for cellular Non-IP data delivery(NIDD).
|
|
* Relies on Control Plane CIoT EPS optimization feature,
|
|
* implemented in ControlPlane_netif class.
|
|
*/
|
|
class CellularNonIPSocket : public Socket {
|
|
public:
|
|
/** Destroy the socket.
|
|
*
|
|
* @note Closes socket if it's still open.
|
|
*/
|
|
virtual ~CellularNonIPSocket();
|
|
|
|
/** Creates a socket.
|
|
*/
|
|
CellularNonIPSocket();
|
|
|
|
/** Opens a socket on the given cellular context.
|
|
*
|
|
* @param cellular_context Cellular PDP context over which this socket is sending and
|
|
* receiving data. The context has support for providing
|
|
* a control plane interface for data delivery.
|
|
* @return NSAPI_ERROR_OK on success
|
|
* NSAPI_ERROR_PARAMETER otherwise
|
|
*/
|
|
virtual nsapi_error_t open(mbed::CellularContext *cellular_context);
|
|
|
|
/** Opens a socket that will use the given control plane interface for data delivery.
|
|
* Attaches the event as callback to the control plane interface.
|
|
*
|
|
* @param cp_netif Control plane interface for data delivery.
|
|
* @return NSAPI_ERROR_OK on success
|
|
* NSAPI_ERROR_PARAMETER otherwise
|
|
*
|
|
*/
|
|
virtual nsapi_error_t open(mbed::ControlPlane_netif *cp_netif);
|
|
|
|
/** Closes socket
|
|
*
|
|
* @return NSAPI_ERROR_OK on success
|
|
* NSAPI_ERROR_NO_SOCKET otherwise
|
|
*/
|
|
|
|
virtual nsapi_error_t close();
|
|
|
|
/** Send data over a control plane cellular context.
|
|
*
|
|
* By default, send blocks until all data is sent. If socket is set to
|
|
* nonblocking or times out, a partial amount can be written.
|
|
* NSAPI_ERROR_WOULD_BLOCK is returned if no data was written.
|
|
*
|
|
* @param data Buffer of data to be sent.
|
|
* @param size Size of the buffer in bytes.
|
|
* @return Number of sent bytes on success, negative error
|
|
* code on failure.
|
|
*/
|
|
virtual nsapi_size_or_error_t send(const void *data, nsapi_size_t size);
|
|
|
|
/** Receive data from a socket.
|
|
*
|
|
* By default, recv blocks until some data is received. If socket is set to
|
|
* nonblocking or times out, NSAPI_ERROR_WOULD_BLOCK can be returned to
|
|
* indicate no data.
|
|
*
|
|
* @param data Pointer to buffer for received data.
|
|
* @param size Size of the buffer in bytes.
|
|
* @return Number of received bytes on success, negative error
|
|
* code on failure.
|
|
*/
|
|
virtual nsapi_size_or_error_t recv(void *data, nsapi_size_t size);
|
|
|
|
/** @copydoc Socket::set_blocking
|
|
*/
|
|
virtual void set_blocking(bool blocking);
|
|
|
|
/** @copydoc Socket::set_timeout
|
|
*/
|
|
virtual void set_timeout(int timeout);
|
|
|
|
/** @copydoc Socket::sigio
|
|
*/
|
|
virtual void sigio(mbed::Callback<void()> func);
|
|
|
|
/// NOT APPLICABLE
|
|
virtual nsapi_error_t connect(const SocketAddress &address);
|
|
/// NOT APPLICABLE
|
|
virtual Socket *accept(nsapi_error_t *error = NULL);
|
|
/// NOT APPLICABLE
|
|
virtual nsapi_error_t listen(int backlog = 1);
|
|
/// NOT APPLICABLE
|
|
virtual nsapi_error_t setsockopt(int level, int optname, const void *optval, unsigned optlen);
|
|
/// NOT APPLICABLE
|
|
virtual nsapi_error_t getsockopt(int level, int optname, void *optval, unsigned *optlen);
|
|
/// NOT APPLICABLE
|
|
virtual nsapi_error_t getpeername(SocketAddress *address);
|
|
/// NOT APPLICABLE
|
|
virtual nsapi_size_or_error_t sendto(const SocketAddress &address,
|
|
const void *data, nsapi_size_t size);
|
|
/// NOT APPLICABLE
|
|
virtual nsapi_size_or_error_t recvfrom(SocketAddress *address,
|
|
void *data, nsapi_size_t size);
|
|
/// NOT APPLICABLE
|
|
virtual nsapi_error_t bind(const SocketAddress &address);
|
|
|
|
protected:
|
|
virtual void event();
|
|
|
|
uint32_t _timeout;
|
|
mbed::Callback<void()> _event;
|
|
mbed::Callback<void()> _callback;
|
|
rtos::EventFlags _event_flag;
|
|
rtos::Mutex _lock;
|
|
uint8_t _readers;
|
|
uint8_t _writers;
|
|
volatile unsigned _pending;
|
|
|
|
// Event flags
|
|
static const int READ_FLAG = 0x1u;
|
|
static const int WRITE_FLAG = 0x2u;
|
|
static const int FINISHED_FLAG = 0x3u;
|
|
|
|
ControlPlane_netif *_cp_netif;
|
|
bool _opened;
|
|
};
|
|
|
|
/** @}*/
|
|
} // namespace mbed
|
|
|
|
#endif // CELLULARNONIPSOCKET_H
|