summaryrefslogtreecommitdiffstats
blob: 608bb790b611455fbdb44f7beee8a74bb9fec1ea (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
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <string>

#include <boost/enable_shared_from_this.hpp>
#include <boost/shared_ptr.hpp>

#include <Swiften/Base/API.h>
#include <Swiften/Base/Error.h>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/Elements/Stanza.h>
#include <Swiften/Elements/ToplevelElement.h>
#include <Swiften/JID/JID.h>
#include <Swiften/Session/SessionStream.h>

namespace Swift {
    class ComponentAuthenticator;
    class CryptoProvider;

    class SWIFTEN_API ComponentSession : public boost::enable_shared_from_this<ComponentSession> {
        public:
            enum State {
                Initial,
                WaitingForStreamStart,
                Authenticating,
                Initialized,
                Finishing,
                Finished
            };

            struct Error : public Swift::Error {
                enum Type {
                    AuthenticationFailedError,
                    UnexpectedElementError
                } type;
                Error(Type type) : type(type) {}
            };

            ~ComponentSession();

            static boost::shared_ptr<ComponentSession> create(const JID& jid, const std::string& secret, boost::shared_ptr<SessionStream> stream, CryptoProvider* crypto) {
                return boost::shared_ptr<ComponentSession>(new ComponentSession(jid, secret, stream, crypto));
            }

            State getState() const {
                return state;
            }

            void start();
            void finish();

            void sendStanza(boost::shared_ptr<Stanza>);

        public:
            boost::signal<void ()> onInitialized;
            boost::signal<void (boost::shared_ptr<Swift::Error>)> onFinished;
            boost::signal<void (boost::shared_ptr<Stanza>)> onStanzaReceived;

        private:
            ComponentSession(const JID& jid, const std::string& secret, boost::shared_ptr<SessionStream>, CryptoProvider*);

            void finishSession(Error::Type error);
            void finishSession(boost::shared_ptr<Swift::Error> error);

            void sendStreamHeader();

            void handleElement(boost::shared_ptr<ToplevelElement>);
            void handleStreamStart(const ProtocolHeader&);
            void handleStreamClosed(boost::shared_ptr<Swift::Error>);

            bool checkState(State);

        private:
            JID jid;
            std::string secret;
            boost::shared_ptr<SessionStream> stream;
            CryptoProvider* crypto;
            boost::shared_ptr<Swift::Error> error;
            State state;
    };
}