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
|
// **********************************************************************
//
// Copyright (c) 2003-2005 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.
//
// **********************************************************************
package IceInternal;
public class IncomingBase
{
protected
IncomingBase(Instance instance, Ice.ConnectionI connection, Ice.ObjectAdapter adapter, boolean response,
byte compress)
{
_response = response;
_compress = compress;
_os = new BasicStream(instance);
_connection = connection;
_current = new Ice.Current();
_current.id = new Ice.Identity();
_current.adapter = adapter;
_current.con = _connection;
_cookie = new Ice.LocalObjectHolder();
}
protected
IncomingBase(IncomingBase in) // Adopts the argument. It must not be used afterwards.
{
_current = in._current;
in._current = null;
_servant = in._servant;
in._servant = null;
_locator = in._locator;
in._locator = null;
_cookie = in._cookie;
in._cookie = null;
_response = in._response;
in._response = false;
_compress = in._compress;
in._compress = 0;
_os = in._os;
in._os = null;
_connection = in._connection;
in._connection = null;
}
//
// Do NOT use a finalizer, this would cause a severe performance
// penalty! We must make sure that __destroy() is called instead,
// to reclaim resources.
//
public synchronized void
__destroy()
{
if(_os != null)
{
_os.destroy();
_os = null;
}
}
//
// This function allows this object to be reused, rather than reallocated.
//
public void
reset(Instance instance, Ice.ConnectionI connection, Ice.ObjectAdapter adapter, boolean response, byte compress)
{
//
// Don't recycle the Current object, because servants may keep a reference to it.
//
_current = new Ice.Current();
_current.id = new Ice.Identity();
_current.adapter = adapter;
_current.con = connection;
_servant = null;
_locator = null;
if(_cookie == null)
{
_cookie = new Ice.LocalObjectHolder();
}
else
{
_cookie.value = null;
}
_response = response;
_compress = compress;
synchronized(this)
{
if(_os == null)
{
_os = new BasicStream(instance);
}
else
{
_os.reset();
}
}
_connection = connection;
}
final protected void
__warning(java.lang.Exception ex)
{
assert(_os != null);
java.io.StringWriter sw = new java.io.StringWriter();
java.io.PrintWriter pw = new java.io.PrintWriter(sw);
IceUtil.OutputBase out = new IceUtil.OutputBase(pw);
out.setUseTab(false);
out.print("dispatch exception:");
out.print("\nidentity: " + Ice.Util.identityToString(_current.id));
out.print("\nfacet: " + IceUtil.StringUtil.escapeString(_current.facet, ""));
out.print("\noperation: " + _current.operation);
out.print("\n");
ex.printStackTrace(pw);
pw.flush();
_os.instance().logger().warning(sw.toString());
}
protected Ice.Current _current;
protected Ice.Object _servant;
protected Ice.ServantLocator _locator;
protected Ice.LocalObjectHolder _cookie;
protected boolean _response;
protected byte _compress;
protected BasicStream _os;
protected Ice.ConnectionI _connection;
}
|