aboutsummaryrefslogtreecommitdiff
path: root/src/control_connection.cpp
blob: b0d30d633a608df28fd9092100c07e7c0dda130b (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#include "control_connection.hpp"

#include <iostream>
#include <limits>

namespace wanda
{

control_connection::pointer make_control_connection(control_connection::protocol::socket &&socket)
{
    return std::make_shared<control_connection>(control_connection::key{}, std::move(socket));
}

control_connection::control_connection(control_connection::key key, control_connection::protocol::socket socket)
    : keyed{key},
      m_socket{std::move(socket)}
{
}

bool control_connection::add(listener * listener)
{
    auto [_, inserted] = m_listeners.insert(listener);
    return inserted;
}

bool control_connection::remove(listener * listener)
{
    return m_listeners.erase(listener);
}

void control_connection::start()
{
    if (m_state == state::unknown)
    {
        m_state = state::fresh;
        perform_read();
    }
}

void control_connection::send(message message)
{
    m_output << message << '\n';
    boost::asio::async_write(m_socket, m_out, boost::asio::transfer_exactly(message.size() + 1), [that = shared_from_this(), this](auto const &error, auto const length) {
        if (error)
        {
            // TODO: Handle error
        }
        else
        {
            m_out.consume(length);
        }
    });
}

void control_connection::close()
{
    if (auto error = boost::system::error_code{}; m_socket.cancel(error))
    {
        for (auto &listener : m_listeners)
        {
            listener->on_error(shared_from_this(), error);
        }
    }

    if (auto error = boost::system::error_code{}; m_socket.close(error))
    {
        for (auto &listener : m_listeners)
        {
            listener->on_error(shared_from_this(), error);
        }
    }

    for (auto &listener : m_listeners)
    {
        listener->on_close(shared_from_this());
    }
    m_listeners.clear();
}

void control_connection::update(state state)
{
    m_state = state;
}

control_connection::state control_connection::current_state() const
{
    return m_state;
}

void control_connection::perform_read()
{
    boost::asio::async_read_until(m_socket, m_in, '\n', [that = shared_from_this(), this](auto const &error, auto const length) {
        if (error)
        {
            for (auto &listener : m_listeners)
            {
                listener->on_error(shared_from_this(), error);
            }
            close();
        }
        else
        {
            auto msg = message{};
            m_input >> msg;
            if (!m_input)
            {
                m_input.ignore(std::numeric_limits<std::streamsize>::max());
                m_input.clear();
            }
            else
            {
                for (auto &listener : m_listeners)
                {
                    listener->on_received(shared_from_this(), msg);
                }
            }
            perform_read();
        }
    });
}

} // namespace wanda