blob: 2d0cde338fec91f3cc0387bcd9f6e8c13804d7eb (
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
|
// **********************************************************************
//
// Copyright (c) 2003-2017 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.
//
// **********************************************************************
#import <acm/TestI.h>
@implementation ACMConnectionCallbackI
-(id) init
{
self = [super init];
if(!self)
{
return nil;
}
_cond = [[NSCondition alloc] init];
_count = 0;
return self;
}
-(void) heartbeat:(id<ICEConnection>)c
{
[_cond lock];
++_count;
[_cond signal];
[_cond unlock];
}
-(void) waitForCount:(int)count
{
[_cond lock];
@try
{
while(_count < count)
{
[_cond wait];
}
}
@finally
{
[_cond unlock];
}
}
@end
@implementation ACMRemoteCommunicatorI
-(id<TestACMRemoteObjectAdapterPrx>) createObjectAdapter:(ICEInt)timeout close:(ICEInt)close heartbeat:(ICEInt)heartbeat
current:(ICECurrent*)current
{
id<ICECommunicator> com = [current.adapter getCommunicator];
id<ICEProperties> properties = [com getProperties];
NSString* protocol = [properties getPropertyWithDefault:@"Ice.Default.Protocol" value:@"tcp"];
NSString* host = [properties getPropertyWithDefault:@"Ice.Default.Host" value:@"127.0.0.1"];
NSString* name = [ICEUtil generateUUID];
if(timeout >= 0)
{
[properties setProperty:[name stringByAppendingString:@".ACM.Timeout"]
value:[NSString stringWithFormat:@"%d", timeout]];
}
if(close >= 0)
{
[properties setProperty:[name stringByAppendingString:@".ACM.Close"]
value:[NSString stringWithFormat:@"%d", close]];
}
if(heartbeat >= 0)
{
[properties setProperty:[name stringByAppendingString:@".ACM.Heartbeat"]
value:[NSString stringWithFormat:@"%d", heartbeat]];
}
[properties setProperty:[name stringByAppendingString:@".ThreadPool.Size"] value:@"12"];
id<ICEObjectAdapter> adapter =
[com createObjectAdapterWithEndpoints:name
endpoints:[NSString stringWithFormat:@"%@ -h \"%@\"", protocol, host]];
ACMRemoteObjectAdapterI* remoteAdapter = ICE_AUTORELEASE([[ACMRemoteObjectAdapterI alloc] initWithAdapter:adapter]);
return [TestACMRemoteObjectAdapterPrx uncheckedCast:[current.adapter addWithUUID:remoteAdapter]];
}
-(void) shutdown:(ICECurrent*)current
{
[[current.adapter getCommunicator] shutdown];
}
@end
@implementation ACMRemoteObjectAdapterI
-(id) initWithAdapter:(id<ICEObjectAdapter>)adapter
{
self = [super init];
if(!self)
{
return nil;
}
_adapter = ICE_RETAIN(adapter);
_testIntf = ICE_RETAIN([TestACMTestIntfPrx uncheckedCast:[_adapter add:[TestACMTestIntfI testIntf]
identity:[ICEUtil stringToIdentity:@"test"]]]);
[_adapter activate];
return self;
}
#if defined(__clang__) && !__has_feature(objc_arc)
-(void) dealloc
{
[_adapter release];
[_testIntf release];
[super dealloc];
}
#endif
-(id<TestACMTestIntfPrx>) getTestIntf:(ICECurrent*)current
{
return _testIntf;
}
-(void) activate:(ICECurrent*)current
{
[_adapter activate];
}
-(void) hold:(ICECurrent*)current
{
[_adapter hold];
}
-(void) deactivate:(ICECurrent*)current
{
@try
{
[_adapter activate];
}
@catch(ICEObjectAdapterDeactivatedException* ex)
{
}
}
@end
@implementation TestACMTestIntfI
-(id) init
{
self = [super init];
if(!self)
{
return nil;
}
_cond = [[NSCondition alloc] init];
return self;
}
#if defined(__clang__) && !__has_feature(objc_arc)
-(void) dealloc
{
[_cond release];
[super dealloc];
}
#endif
-(void) sleep:(ICEInt)delay current:(ICECurrent*)current
{
[_cond lock];
@try
{
[_cond waitUntilDate:[NSDate dateWithTimeIntervalSinceNow:delay]];
}
@finally
{
[_cond unlock];
}
}
-(void) sleepAndHold:(ICEInt)delay current:(ICECurrent*)current
{
[_cond lock];
[current.adapter hold];
@try
{
[_cond waitUntilDate:[NSDate dateWithTimeIntervalSinceNow:delay]];
}
@finally
{
[_cond unlock];
}
}
-(void) interruptSleep:(ICECurrent*)current
{
[_cond lock];
[_cond signal];
[_cond unlock];
}
-(void) startHeartbeatCount:(ICECurrent*)current
{
ACMConnectionCallbackI* callback = [ACMConnectionCallbackI new];
_callback = callback;
[current.con setHeartbeatCallback:^(id<ICEConnection> c)
{
[callback heartbeat:c];
}];
}
-(void) waitForHeartbeatCount:(int)count current:(ICECurrent*)current
{
[_callback waitForCount:count];
ICE_RELEASE(_callback);
}
@end
|