You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.0 KiB
78 lines
3.0 KiB
9 years ago
|
/*
|
||
|
Copyright (c) 2013 Martin Sustrik All rights reserved.
|
||
|
|
||
|
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 "fsm.h"
|
||
|
#include "worker.h"
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
#ifndef __PNACL
|
||
|
#include <sys/uio.h>
|
||
|
#else
|
||
|
#include <glibc-compat/sys/uio.h>
|
||
|
#endif
|
||
|
|
||
|
struct nn_usock {
|
||
|
|
||
|
/* State machine base class. */
|
||
|
struct nn_fsm fsm;
|
||
|
int32_t state,s;
|
||
|
struct nn_worker *worker; // The worker thread the usock is associated with
|
||
|
struct nn_worker_fd wfd; // The underlying OS socket and handle that represents it in the poller
|
||
|
struct // Members related to receiving data
|
||
|
{
|
||
|
// The buffer being filled in at the moment
|
||
|
uint8_t *buf;
|
||
|
size_t len;
|
||
|
uint8_t *batch; // Buffer for batch-reading inbound data
|
||
|
size_t batch_len; // Size of the batch buffer
|
||
|
/* Current position in the batch buffer. The data preceding this
|
||
|
position were already received by the user. The data that follow
|
||
|
will be received in the future. */
|
||
|
size_t batch_pos;
|
||
|
/* File descriptor received via SCM_RIGHTS, if any. */
|
||
|
int32_t *pfd;
|
||
|
} in;
|
||
|
struct // Members related to sending data
|
||
|
{
|
||
|
struct msghdr hdr; // msghdr being sent at the moment
|
||
|
// List of buffers being sent at the moment. Referenced from 'hdr'
|
||
|
struct iovec iov [NN_USOCK_MAX_IOVCNT];
|
||
|
} out;
|
||
|
// Asynchronous tasks for the worker
|
||
|
struct nn_worker_task task_connecting;
|
||
|
struct nn_worker_task task_connected;
|
||
|
struct nn_worker_task task_accept;
|
||
|
struct nn_worker_task task_send;
|
||
|
struct nn_worker_task task_recv;
|
||
|
struct nn_worker_task task_stop;
|
||
|
// Events raised by the usock
|
||
|
struct nn_fsm_event event_established;
|
||
|
struct nn_fsm_event event_sent;
|
||
|
struct nn_fsm_event event_received;
|
||
|
struct nn_fsm_event event_error;
|
||
|
// In ACCEPTING state points to the socket being accepted. In BEING_ACCEPTED state points to the listener socket
|
||
|
struct nn_usock *asock;
|
||
|
// Errno remembered in NN_USOCK_ERROR state
|
||
|
int errnum;
|
||
|
};
|