blob: a6428e13f34eb16876583388e1ea1ab1e569efb6 (
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
|
/**
* @file broker.h
* @brief Declaration of the Broker class.
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
#ifndef broker_h_included
#define broker_h_included
#include "depot.h"
#include "operators.h"
#include "recursivedescent.h"
#include "session.h"
#include <map>
#include <memory>
#include <string>
namespace Binc {
class Request;
class Broker;
class BrokerFactory {
private:
std::map<Session::State, Broker> brokers;
BrokerFactory();
mutable std::string lastError;
public:
Broker *getBroker(Session::State state);
void assign(const std::string &fname, std::shared_ptr<Operator> o);
void addCapability(const std::string &c);
Operator *getOperator(Session::State state, const std::string &name) const;
const std::string &getLastError() const
{
return lastError;
}
void setLastError(std::string error) const
{
lastError = std::move(error);
}
static BrokerFactory &getInstance();
BrokerFactory(const BrokerFactory &) = delete;
BrokerFactory(const BrokerFactory &&) = delete;
};
class Broker {
private:
std::map<std::string, std::shared_ptr<Operator>> operators;
public:
Parser &parser;
Operator *get(const std::string &name) const;
void assign(const std::string &fname, std::shared_ptr<Operator> o);
Parser::ParseResult parseStub(Request &cmd);
Broker(Parser &p) : parser(p){};
Broker(const Broker &) = delete;
Broker(Broker &&) = default;
};
}
#endif
|