merge -r 58060:58217
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / MethodReturnMessageWrapper.cs
1 //
2 // System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper.cs
3 //
4 // Author: Duncan Mak (duncan@ximian.com)
5 //         Lluis Sanchez Gual (lluis@ideary.com)
6 //
7 // 2002 (C) Copyright, Ximian, Inc.
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.Collections;
35 using System.Reflection;
36 using System.Runtime.Serialization;
37
38 namespace System.Runtime.Remoting.Messaging {
39
40         public class MethodReturnMessageWrapper : InternalMessageWrapper, IMethodReturnMessage, IMethodMessage, IMessage
41         {
42                 object[] _args;
43                 ArgInfo _outArgInfo;
44                 DictionaryWrapper _properties;
45                 Exception _exception;
46                 object _return;
47
48                 public MethodReturnMessageWrapper (IMethodReturnMessage msg)
49                         : base (msg)
50                 {
51                         if (msg.Exception != null) {
52                                 _exception = msg.Exception;
53                                 _args = new object[0];
54                         } else {
55                                 _args = msg.Args;
56                                 _return = msg.ReturnValue;
57                                 if (msg.MethodBase != null)
58                                         _outArgInfo = new ArgInfo (msg.MethodBase, ArgInfoType.Out);
59                         }
60                 }
61
62                 public virtual int ArgCount {
63                         get { return _args.Length; }
64                 }
65
66                 public virtual object [] Args \r
67                 {
68                         get { return _args; }
69                         set { _args = value; }
70                 }
71
72                 public virtual Exception Exception {
73                         get { return _exception; }
74                         set { _exception = value; }
75                 }
76                 
77                 public virtual bool HasVarArgs {
78                         get { return ((IMethodReturnMessage)WrappedMessage).HasVarArgs; }
79                 }
80                 
81                 public virtual LogicalCallContext LogicalCallContext {
82                         get { return ((IMethodReturnMessage)WrappedMessage).LogicalCallContext; }
83                 }
84                 
85                 public virtual MethodBase MethodBase {
86                         get { return ((IMethodReturnMessage)WrappedMessage).MethodBase; }
87                 }
88
89                 public virtual string MethodName {
90                         get { return ((IMethodReturnMessage)WrappedMessage).MethodName; }
91                 }
92
93                 public virtual object MethodSignature {
94                         get { return ((IMethodReturnMessage)WrappedMessage).MethodSignature; }
95                 }
96
97                 public virtual int OutArgCount {
98                         get { return _outArgInfo != null ? _outArgInfo.GetInOutArgCount() : 0; }
99                 }
100
101                 public virtual object[] OutArgs {
102                         get { return _outArgInfo != null ? _outArgInfo.GetInOutArgs (_args) : _args; }
103                 }
104
105                 public virtual IDictionary Properties 
106                 {
107                         get { 
108                                 if (_properties == null) _properties = new DictionaryWrapper(this, WrappedMessage.Properties);
109                                 return _properties; 
110                         }
111                 }
112
113                 public virtual object ReturnValue {
114                         get { return _return; }
115                         set { _return = value; }
116                 }
117
118                 public virtual string TypeName {
119                         get { return ((IMethodReturnMessage)WrappedMessage).TypeName; }
120                 }
121
122                 public virtual string Uri \r
123                 {
124                         get { return ((IMethodReturnMessage)WrappedMessage).Uri; }
125                         set { Properties["__Uri"] = value; }
126                 }
127
128                 public virtual object GetArg (int argNum)
129                 {
130                         return _args[argNum];
131                 }
132
133                 public virtual string GetArgName (int index)
134                 {
135                         return ((IMethodReturnMessage)WrappedMessage).GetArgName(index);
136                 }
137
138                 public virtual object GetOutArg (int argNum)
139                 {
140                         return _args [_outArgInfo.GetInOutArgIndex (argNum)];
141                 }
142
143                 public virtual string GetOutArgName (int index)
144                 {
145                         return _outArgInfo.GetInOutArgName(index);
146                 }
147
148                 class DictionaryWrapper : MethodReturnDictionary\r
149                 {\r
150                         IDictionary _wrappedDictionary;\r
151                         static string[] _keys = new string[] {"__Args", "__Return"};\r
152 \r
153                         public DictionaryWrapper(IMethodReturnMessage message, IDictionary wrappedDictionary) : base (message)\r
154                         {\r
155                                 _wrappedDictionary = wrappedDictionary;\r
156                                 MethodKeys = _keys;\r
157                         }\r
158
159                         protected override IDictionary AllocInternalProperties()\r
160                         {\r
161                                 return _wrappedDictionary;\r
162                         }\r
163
164                         protected override void SetMethodProperty (string key, object value)
165                         {
166                                 if (key == "__Args") ((MethodReturnMessageWrapper)_message)._args = (object[])value;
167                                 else if (key == "__Return") ((MethodReturnMessageWrapper)_message)._return = value;
168                                 else base.SetMethodProperty (key, value);
169                         }
170
171                         protected override object GetMethodProperty (string key)
172                         {
173                                 if (key == "__Args") return ((MethodReturnMessageWrapper)_message)._args;
174                                 else if (key == "__Return") return ((MethodReturnMessageWrapper)_message)._return;
175                                 else return base.GetMethodProperty (key);
176                         }
177                 }
178         }
179 }