fort Socket

Fork of Socket by mbed official

Committer:
emilmont
Date:
Fri Jul 27 13:58:53 2012 +0000
Revision:
6:cd2e5559786d
Parent:
5:300e7ad2dc1d
Child:
10:d24738f4ef99
thread safe timeouts

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 3:e6474399e057 1 /* Copyright (C) 2012 mbed.org, MIT License
emilmont 3:e6474399e057 2 *
emilmont 3:e6474399e057 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
emilmont 3:e6474399e057 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
emilmont 3:e6474399e057 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
emilmont 3:e6474399e057 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
emilmont 3:e6474399e057 7 * furnished to do so, subject to the following conditions:
emilmont 3:e6474399e057 8 *
emilmont 3:e6474399e057 9 * The above copyright notice and this permission notice shall be included in all copies or
emilmont 3:e6474399e057 10 * substantial portions of the Software.
emilmont 3:e6474399e057 11 *
emilmont 3:e6474399e057 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
emilmont 3:e6474399e057 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
emilmont 3:e6474399e057 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
emilmont 3:e6474399e057 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
emilmont 3:e6474399e057 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
emilmont 3:e6474399e057 17 */
emilmont 3:e6474399e057 18 #include "Socket/Socket.h"
emilmont 3:e6474399e057 19 #include <cstring>
emilmont 3:e6474399e057 20
emilmont 3:e6474399e057 21 using std::memset;
emilmont 3:e6474399e057 22
emilmont 3:e6474399e057 23 Socket::Socket() : _sock_fd(-1) {
emilmont 3:e6474399e057 24
emilmont 3:e6474399e057 25 }
emilmont 3:e6474399e057 26
emilmont 5:300e7ad2dc1d 27 int Socket::init_socket(int type) {
emilmont 3:e6474399e057 28 if (_sock_fd != -1)
emilmont 3:e6474399e057 29 return -1;
emilmont 3:e6474399e057 30
emilmont 3:e6474399e057 31 int fd = lwip_socket(AF_INET, type, 0);
emilmont 3:e6474399e057 32 if (fd < 0)
emilmont 3:e6474399e057 33 return -1;
emilmont 3:e6474399e057 34
emilmont 3:e6474399e057 35 _sock_fd = fd;
emilmont 3:e6474399e057 36 return 0;
emilmont 3:e6474399e057 37 }
emilmont 3:e6474399e057 38
emilmont 6:cd2e5559786d 39 int Socket::select(struct timeval *timeout, bool read, bool write) {
emilmont 6:cd2e5559786d 40 if ((timeout->tv_sec == 0) && (timeout->tv_usec == 0))
emilmont 3:e6474399e057 41 return 0;
emilmont 3:e6474399e057 42
emilmont 6:cd2e5559786d 43 fd_set fdSet;
emilmont 6:cd2e5559786d 44 FD_ZERO(&fdSet);
emilmont 6:cd2e5559786d 45 FD_SET(_sock_fd, &fdSet);
emilmont 3:e6474399e057 46
emilmont 6:cd2e5559786d 47 fd_set* readset = (read ) ? (&fdSet) : (NULL);
emilmont 6:cd2e5559786d 48 fd_set* writeset = (write) ? (&fdSet) : (NULL);
emilmont 6:cd2e5559786d 49
emilmont 6:cd2e5559786d 50 int ret = lwip_select(FD_SETSIZE, readset, writeset, NULL, timeout);
emilmont 6:cd2e5559786d 51 return (ret <= 0 || !FD_ISSET(_sock_fd, &fdSet)) ? (-1) : (0);
emilmont 3:e6474399e057 52 }
emilmont 3:e6474399e057 53
emilmont 6:cd2e5559786d 54 int Socket::wait_readable(TimeInterval& timeout) {
emilmont 6:cd2e5559786d 55 return select(&timeout._time, true, false);
emilmont 3:e6474399e057 56 }
emilmont 3:e6474399e057 57
emilmont 6:cd2e5559786d 58 int Socket::wait_writable(TimeInterval& timeout) {
emilmont 6:cd2e5559786d 59 return select(&timeout._time, false, true);
emilmont 3:e6474399e057 60 }
emilmont 3:e6474399e057 61
emilmont 3:e6474399e057 62 int Socket::close() {
emilmont 3:e6474399e057 63 if (_sock_fd < 0)
emilmont 3:e6474399e057 64 return -1;
emilmont 3:e6474399e057 65
emilmont 3:e6474399e057 66 lwip_close(_sock_fd);
emilmont 3:e6474399e057 67 _sock_fd = -1;
emilmont 3:e6474399e057 68
emilmont 3:e6474399e057 69 return 0;
emilmont 3:e6474399e057 70 }
emilmont 6:cd2e5559786d 71
emilmont 6:cd2e5559786d 72 TimeInterval::TimeInterval(int ms) {
emilmont 6:cd2e5559786d 73 _time.tv_sec = ms / 1000;
emilmont 6:cd2e5559786d 74 _time.tv_usec = (ms - (_time.tv_sec * 1000)) * 1000;
emilmont 6:cd2e5559786d 75 }