[6] | 1 | // Copyright (c) 2012 by István Váradi
|
---|
| 2 |
|
---|
| 3 | // This file is part of libxplcommon, a common utility library for
|
---|
| 4 | // development related to X-Plane
|
---|
| 5 |
|
---|
| 6 | // Redistribution and use in source and binary forms, with or without
|
---|
| 7 | // modification, are permitted provided that the following conditions are met:
|
---|
| 8 |
|
---|
| 9 | // 1. Redistributions of source code must retain the above copyright notice, this
|
---|
| 10 | // list of conditions and the following disclaimer.
|
---|
| 11 | // 2. Redistributions in binary form must reproduce the above copyright notice,
|
---|
| 12 | // this list of conditions and the following disclaimer in the documentation
|
---|
| 13 | // and/or other materials provided with the distribution.
|
---|
| 14 |
|
---|
| 15 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
---|
| 16 | // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
---|
| 17 | // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
---|
| 18 | // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
---|
| 19 | // ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
---|
| 20 | // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
---|
| 21 | // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
---|
| 22 | // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 23 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
---|
| 24 | // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 25 |
|
---|
| 26 | // The views and conclusions contained in the software and documentation are those
|
---|
| 27 | // of the authors and should not be interpreted as representing official policies,
|
---|
| 28 | // either expressed or implied, of the FreeBSD Project.
|
---|
| 29 |
|
---|
| 30 | #ifndef XPLCOMMON_POSIX_ACCEPTOR_H
|
---|
| 31 | #define XPLCOMMON_POSIX_ACCEPTOR_H
|
---|
| 32 | //------------------------------------------------------------------------------
|
---|
| 33 |
|
---|
| 34 | #include "../Failable.h"
|
---|
| 35 |
|
---|
| 36 | #include <cstdlib>
|
---|
| 37 |
|
---|
| 38 | //------------------------------------------------------------------------------
|
---|
| 39 |
|
---|
| 40 | namespace xplcommon { namespace posix {
|
---|
| 41 |
|
---|
| 42 | //------------------------------------------------------------------------------
|
---|
| 43 |
|
---|
| 44 | class ServerSocket;
|
---|
| 45 |
|
---|
| 46 | //------------------------------------------------------------------------------
|
---|
| 47 |
|
---|
| 48 | /**
|
---|
| 49 | * Class representing the accepting of an incoming connection on a
|
---|
| 50 | * socket.
|
---|
| 51 | */
|
---|
| 52 | class Acceptor : public ::xplcommon::Failable
|
---|
| 53 | {
|
---|
[11] | 54 | protected:
|
---|
[6] | 55 | /**
|
---|
| 56 | * The socket we belong to.
|
---|
| 57 | */
|
---|
| 58 | ServerSocket& socket;
|
---|
| 59 |
|
---|
| 60 | /**
|
---|
| 61 | * The file descriptor accepted the last time.
|
---|
| 62 | */
|
---|
| 63 | int acceptedFD;
|
---|
| 64 |
|
---|
| 65 | /**
|
---|
| 66 | * The buffer for the remote address, if we are interested.
|
---|
| 67 | */
|
---|
| 68 | unsigned char* address;
|
---|
| 69 |
|
---|
| 70 | /**
|
---|
| 71 | * The length of the remote address buffer.
|
---|
| 72 | */
|
---|
| 73 | size_t addressLength;
|
---|
| 74 |
|
---|
| 75 | protected:
|
---|
| 76 | /**
|
---|
| 77 | * Construct the acceptor.
|
---|
| 78 | *
|
---|
| 79 | * @param addressLength the length of the buffer for the peer
|
---|
| 80 | * address. If 0, not buffer will be created.
|
---|
| 81 | */
|
---|
| 82 | Acceptor(ServerSocket* socket, size_t addressLength = 0);
|
---|
| 83 |
|
---|
| 84 | public:
|
---|
| 85 | /**
|
---|
| 86 | * Destroy the acceptor.
|
---|
| 87 | */
|
---|
| 88 | virtual ~Acceptor();
|
---|
| 89 |
|
---|
| 90 | /**
|
---|
| 91 | * Start accepting a connection.
|
---|
| 92 | *
|
---|
| 93 | * If a connection is already accepted, but not retrieved yet, it
|
---|
| 94 | * returns true.
|
---|
| 95 | *
|
---|
| 96 | * If a new socket becomes immediately available, it returns true.
|
---|
| 97 | *
|
---|
| 98 | * If some error occurs, the acceptor is marked as failed.
|
---|
| 99 | */
|
---|
| 100 | bool accept();
|
---|
| 101 |
|
---|
| 102 | protected:
|
---|
| 103 | /**
|
---|
| 104 | * Called when a connection gets processed and we can become ready
|
---|
| 105 | * for the next one.
|
---|
| 106 | */
|
---|
| 107 | void connectionProcessed();
|
---|
| 108 | };
|
---|
| 109 |
|
---|
| 110 | //------------------------------------------------------------------------------
|
---|
| 111 | // Inline definitions
|
---|
| 112 | //------------------------------------------------------------------------------
|
---|
| 113 |
|
---|
| 114 | inline Acceptor::Acceptor(ServerSocket* socket, size_t addressLength) :
|
---|
| 115 | socket(*socket),
|
---|
| 116 | acceptedFD(-1),
|
---|
| 117 | address( (addressLength==0) ? 0 : new unsigned char[addressLength]),
|
---|
| 118 | addressLength(addressLength)
|
---|
| 119 | {
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | //------------------------------------------------------------------------------
|
---|
| 123 |
|
---|
| 124 | inline void Acceptor::connectionProcessed()
|
---|
| 125 | {
|
---|
| 126 | acceptedFD = -1;
|
---|
| 127 | }
|
---|
| 128 |
|
---|
| 129 | //------------------------------------------------------------------------------
|
---|
| 130 |
|
---|
| 131 | } /* namespace xplcommon::posix */ } /* namespace xplcommon */
|
---|
| 132 |
|
---|
| 133 | //------------------------------------------------------------------------------
|
---|
| 134 | #endif // XPLCOMMON_POSIX_ACCEPTOR_H
|
---|
| 135 |
|
---|
| 136 | // Local Variables:
|
---|
| 137 | // mode: C++
|
---|
| 138 | // c-basic-offset: 4
|
---|
| 139 | // indent-tabs-mode: nil
|
---|
| 140 | // End:
|
---|