server_socket.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 /*
3  * @brief server_socket implements a server socket connection.
4  *
5  * Copyright (C) 2021 Ing.-Buero Dr. Michael Lehning, Hildesheim
6  * Copyright (C) 2021 SICK AG, Waldkirch
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  * All rights reserved.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions are met:
24  *
25  * * Redistributions of source code must retain the above copyright
26  * notice, this list of conditions and the following disclaimer.
27  * * Redistributions in binary form must reproduce the above copyright
28  * notice, this list of conditions and the following disclaimer in the
29  * documentation and/or other materials provided with the distribution.
30  * * Neither the name of SICK AG nor the names of its
31  * contributors may be used to endorse or promote products derived from
32  * this software without specific prior written permission
33  * * Neither the name of Ing.-Buero Dr. Michael Lehning nor the names of its
34  * contributors may be used to endorse or promote products derived from
35  * this software without specific prior written permission
36  *
37  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
38  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
40  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
41  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
42  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
43  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
44  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
45  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
47  * POSSIBILITY OF SUCH DAMAGE.
48  *
49  * Authors:
50  * Michael Lehning <michael.lehning@lehning.de>
51  *
52  * Copyright 2021 SICK AG
53  * Copyright 2021 Ing.-Buero Dr. Michael Lehning
54  *
55  */
56 #ifndef __SERVER_SOCKET_H_INCLUDED
57 #define __SERVER_SOCKET_H_INCLUDED
58 
59 #include <stdint.h>
60 
61 #ifndef _MSC_VER
62  #include <fcntl.h>
63  #include <unistd.h>
64  #include <sys/types.h>
65  #include <sys/stat.h>
66  #include <sys/socket.h>
67  #include <netinet/in.h>
68  #include <sys/mman.h>
69  #include <arpa/inet.h>
70  typedef int32_t socket_t;
71  #define INVALID_SOCKET (-1)
72 #else
73  //#include <windows.h>
74  #include <winsock2.h>
75  typedef SOCKET socket_t;
76 #endif
77 
78 namespace sick_scan_xd
79 {
84  {
85  public:
86 
90  ServerSocket();
91 
95  virtual ~ServerSocket();
96 
101  virtual bool open(int tcp_port, bool bTcpAnyHost = false);
102 
107  virtual bool connect();
108 
113  virtual int read(int num_bytes, std::vector<uint8_t>& out_buffer, bool read_blocking = true);
114 
119  virtual bool read(int num_bytes, uint8_t* out_buffer, bool read_blocking = true);
120 
125  virtual bool write(const uint8_t* buffer, int num_bytes, int num_retries_on_error = 1);
126 
130  virtual void close(void);
131 
135  virtual bool is_open(void);
136 
137  // virtual socket_t& listenSocket(void) { return m_tListenSocket; }
138  virtual socket_t& connectedSocket(void) { return m_tConnectedSocket; }
139 
140  protected:
141 
145 
146  }; // class ServerSocket
147 
148 } // namespace sick_scan_xd
149 #endif // __SERVER_SOCKET_H_INCLUDED
SOCKET
int SOCKET
Definition: udp_sockets.h:81
sick_scan_xd::ServerSocket::m_tConnectedSocket
socket_t m_tConnectedSocket
Definition: server_socket.h:144
socket_t
int32_t socket_t
Definition: server_socket.h:70
sick_scan_xd::ServerSocket::~ServerSocket
virtual ~ServerSocket()
Definition: server_socket.cpp:99
sick_scan_xd::ServerSocket::open
virtual bool open(int tcp_port, bool bTcpAnyHost=false)
Definition: server_socket.cpp:107
sick_scan_xd::ServerSocket::is_open
virtual bool is_open(void)
Definition: server_socket.cpp:344
sick_scan_xd
Definition: abstract_parser.cpp:65
sick_scan_xd::ServerSocket::m_tListenSocket
socket_t m_tListenSocket
Definition: server_socket.h:143
sick_scan_xd::ServerSocket::write
virtual bool write(const uint8_t *buffer, int num_bytes, int num_retries_on_error=1)
Definition: server_socket.cpp:277
test_server.tcp_port
int tcp_port
Definition: test_server.py:204
sick_scan_xd::ServerSocket::connectedSocket
virtual socket_t & connectedSocket(void)
Definition: server_socket.h:138
sick_scan_xd::ServerSocket::m_iListenPortNumber
int m_iListenPortNumber
Definition: server_socket.h:142
sick_scan_xd::ServerSocket::close
virtual void close(void)
Definition: server_socket.cpp:325
unistd.h
sick_scan_base.h
sick_scan_xd::ServerSocket::connect
virtual bool connect()
Definition: server_socket.cpp:159
sick_scan_xd::ServerSocket::read
virtual int read(int num_bytes, std::vector< uint8_t > &out_buffer, bool read_blocking=true)
Definition: server_socket.cpp:197
sick_scan_xd::ServerSocket
Definition: server_socket.h:83
sick_scan_xd::ServerSocket::ServerSocket
ServerSocket()
Definition: server_socket.cpp:92


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:10