Welcome to mirror list, hosted at ThFree Co, Russian Federation.

proxyattribute.cs « remoting « runtime « system « mscorlib « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07cd3b628ff9a1ddfd1bedfe8a8bd599d730f762 (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
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
/*============================================================
**
** File:    ProxyAttribute.cs
**
**
** Purpose: Defines the attribute that is used on types which
**          need custom proxies.
**
**
===========================================================*/
namespace System.Runtime.Remoting.Proxies {
        
    using System.Reflection;
    using System.Runtime.Remoting.Activation;
    using System.Runtime.Remoting.Contexts;
    using System.Security.Permissions;

    // Attribute for types that need custom proxies
    [System.Security.SecurityCritical]  // auto-generated_required
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
    [SecurityPermissionAttribute(SecurityAction.InheritanceDemand, Flags=SecurityPermissionFlag.Infrastructure)]
    [System.Runtime.InteropServices.ComVisible(true)]
    public class ProxyAttribute : Attribute , IContextAttribute
    {
        public ProxyAttribute()
        {
            // Default constructor
        }
        
        // Default implementation of CreateInstance uses our activation services to create an instance
        // of the transparent proxy or an uninitialized marshalbyrefobject and returns it.

        [System.Security.SecurityCritical]  // auto-generated
        public virtual MarshalByRefObject CreateInstance(Type serverType)
        {
            if (serverType == null)
                throw new ArgumentNullException("serverType");

            RuntimeType rt = serverType as RuntimeType;
            if (rt == null)
                throw new ArgumentException(Environment.GetResourceString("Argument_MustBeRuntimeType"));

            if (!serverType.IsContextful)
            {
                throw new RemotingException(                     
                    Environment.GetResourceString(
                        "Remoting_Activation_MBR_ProxyAttribute"));
            }
            if (serverType.IsAbstract)
            {
                throw new RemotingException(
                    Environment.GetResourceString(
                        "Acc_CreateAbst"));
            }
            return CreateInstanceInternal(rt);
        }

        internal MarshalByRefObject CreateInstanceInternal(RuntimeType serverType)
        {
            return ActivationServices.CreateInstance(serverType);
        }

        // Default implementation of CreateProxy creates an instance of our
        // remoting proxy

        [System.Security.SecurityCritical]  // auto-generated
        public virtual RealProxy CreateProxy(ObjRef objRef, 
                                             Type serverType,  
                                             Object serverObject, 
                                             Context serverContext)
        {
            RemotingProxy rp =  new RemotingProxy(serverType);    

            // If this is a serverID, set the native context field in the TP
            if (null != serverContext)
            {
                RealProxy.SetStubData(rp, serverContext.InternalContextID);
            }

            if (objRef != null && objRef.GetServerIdentity().IsAllocated)
            {
                rp.SetSrvInfo(objRef.GetServerIdentity(), objRef.GetDomainID());                
            }
            
            // Set the flag indicating that the fields of the proxy
            // have been initialized
            rp.Initialized = true;
    
            // Sanity check
            Type t = serverType;
            if (!t.IsContextful && 
                !t.IsMarshalByRef && 
                (null != serverContext))
            {
                throw new RemotingException(                     
                    Environment.GetResourceString(
                        "Remoting_Activation_MBR_ProxyAttribute"));
            }

            return rp;
        }

        // implementation of interface IContextAttribute
        [System.Security.SecurityCritical]
        [System.Runtime.InteropServices.ComVisible(true)]
        public bool IsContextOK(Context ctx, IConstructionCallMessage msg)
        {
            // always happy...
            return true;
        }

        [System.Security.SecurityCritical]
        [System.Runtime.InteropServices.ComVisible(true)]
        public void GetPropertiesForNewContext(IConstructionCallMessage msg)
        {
            // chill.. do nothing.
            return;
        }
    }
}