0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-29 10:05:48 +08:00

89 lines
2.1 KiB
C
Raw Normal View History

2016-09-08 23:34:04 +03:00
/**
Lightweight profiler library for c++
Copyright(C) 2016 Sergey Yagovtsev
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program.If not, see <http://www.gnu.org/licenses/>.
**/
#ifndef EASY________SOCKET_________H
#define EASY________SOCKET_________H
#include <stdint.h>
2016-09-14 22:04:15 +03:00
#include "profiler/profiler.h"
2016-09-08 23:34:04 +03:00
#ifndef _WIN32
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
2016-09-09 06:14:34 +03:00
#else
#define WIN32_LEAN_AND_MEAN
#include <winsock2.h>
2016-09-11 18:23:47 +03:00
#include <windows.h>
2016-09-09 06:14:34 +03:00
#include <ws2tcpip.h>
#include <stdlib.h>
2016-09-08 23:34:04 +03:00
#endif
2016-09-14 22:04:15 +03:00
class PROFILER_API EasySocket
2016-09-08 23:34:04 +03:00
{
2016-09-16 22:51:15 +03:00
public:
enum ConnectionState
{
CONNECTION_STATE_UNKNOWN,
CONNECTION_STATE_SUCCESS,
CONNECTION_STATE_DISCONNECTED
};
private:
2016-09-12 22:10:45 +03:00
#ifdef _WIN32
typedef SOCKET socket_t;
#else
typedef int socket_t;
#endif
socket_t m_socket = 0;
socket_t m_replySocket = 0;
2016-09-08 23:34:04 +03:00
uint16_t m_port = 0;
2016-09-12 22:10:45 +03:00
#ifndef _WIN32
2016-09-08 23:34:04 +03:00
struct sockaddr_in serv_addr;
struct hostent *server = nullptr;
2016-09-09 06:14:34 +03:00
#else
struct addrinfo *result = NULL;
struct addrinfo hints;
2016-09-08 23:34:04 +03:00
#endif
2016-09-12 21:28:15 +03:00
2016-09-16 22:51:15 +03:00
ConnectionState m_state = CONNECTION_STATE_UNKNOWN;
2016-09-08 23:34:04 +03:00
public:
EasySocket();
2016-09-09 06:14:34 +03:00
~EasySocket();
2016-09-08 23:34:04 +03:00
2016-09-12 21:28:15 +03:00
int send(const void *buf, size_t nbyte);
int receive(void *buf, size_t nbyte);
int listen(int count=5);
int accept();
int bind(uint16_t portno);
2016-09-08 23:34:04 +03:00
bool setAddress(const char* serv, uint16_t port);
int connect();
2016-09-16 22:51:15 +03:00
void setState(ConnectionState state){m_state=state;}
ConnectionState state() const{return m_state;}
2016-09-08 23:34:04 +03:00
};
#endif // EASY________SOCKET_________H