aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/net/server_socket.h
blob: 3dade78ddcc7003b731c290bf26b034c282d0f2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "socket_handle.h"
#include "socket_address.h"
#include <atomic>

namespace vespalib {

class SocketSpec;

class ServerSocket
{
private:
    SocketHandle _handle;
    vespalib::string _path;
    bool _blocking;
    std::atomic<bool> _shutdown;

    void cleanup();
public:
    ServerSocket() : _handle(), _path(), _blocking(false), _shutdown(false) {}
    explicit ServerSocket(const SocketSpec &spec);
    explicit ServerSocket(const vespalib::string &spec);
    explicit ServerSocket(int port);
    ServerSocket(ServerSocket &&rhs);
    ServerSocket &operator=(ServerSocket &&rhs);
    ~ServerSocket() { cleanup(); }
    bool valid() const { return _handle.valid(); }
    int get_fd() const { return _handle.get(); }
    SocketAddress address() const;
    void shutdown();
    bool set_blocking(bool value) {
        _blocking = value;
        return true;
    }
    SocketHandle accept();
};

} // namespace vespalib