2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting / ObjRef.cs
index 8bd577f3c9d6e12f2c6a673a40d5bb1f6b212d67..30234367827314cbfaa1b837eebdc0ec1ef83232 100644 (file)
@@ -5,10 +5,34 @@
 //   Miguel de Icaza (miguel@ximian.com)
 //   Dietmar Maurer (dietmar@ximian.com)
 //   Lluis Sanchez Gual (lluis@ideary.com)
+//   Patrik Torstensson
 //
 // (C) Ximian, Inc.  http://www.ximian.com
 //
 
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 using System;
 using System.Runtime.Serialization;
 using System.Runtime.Remoting.Channels;
@@ -24,13 +48,36 @@ namespace System.Runtime.Remoting {
                string uri;
                IRemotingTypeInfo typeInfo;
                IEnvoyInfo envoyInfo;
-               [NonSerialized] bool marshalledValue = false;
+               int flags;
+               Type _serverType;
+
+               static int MarshalledObjectRef = 1;
+               static int WellKnowObjectRef = 2;
                
                public ObjRef ()
                {
                        // no idea why this needs to be public
+
+                       UpdateChannelInfo();
                }
-               
+
+               internal ObjRef (string typeName, string uri, IChannelInfo cinfo) 
+               {
+                       this.uri = uri;
+                       channel_info = cinfo;
+                       typeInfo = new TypeInfo (Type.GetType (typeName));
+               }
+
+               internal ObjRef (ObjRef o, bool unmarshalAsProxy) {
+                       channel_info = o.channel_info;
+                       uri = o.uri;
+       
+                       typeInfo = o.typeInfo;
+                       envoyInfo = o.envoyInfo;
+                       flags = o.flags;
+                       if (unmarshalAsProxy) flags |= MarshalledObjectRef;
+               }
+
                public ObjRef (MarshalByRefObject mbr, Type type)
                {
                        if (mbr == null)
@@ -45,10 +92,21 @@ namespace System.Runtime.Remoting {
                        uri = RemotingServices.GetObjectUri(mbr);
                        typeInfo = new TypeInfo(type);
 
-                       if (!typeInfo.CanCastTo(mbr.GetType(), mbr))
+                       if (!type.IsAssignableFrom (mbr.GetType()))
                                throw new RemotingException ("The server object type cannot be cast to the requested type " + type.FullName + ".");
 
-                       channel_info = new ChannelInfoStore ();
+                       UpdateChannelInfo();
+               }
+
+               internal ObjRef (Type type, string url, object remoteChannelData)
+               {
+                       uri = url;
+                       typeInfo = new TypeInfo(type);
+
+                       if (remoteChannelData != null)
+                               channel_info = new ChannelInfo (remoteChannelData);
+
+                       flags |= WellKnowObjectRef;
                }
 
                protected ObjRef (SerializationInfo si, StreamingContext sc)
@@ -56,7 +114,7 @@ namespace System.Runtime.Remoting {
                        SerializationInfoEnumerator en = si.GetEnumerator();
                        // Info to serialize: uri, objrefFlags, typeInfo, envoyInfo, channelInfo
 
-                       marshalledValue = false;
+                       bool marshalledValue = true;
 
                        while (en.MoveNext ()) {
                                switch (en.Name) {
@@ -73,14 +131,38 @@ namespace System.Runtime.Remoting {
                                        envoyInfo = (IEnvoyInfo)en.Value;
                                        break;
                                case "fIsMarshalled":
-                                       marshalledValue = true;
+                                       int status;
+                                       Object o = en.Value;
+                                       if (o is string)
+                                               status = ((IConvertible) o).ToInt32(null);
+                                       else
+                                               status = (int) o;
+
+                                       if (status == 0)
+                                               marshalledValue = false;
                                        break;
-                               case "objrefFlags":             // FIXME: do something with this
+                               case "objrefFlags":
+                                       flags = Convert.ToInt32 (en.Value);
                                        break;
                                default:
                                        throw new NotSupportedException ();
                                }
                        }
+                       if (marshalledValue) flags |= MarshalledObjectRef;
+               }
+
+               internal bool IsPossibleToCAD () 
+               {
+                       // we should check if this obj ref belongs to a cross app context.
+
+                       // Return false. If not, serialization of this ObjRef will not work
+                       // on the target AD.
+                       return false;
+               }
+
+               internal bool IsReferenceToWellKnow
+               {
+                       get { return (flags & WellKnowObjectRef) > 0; }
                }
 
                public virtual IChannelInfo ChannelInfo {
@@ -94,17 +176,15 @@ namespace System.Runtime.Remoting {
                        }
                }
                
-               [MonoTODO]
                public virtual IEnvoyInfo EnvoyInfo {
                        get {
-                               throw new NotImplementedException ();
+                               return envoyInfo;
                        }
                        set {
-                               throw new NotImplementedException ();
+                               envoyInfo = value;
                        }
                }
                
-               [MonoTODO]
                public virtual IRemotingTypeInfo TypeInfo {
                        get {
                                return typeInfo;
@@ -130,13 +210,13 @@ namespace System.Runtime.Remoting {
                        si.AddValue ("typeInfo", typeInfo, typeof (IRemotingTypeInfo));
                        si.AddValue ("envoyInfo", envoyInfo, typeof (IEnvoyInfo));
                        si.AddValue ("channelInfo", channel_info, typeof(IChannelInfo));
-                       si.AddValue ("objrefFlags", 0);
+                       si.AddValue ("objrefFlags", flags);
                }
 
                public virtual object GetRealObject (StreamingContext sc)
                {
-                       if (marshalledValue)
-                               return RemotingServices.GetRemoteObject(Type.GetType(typeInfo.TypeName), null, channel_info.ChannelData, uri);
+                       if ((flags & MarshalledObjectRef) > 0)
+                               return RemotingServices.Unmarshal (this);
                        else
                                return this;
                }
@@ -149,11 +229,32 @@ namespace System.Runtime.Remoting {
                        return identity.IsFromThisAppDomain;
                }
 
-               [MonoTODO]
                public bool IsFromThisProcess ()
                {
-                       // as yet we do not consider this optimization
-                       return false;
+                       foreach (object data in channel_info.ChannelData)
+                       {
+                               if (data is CrossAppDomainData)
+                               {
+                                       string refProcId = ((CrossAppDomainData)data).ProcessID;
+                                       return (refProcId == RemotingConfiguration.ProcessId);
+                               }
+                       }
+                       
+                       return true;
+               }
+
+               internal void UpdateChannelInfo()
+               {
+                       channel_info = new ChannelInfo ();
+               }
+
+               internal Type ServerType
+               {
+                       get
+                       {
+                               if (_serverType == null) _serverType = Type.GetType (typeInfo.TypeName);
+                               return _serverType;
+                       }
                }
        }
 }