IoCConfiguration_proxyService.xmlΒΆ

This configuration file can be downloaded downloaded from IoCConfiguration_proxyService.xml.

  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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<?xml version="1.0" encoding="utf-8"?>

<!--
   The XML configuration file is validated against schema file IoC.Configuration.Schema.7579ADB2-0FBD-4210-A8CA-EE4B4646DB3F.xsd,
   which can be found in folder IoC.Configuration.Content in output directory.
   The schema file can also be downloaded from
   http://oroptimizer.com/ioc.configuration/V2/IoC.Configuration.Schema.7579ADB2-0FBD-4210-A8CA-EE4B4646DB3F.xsd or in source code
   project in Github.com.

   To use Visual Studio code completion based on schema contents, right click Properties on this file in Visual Studio, and in Schemas
   field pick the schema IoC.Configuration.Schema.7579ADB2-0FBD-4210-A8CA-EE4B4646DB3F.xsd.

   Before running the tests make sure to execute IoC.Configuration\Tests\IoC.Configuration.Tests\PostBuildCommands.bat to copy the dlls into
   folders specified in this configuration file.
   Also, modify the batch file to copy the Autofac and Ninject assemblies from Nuget packages folder on machine, where the test is run.
-->

<iocConfiguration
        xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
        xsi:noNamespaceSchemaLocation="http://oroptimizer.com/IoC.Configuration/V2/IoC.Configuration.Schema.7579ADB2-0FBD-4210-A8CA-EE4B4646DB3F.xsd">

    <!--The application should have write permissions to path specified in appDataDir.
      This is where dynamically generated DLLs are saved.-->
    <!--NOTE: path should be an absolute path, or should be converted to absolute path by some implementation of
     IoC.Configuration.AttributeValueTransformer.IAttributeValueTransformer. In this example the paths are converted by
     IoC.Configuration.Tests.FileFolderPathAttributeValueTransformer.-->
    <appDataDir
            path="TestFiles\AutogeneratedDlls\DynamicFiles_ProxyServiceTests"/>

    <plugins
            pluginsDirPath="TestFiles\PluginDlls">

        <!--
            Plugin assemblies will be in a folder with similar name under pluginsDirPath folder.
            The plugin folders will be included in assembly resolution mechanism.
            -->

        <!--A folder K:\...\IoC.Configuration\Tests\IoC.Configuration.Tests\bin\TestFiles\PluginDlls\Plugin1 should exist.  -->
        <plugin name="Plugin1"/>
        <plugin name="Plugin2" enabled="true"/>
        <plugin name="Plugin3" enabled="false"/>
    </plugins>

    <additionalAssemblyProbingPaths>
        <probingPath
                path="TestFiles\ThirdPartyLibs"/>
        <probingPath
                path="TestFiles\ContainerImplementations\Autofac"/>
        <probingPath
                path="TestFiles\ContainerImplementations\Ninject"/>
        <probingPath
                path="TestFiles\DynamicallyLoadedDlls"/>
    </additionalAssemblyProbingPaths>

    <assemblies>
        <!--Assemblies should be in one of the following locations:
            1) Executable's folder
            2) In folder specified in additionalAssemblyProbingPaths element.
            3) In one of the plugin folders specified in plugins element (only for assemblies with plugin attribute) -->

        <!--
        Use "overrideDirectory" attribute, to make the assembly path explicit, rather then searching for
        an assembly in predefined folders, which also include probing paths specified in additionalAssemblyProbingPaths element.
        -->
        <assembly name="IoC.Configuration.Autofac" alias="autofac_ext"/>
        <assembly name="IoC.Configuration.Ninject" alias="ninject_ext"/>

        <assembly name="TestProjects.Modules" alias="modules"/>

        <assembly name="TestProjects.DynamicallyLoadedAssembly1"
                  alias="dynamic1"/>

        <assembly name="TestProjects.DynamicallyLoadedAssembly2"
                  alias="dynamic2"/>

        <assembly name="TestProjects.TestPluginAssembly1"
                  alias="pluginassm1" plugin="Plugin1"/>

        <assembly name="TestProjects.TestPluginAssembly2"
                  alias="pluginassm2" plugin="Plugin2"/>

        <assembly name="TestProjects.TestPluginAssembly3"
                  alias="pluginassm3" plugin="Plugin3"/>

        <assembly name="TestProjects.ModulesForPlugin1"
                  alias="modules_plugin1" plugin="Plugin1"/>

        <assembly name="TestProjects.SharedServices" alias="shared_services"/>

        <assembly name="IoC.Configuration.Tests" alias="tests"/>
    </assemblies>

    <typeDefinitions>
        <typeDefinition alias="IAppData" type="IoC.Configuration.Tests.ProxyService.Services.IAppData"/>
        <typeDefinition alias="AppData" type="IoC.Configuration.Tests.ProxyService.Services.AppData"/>
        <typeDefinition alias="Guid" type="System.Guid"/>
        <typeDefinition alias="ListOfInt" type="System.Collections.Generic.List[System.Int32]"/>
    </typeDefinitions>

    <parameterSerializers>
        <serializers></serializers>
    </parameterSerializers>

    <!--The value of type attribute should be a type that implements
      IoC.Configuration.DiContainer.IDiManager-->
    <diManagers activeDiManagerName="Autofac">
        <!-- TODO:-->
        <diManager name="Ninject" type="IoC.Configuration.Ninject.NinjectDiManager"
                   assembly="ninject_ext">
            <!--
                  Use parameters element to specify constructor parameters,
                  if the type specified in 'type' attribute has non-default constructor.
                  -->
            <!--<parameters>
                  </parameters>-->
        </diManager>

        <diManager name="Autofac" type="IoC.Configuration.Autofac.AutofacDiManager"
                   assembly="autofac_ext">
        </diManager>
    </diManagers>

    <!--
      If settingsRequestor element is used, the type in type attribute should
      specify a type that implements IoC.Configuration.ISettingsRequestor.
      The implementation specifies a collection of required settings that should be present
      in settings element.
      Note, the type specified in type attribute is fully integrated into a dependency
      injection framework. In other words, constructor parameters will be injected using
      bindings specified in dependencyInjection element.
      -->

    <settings>
        <constructedValue name="DefaultAppData" typeRef="AppData">
            <injectedProperties>
                <object name="ApplicationId" typeRef="Guid" value="09E7ABD4-1BA1-4683-BEF5-EFA8266D7308"/>
                <string name="Name" value="Default Application"/>
            </injectedProperties>
        </constructedValue>

    </settings>

    <dependencyInjection>
        <modules>
            <!--<module type="IoC.Configuration.Tests.AutoService.AutoServiceTestsModule" />-->
        </modules>
        <services>

            <!--IoC.Configuration.Tests.ProxyService.Services.IAppManager will be resolved
            by resolving IoC.Configuration.Tests.ProxyService.Services.IAppManager_Extension.-->
            <proxyService type="IoC.Configuration.Tests.ProxyService.Services.IAppManager">
                <serviceToProxy type="IoC.Configuration.Tests.ProxyService.Services.IAppManager_Extension"/>
            </proxyService>

            <!--IoC.Configuration.Tests.ProxyService.Services.IAppManager2 will also be resolved to
                IoC.Configuration.Tests.ProxyService.Services.IAppManager_Extension.-->
            <proxyService type="IoC.Configuration.Tests.ProxyService.Services.IAppManager2">
                <serviceToProxy type="IoC.Configuration.Tests.ProxyService.Services.IAppManager_Extension"/>
            </proxyService>

            <!--
                AppManagerUser has a constructor with parameter of type IAppManager.
                Since we have a proxyService element that resolves IAppManager to IAppManager_Extension,
                the object injected into constructor will be resolved by resolving the service IAppManager_Extension.
                IAppManager_Extension is auto-implemented in autoGeneratedServices element, however, it
                can have regular implementation in code as well.
                -->
            <selfBoundService type="IoC.Configuration.Tests.ProxyService.Services.AppManagerUser" scope="singleton"/>

            <!--
                AppManagerUser2 has a constructor with parameter of type  IAppManager2.
                Since we have a proxyService element that resolves IAppManager2 to IAppManager_Extension,
                the object injected into will be resolved by resolving the service IAppManager_Extension.
                -->
            <selfBoundService type="IoC.Configuration.Tests.ProxyService.Services.AppManager2User" scope="singleton"/>

            <service type="IoC.Configuration.Tests.ProxyService.Services.IInterface1_Extension">
                <implementation type="IoC.Configuration.Tests.ProxyService.Services.Interface1_Extension_Impl1"
                                scope="singleton"/>
            </service>

            <!--IoC.Configuration.Tests.ProxyService.Services.IInterface1 will be resolved by
              resolving IoC.Configuration.Tests.ProxyService.Services.IInterface1_Extension.-->
            <proxyService type="IoC.Configuration.Tests.ProxyService.Services.IInterface1">
                <serviceToProxy type="IoC.Configuration.Tests.ProxyService.Services.IInterface1_Extension"/>
            </proxyService>

            <!--
                Interface1User has a constructor with parameter of type IInterface1.
                Since we have a proxyService element that resolves IInterface1 to IInterface1_Extension,
                the object injected into constructor will be resolved by resolving the service IInterface1_Extension.
                -->
            <selfBoundService type="IoC.Configuration.Tests.ProxyService.Services.Interface1User" scope="singleton"/>

            <!--System.Collections.Generic.List<System.Int32> will be bound to a list of three integers: 19, 2, 17-->
            <service typeRef="ListOfInt">
                <valueImplementation scope="singleton">
                    <collection>
                        <int32 value="19"/>
                        <int32 value="2"/>
                        <int32 value="17"/>
                    </collection>
                </valueImplementation>
            </service>

            <!--Resolving System.Collections.Generic.IEnumerable<System.Int32> will return the same value as resolving
                  System.Collections.Generic.List<System.Int32>-->
            <proxyService type="System.Collections.Generic.IEnumerable[System.Int32]">
                <serviceToProxy typeRef="ListOfInt"/>
            </proxyService>

            <!--Resolving System.Collections.Generic.IReadOnlyList<System.Int32> will return the same value as resolving
                  System.Collections.Generic.List<System.Int32>-->
            <proxyService type="System.Collections.Generic.IReadOnlyList[System.Int32]">
                <serviceToProxy typeRef="ListOfInt"/>
            </proxyService>

            <!--Resolving System.Collections.Generic.IList<System.Int32> will return the same value as resolving
                  System.Collections.Generic.List<System.Int32>-->
            <proxyService type="System.Collections.Generic.IList[System.Int32]">
                <serviceToProxy typeRef="ListOfInt"/>
            </proxyService>

            <!--START-Test binding an interface to the ame instance to which a self-bound class is bound-->
            <selfBoundService type="SharedServices.Implementations.Interface13_Impl1" scope="singleton" />

            <!--NOTE: Using proxyService allows us to bind
            SharedServices.Interfaces.IInterface13 to the same instance of SharedServices.Implementations.Interface13_Impl1 to which
            SharedServices.Implementations.Interface13_Impl1 was bound using selfBoundService element.

            If we used "implementation" element under service and specified a type SharedServices.Implementations.Interface13_Impl1
            instead of using "proxyService", then SharedServices.Interfaces.IInterface13 would have been
            bound to a different instance of SharedServices.Implementations.Interface13_Impl1. In other words resolving
            SharedServices.Implementations.Interface13_Impl1 and SharedServices.Interfaces.IInterface13 would have resulted in
            different instances of SharedServices.Implementations.Interface13_Impl1.
            Using "proxyService" element might be useful when we have module(s) that scan assemblies and self-binds
            non-abstract classes. In this cases we can use "proxyService" element if we want the interface
            specified in "proxyService" element to resolve to exactly the same value to which the self bound class is bound.
            -->
            <proxyService type="SharedServices.Interfaces.IInterface13">
                <serviceToProxy type="SharedServices.Implementations.Interface13_Impl1"/>
            </proxyService>

            <service type="SharedServices.Interfaces.IInterface14">
                <implementation type="SharedServices.Implementations.Interface14_Impl1" scope="singleton" />
            </service>

            <!--END-Test binding an interface to the ame instance to which a self-bound class is bound-->
        </services>

        <autoGeneratedServices>
            <!--The scope for autoService implementations is always singleton -->
            <!--IAppManager_Extension extends IAppManager, so can implement properties and method in both
              IAppManager and IAppManager_Extension
            -->
            <autoService interface="IoC.Configuration.Tests.ProxyService.Services.IAppManager_Extension">
                <!--  IAppData IAppManager.GetApp(System.Guid applicationId):-->
                <autoMethod name="GetApp"
                            returnTypeRef="IAppData"
                            reuseValue="true">
                    <methodSignature>
                        <object typeRef="Guid"/>
                    </methodSignature>

                    <if parameter1="3907D19A-E53C-4471-B1B1-A3E0C36482B6">
                        <constructedValue typeRef="AppData">
                            <injectedProperties>
                                <object name="ApplicationId" typeRef="Guid"
                                        value="3907D19A-E53C-4471-B1B1-A3E0C36482B6"/>
                                <string name="Name" value="App1"/>
                            </injectedProperties>
                        </constructedValue>
                    </if>

                    <if parameter1="09E7ABD4-1BA1-4683-BEF5-EFA8266D7308">
                        <constructedValue typeRef="AppData">
                            <injectedProperties>
                                <object name="ApplicationId" typeRef="Guid"
                                        value="09E7ABD4-1BA1-4683-BEF5-EFA8266D7308"/>
                                <string name="Name" value="App2"/>
                            </injectedProperties>
                        </constructedValue>
                    </if>

                    <default>
                        <settingValue settingName="DefaultAppData"/>
                    </default>
                </autoMethod>

                <!---bool IAppManager2.IsPublicApp(Guid applicationId):-->
                <autoMethod name="IsPublicApp" returnType="System.Boolean">
                    <methodSignature>
                        <object paramName="applicationId" typeRef="Guid"/>
                    </methodSignature>

                    <if parameter1="09E7ABD4-1BA1-4683-BEF5-EFA8266D7308">
                        <boolean value="true"/>
                    </if>

                    <default>
                        <boolean value="false"/>
                    </default>
                </autoMethod>

                <!-- IAppData IAppManager_Extension.DefaultApp { get; }-->
                <autoProperty name="DefaultApp" returnTypeRef="IAppData">
                    <settingValue settingName="DefaultAppData"/>
                </autoProperty>
            </autoService>
        </autoGeneratedServices>
    </dependencyInjection>

    <startupActions>

    </startupActions>

    <pluginsSetup>
        <pluginSetup plugin="Plugin1">
            <!--The type in pluginImplementation should be non-abstract class
                that implements IoC.Configuration.IPlugin and which has a public constructor-->
            <pluginImplementation type="TestPluginAssembly1.Implementations.Plugin1_Simple">
            </pluginImplementation>

            <settings>
                <int32 name="Int32Setting1" value="10"/>
                <string name="StringSetting1" value="Some text"/>
            </settings>

            <dependencyInjection>
                <modules>
                </modules>

                <services>
                    <service type="TestPluginAssembly1.Interfaces.IDemoProxyService_Extension">
                        <implementation type="TestPluginAssembly1.Implementations.DemoProxyService_Extension_Impl"
                                        scope="singleton"/>
                    </service>

                    <!--TestPluginAssembly1.Interfaces.IDemoProxyServicewill be resolved by
                        resolving TestPluginAssembly1.Interfaces.IDemoProxyService_Extension.-->
                    <proxyService type="TestPluginAssembly1.Interfaces.IDemoProxyService">
                        <serviceToProxy type="TestPluginAssembly1.Interfaces.IDemoProxyService_Extension"/>
                    </proxyService>

                    <!--
                    DemoProxyServiceUser has a constructor with parameter of type IDemoProxyService.
                    Since we have a proxyService element that resolves IDemoProxyService to IDemoProxyService_Extension,
                    the object injected into constructor will be resolved by resolving the service IDemoProxyService_Extension.
                    -->
                    <selfBoundService type="TestPluginAssembly1.Implementations.DemoProxyServiceUser"
                                      scope="singleton"/>
                </services>

                <autoGeneratedServices>

                </autoGeneratedServices>
            </dependencyInjection>
        </pluginSetup>

        <pluginSetup plugin="Plugin2">
            <pluginImplementation type="TestPluginAssembly2.Implementations.Plugin2" assembly="pluginassm2">
                <parameters>
                    <boolean name="param1" value="true"/>
                    <double name="param2" value="25.3"/>
                    <string name="param3" value="String value"/>
                </parameters>
            </pluginImplementation>
            <settings>
            </settings>
            <dependencyInjection>
                <modules>
                </modules>
                <services>
                </services>
                <autoGeneratedServices>
                </autoGeneratedServices>
            </dependencyInjection>
        </pluginSetup>

        <pluginSetup plugin="Plugin3">
            <pluginImplementation type="TestPluginAssembly3.Implementations.Plugin3" assembly="pluginassm3">

            </pluginImplementation>
            <settings>
            </settings>
            <dependencyInjection>
                <modules>
                </modules>
                <services>
                </services>
                <autoGeneratedServices>
                </autoGeneratedServices>
            </dependencyInjection>
        </pluginSetup>
    </pluginsSetup>
</iocConfiguration>