blob: 699a145db877b930e0fdb35e91d071017dde5076 (
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
123
124
125
126
127
|
// **********************************************************************
//
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <IceStorm/BatchFlusher.h>
#include <IceStorm/Instance.h>
#include <IceStorm/TraceLevels.h>
#include <Ice/Communicator.h>
#include <Ice/Properties.h>
#include <Ice/LoggerUtil.h>
#include <Ice/Connection.h>
#include <set>
using namespace IceStorm;
using namespace std;
BatchFlusher::BatchFlusher(const InstancePtr& instance) :
_traceLevels(instance->traceLevels()),
_flushTime(IceUtil::Time::milliSeconds(
max(instance->properties()->getPropertyAsIntWithDefault(
"IceStorm.Flush.Timeout", 1000), 100))), // Minimum of 100ms.
_destroy(false)
{
start();
}
BatchFlusher::~BatchFlusher()
{
}
void
BatchFlusher::add(const Ice::ObjectPrx& subscriber)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this);
//
// If the set of subscribers is empty then wake up the flushing
// thread since it will be waiting indefinitely
//
if(_subscribers.empty())
{
notify();
}
_subscribers.push_back(subscriber);
}
void
BatchFlusher::remove(const Ice::ObjectPrx& subscriber)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this);
_subscribers.remove(subscriber);
}
void
BatchFlusher::destroy()
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this);
_destroy = true;
notify();
}
void
BatchFlusher::run()
{
for(;;)
{
list<Ice::ObjectPrx> subscribers;
{
IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this);
if(_destroy)
{
return;
}
if(_subscribers.empty())
{
wait();
}
else
{
timedWait(_flushTime);
}
if(_destroy)
{
return;
}
subscribers = _subscribers;
}
set<Ice::ConnectionPtr> flushSet;
for(list<Ice::ObjectPrx>::const_iterator p = subscribers.begin(); p != subscribers.end(); ++p)
{
Ice::ConnectionPtr connection = (*p)->ice_getCachedConnection();
if(connection)
{
flushSet.insert(connection);
}
}
for(set<Ice::ConnectionPtr>::const_iterator q = flushSet.begin(); q != flushSet.end(); ++q)
{
try
{
(*q)->flushBatchRequests();
}
catch(const Ice::LocalException&)
{
// Ignore.
}
}
//
// Trace after the flush so that the correct number of objects
// are displayed
//
if(_traceLevels->flush > 0)
{
Ice::Trace out(_traceLevels->logger, _traceLevels->flushCat);
out << "connections: " << flushSet.size() << " subscribers: " << subscribers.size();
}
}
}
|