2009-12-26 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Dispatcher / DispatchRuntime.cs
1 //
2 // DispatchRuntime.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 using System;
29 using System.Collections.Generic;
30 using System.Collections.ObjectModel;
31 using System.Reflection;
32 using System.IdentityModel.Policy;
33 using System.ServiceModel.Channels;
34 using System.Text;
35 using System.Threading;
36 using System.ServiceModel;
37 using System.ServiceModel.Description;
38 using System.Web.Security;
39
40 namespace System.ServiceModel.Dispatcher
41 {
42         public sealed class DispatchRuntime
43         {
44                 ClientRuntime callback_client_runtime;
45
46                 DispatchOperation.DispatchOperationCollection operations =
47                         new DispatchOperation.DispatchOperationCollection ();
48
49
50                 internal DispatchRuntime (EndpointDispatcher dispatcher)
51                 {
52                         EndpointDispatcher = dispatcher;
53                         UnhandledDispatchOperation = new DispatchOperation (
54                                 this, "*", "*", "*");
55
56                         AutomaticInputSessionShutdown = true;
57                         PrincipalPermissionMode = PrincipalPermissionMode.UseWindowsGroups; // silly default value for us.
58                         SuppressAuditFailure = true;
59                         ValidateMustUnderstand = true;
60
61                         InputSessionShutdownHandlers = new SynchronizedCollection<IInputSessionShutdown> ();
62                         InstanceContextInitializers = new SynchronizedCollection<IInstanceContextInitializer> ();
63                         MessageInspectors = new SynchronizedCollection<IDispatchMessageInspector> ();
64                 }
65
66                 [MonoTODO]
67                 public AuditLogLocation SecurityAuditLogLocation { get; set; }
68
69                 [MonoTODO]
70                 public bool AutomaticInputSessionShutdown { get; set; }
71
72                 public ChannelDispatcher ChannelDispatcher {
73                         get { return EndpointDispatcher.ChannelDispatcher; }
74                 }
75
76                 [MonoTODO]
77                 public ConcurrencyMode ConcurrencyMode { get; set; }
78
79                 public EndpointDispatcher EndpointDispatcher { get; private set; }
80
81                 // FIXME: this is somewhat compromized solution to workaround
82                 // an issue that this runtime-creation-logic could result in
83                 // an infinite loop on callback instatiation between 
84                 // ClientRuntime, but so far it works by this property...
85                 internal bool HasCallbackRuntime {
86                         get { return callback_client_runtime != null; }
87                 }
88
89                 public ClientRuntime CallbackClientRuntime {
90                         get {
91                                 if (callback_client_runtime == null)
92                                         callback_client_runtime = new ClientRuntime (EndpointDispatcher.ContractName, EndpointDispatcher.ContractNamespace);
93                                 return callback_client_runtime;
94                         }
95                         internal set { callback_client_runtime = value; }
96                 }
97
98                 [MonoTODO]
99                 public ReadOnlyCollection<IAuthorizationPolicy> ExternalAuthorizationPolicies { get; set; }
100
101                 [MonoTODO]
102                 public bool IgnoreTransactionMessageProperty { get; set; }
103
104                 [MonoTODO]
105                 public bool ImpersonateCallerForAllOperations { get; set; }
106
107                 [MonoTODO]
108                 public SynchronizedCollection<IInputSessionShutdown> InputSessionShutdownHandlers { get; private set; }
109
110                 [MonoTODO]
111                 public SynchronizedCollection<IInstanceContextInitializer> InstanceContextInitializers { get; private set; }
112
113                 public IInstanceProvider InstanceProvider { get; set; }
114
115                 public IInstanceContextProvider InstanceContextProvider { get; set; }
116
117                 [MonoTODO]
118                 public AuditLevel MessageAuthenticationAuditLevel { get; set; }
119
120                 public SynchronizedCollection<IDispatchMessageInspector> MessageInspectors { get; private set; }
121
122                 public SynchronizedKeyedCollection<string,DispatchOperation> Operations {
123                         get { return operations; }
124                 }
125
126                 public IDispatchOperationSelector OperationSelector { get; set; }
127
128                 [MonoTODO]
129                 public PrincipalPermissionMode PrincipalPermissionMode { get; set; }
130
131                 [MonoTODO]
132                 public bool ReleaseServiceInstanceOnTransactionComplete { get; set; }
133
134                 [MonoTODO]
135                 public RoleProvider RoleProvider { get; set; }
136
137                 [MonoTODO]
138                 public AuditLevel ServiceAuthorizationAuditLevel { get; set; }
139
140                 [MonoTODO]
141                 public ServiceAuthorizationManager ServiceAuthorizationManager { get; set; }
142
143                 public InstanceContext SingletonInstanceContext { get; set; }
144
145                 [MonoTODO]
146                 public bool SuppressAuditFailure { get; set; }
147
148                 [MonoTODO]
149                 public SynchronizationContext SynchronizationContext { get; set; }
150
151                 [MonoTODO]
152                 public bool TransactionAutoCompleteOnSessionClose { get; set; }
153
154                 public Type Type { get; set; }
155
156                 public DispatchOperation UnhandledDispatchOperation { get; set; }
157
158                 public bool ValidateMustUnderstand { get; set; }
159         }
160 }