aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/http/http_connection_pool.cpp
blob: e9fc35e965b2c613c5a294b43a17476188633158 (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
42
43
44
45
46
47
48
49
50
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "http_connection_pool.h"

namespace vbench {

HttpConnectionPool::HttpConnectionPool(CryptoEngine::SP crypto, Timer &timer)
    : _lock(),
      _map(),
      _store(),
      _crypto(std::move(crypto)),
      _timer(timer)
{
}

HttpConnectionPool::~HttpConnectionPool() {}

HttpConnection::UP
HttpConnectionPool::getConnection(const ServerSpec &server)
{
    double now = _timer.sample();
    std::lock_guard guard(_lock);
    auto res = _map.insert(std::make_pair(server, _store.size()));
    if (res.second) {
        _store.emplace_back();
    }
    Queue &queue = _store[res.first->second];
    while (!queue.empty() && !queue.front()->mayReuse(now)) {
        queue.pop();
    }
    if (!queue.empty()) {
        HttpConnection::UP ret = std::move(queue.access(0));
        queue.pop();
        return ret;
    }
    return HttpConnection::UP(new HttpConnection(*_crypto, server));
}

void
HttpConnectionPool::putConnection(HttpConnection::UP conn)
{
    double now = _timer.sample();
    std::lock_guard guard(_lock);
    conn->touch(now);
    size_t idx = _map[conn->server()];
    assert(idx < _store.size());
    _store[idx].push(std::move(conn));
}

} // namespace vbench