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
123
124
125
126
127
128
129
130
131
132
133
134
135
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <Glacier2/ClientBlobject.h>
#include <Glacier2/FilterManager.h>
#include <Glacier2/FilterT.h>
#include <Glacier2/RoutingTable.h>
using namespace std;
using namespace Ice;
using namespace Glacier2;
Glacier2::ClientBlobject::ClientBlobject(shared_ptr<Instance>instance,
shared_ptr<FilterManager> filters,
const Ice::Context& sslContext,
shared_ptr<RoutingTable>routingTable):
Glacier2::Blobject(move(instance), nullptr, sslContext),
_routingTable(move(routingTable)),
_filters(move(filters)),
_rejectTraceLevel(_instance->properties()->getPropertyAsInt("Glacier2.Client.Trace.Reject"))
{
}
void
Glacier2::ClientBlobject::ice_invokeAsync(pair<const Byte*, const Byte*> inParams,
function<void(bool, const pair<const Byte*, const Byte*>&)> response,
function<void(exception_ptr)> error,
const Current& current)
{
bool matched = false;
bool hasFilters = false;
string rejectedFilters;
if(!_filters->categories()->empty())
{
hasFilters = true;
if(_filters->categories()->match(current.id.category))
{
matched = true;
}
else if(_rejectTraceLevel >= 1)
{
if(rejectedFilters.size() != 0)
{
rejectedFilters += ", ";
}
rejectedFilters += "category filter";
}
}
if(!_filters->identities()->empty())
{
hasFilters = true;
if(_filters->identities()->match(current.id))
{
matched = true;
}
else if(_rejectTraceLevel >= 1)
{
if(rejectedFilters.size() != 0)
{
rejectedFilters += ", ";
}
rejectedFilters += "identity filter";
}
}
auto proxy = _routingTable->get(current.id);
if(!proxy)
{
//
// We use a special operation name indicate to the client that
// the proxy for the Ice object has not been found in our
// routing table. This can happen if the proxy was evicted
// from the routing table.
//
throw ObjectNotExistException(__FILE__, __LINE__, current.id, current.facet, "ice_add_proxy");
}
string adapterId = proxy->ice_getAdapterId();
if(!adapterId.empty() && !_filters->adapterIds()->empty())
{
hasFilters = true;
if(_filters->adapterIds()->match(adapterId))
{
matched = true;
}
else if(_rejectTraceLevel >= 1)
{
if(rejectedFilters.size() != 0)
{
rejectedFilters += ", ";
}
rejectedFilters += "adapter id filter";
}
}
if(hasFilters && !matched)
{
if(_rejectTraceLevel >= 1)
{
Trace out(_instance->logger(), "Glacier2");
out << "rejecting request: " << rejectedFilters << "\n";
out << "identity: " << _instance->communicator()->identityToString(current.id);
}
throw ObjectNotExistException(__FILE__, __LINE__, current.id, "", "");
}
invoke(proxy, inParams, move(response), move(error), current);
}
shared_ptr<StringSet>
ClientBlobject::categories()
{
return _filters->categories();
}
shared_ptr<StringSet>
ClientBlobject::adapterIds()
{
return _filters->adapterIds();
}
shared_ptr<IdentitySet>
ClientBlobject::identities()
{
return _filters->identities();
}
|