[30] | 1 | // Copyright (c) 2022 by István Váradi
|
---|
| 2 |
|
---|
| 3 | // This file is part of VSCPL, a simple cross-platform utility library
|
---|
| 4 |
|
---|
| 5 | // Redistribution and use in source and binary forms, with or without
|
---|
| 6 | // modification, are permitted provided that the following conditions are met:
|
---|
| 7 |
|
---|
| 8 | // 1. Redistributions of source code must retain the above copyright notice, this
|
---|
| 9 | // list of conditions and the following disclaimer.
|
---|
| 10 | // 2. Redistributions in binary form must reproduce the above copyright notice,
|
---|
| 11 | // this list of conditions and the following disclaimer in the documentation
|
---|
| 12 | // and/or other materials provided with the distribution.
|
---|
| 13 |
|
---|
| 14 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
---|
| 15 | // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
---|
| 16 | // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
---|
| 17 | // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
---|
| 18 | // ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
---|
| 19 | // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
---|
| 20 | // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
---|
| 21 | // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 22 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
---|
| 23 | // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 24 |
|
---|
| 25 | // The views and conclusions contained in the software and documentation are those
|
---|
| 26 | // of the authors and should not be interpreted as representing official policies,
|
---|
| 27 | // either expressed or implied, of the FreeBSD Project.
|
---|
| 28 |
|
---|
| 29 | #pragma once
|
---|
| 30 |
|
---|
| 31 | //------------------------------------------------------------------------------
|
---|
| 32 |
|
---|
| 33 | #include <windows.h>
|
---|
| 34 |
|
---|
| 35 | //------------------------------------------------------------------------------
|
---|
| 36 |
|
---|
| 37 | namespace hu { namespace varadiistvan { namespace scpl { namespace io {
|
---|
| 38 |
|
---|
| 39 | //------------------------------------------------------------------------------
|
---|
| 40 |
|
---|
| 41 | /**
|
---|
| 42 | * An object to access the WSA functions through it. It is a singleton, and its
|
---|
| 43 | * constructor initializes the WSA subsystem, while its destructor cleans it
|
---|
| 44 | * up.
|
---|
| 45 | */
|
---|
| 46 | class WSAInterface
|
---|
| 47 | {
|
---|
| 48 | public:
|
---|
| 49 | /**
|
---|
| 50 | * Get the only instance of this class
|
---|
| 51 | */
|
---|
| 52 | static WSAInterface& get();
|
---|
| 53 |
|
---|
| 54 | private:
|
---|
| 55 | /**
|
---|
| 56 | * Construct the interface.
|
---|
| 57 | */
|
---|
| 58 | WSAInterface();
|
---|
| 59 |
|
---|
| 60 | /**
|
---|
| 61 | * Destroy the interface.
|
---|
| 62 | */
|
---|
| 63 | ~WSAInterface();
|
---|
| 64 |
|
---|
| 65 | public:
|
---|
| 66 | /**
|
---|
| 67 | * Get the invalid socket handle as a HANDLE.
|
---|
| 68 | */
|
---|
| 69 | HANDLE getInvalidSocket();
|
---|
| 70 |
|
---|
| 71 | /**
|
---|
| 72 | * Determine if the given handle represents an invalid socket.
|
---|
| 73 | */
|
---|
| 74 | bool isInvalidSocket(HANDLE handle);
|
---|
| 75 |
|
---|
| 76 | /**
|
---|
| 77 | * Create a socket.
|
---|
| 78 | */
|
---|
| 79 | HANDLE socket(int af, int type, int protocol);
|
---|
| 80 |
|
---|
| 81 | /**
|
---|
| 82 | * Set the given socket into non-blocking mode and make the given event to
|
---|
| 83 | * be triggered by the events in the given event mask
|
---|
| 84 | */
|
---|
| 85 | int eventSelect(HANDLE socket, HANDLE event, long eventMask);
|
---|
| 86 |
|
---|
| 87 | /**
|
---|
| 88 | * Bind the given socket handle to the given address.
|
---|
| 89 | */
|
---|
| 90 | int bind(HANDLE socket, const struct sockaddr* name, int namelen);
|
---|
| 91 |
|
---|
| 92 | /**
|
---|
| 93 | * Start listening on the given socket.
|
---|
| 94 | */
|
---|
| 95 | int listen(HANDLE socket, int backlog = 5);
|
---|
| 96 |
|
---|
| 97 | /**
|
---|
| 98 | * Accept a socket on the given server socket.
|
---|
| 99 | */
|
---|
| 100 | HANDLE accept(HANDLE socket,
|
---|
| 101 | struct sockaddr* addr = nullptr, int* addrlen = nullptr);
|
---|
| 102 |
|
---|
| 103 | /**
|
---|
| 104 | * Try to connect to the given address using the given socket.
|
---|
| 105 | */
|
---|
| 106 | int connect(HANDLE socket, const struct sockaddr* name, int namelen);
|
---|
| 107 |
|
---|
| 108 | /**
|
---|
| 109 | * Close the givern socket.
|
---|
| 110 | */
|
---|
| 111 | int closesocket(HANDLE socket);
|
---|
| 112 | };
|
---|
| 113 |
|
---|
| 114 | //------------------------------------------------------------------------------
|
---|
| 115 | // Inline definitions
|
---|
| 116 | //------------------------------------------------------------------------------
|
---|
| 117 |
|
---|
| 118 | inline WSAInterface& WSAInterface::get()
|
---|
| 119 | {
|
---|
| 120 | static WSAInterface wsa;
|
---|
| 121 | return wsa;
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | //------------------------------------------------------------------------------
|
---|
| 125 |
|
---|
| 126 | } /* namespace hu::varadiistvan::scpl::io */ } /* namespace hu::varadiistvan::scpl */ } /* namespace hu::varadiistvan */ } /* namespace hu */
|
---|
| 127 |
|
---|
| 128 | //------------------------------------------------------------------------------
|
---|
| 129 |
|
---|
| 130 | // Local Variables:
|
---|
| 131 | // mode: C++
|
---|
| 132 | // c-basic-offset: 4
|
---|
| 133 | // indent-tabs-mode: nil
|
---|
| 134 | // End:
|
---|