IoCConfiguration_settingValue_ReferencingInConfiguration.xmlΒΆ

This configuration file can be downloaded downloaded from IoCConfiguration_settingValue_ReferencingInConfiguration.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
<?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_SettingValue" />

  <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>

  </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>
    <int32 name="defaultAppId" value="7"/>
    <string name="defaultAppDescr" value="Default App"/>
    <int32 name="app1" value="37"/>
    <string name="android" value="Android"/>
    <int32 name="defaultInt" value="-1"/>

    <!--This setting is redefined in plugin1 settings section to be of int type.
    Any services that reference a setting with name defaultColor, will be referencing the setting
    in plugin1
    -->
    <string name="defaultColor" value="Brown" />
  </settings>

  <dependencyInjection>
    <modules>
    </modules>
    <services>
      <service type="System.Int32">
        <valueImplementation scope="transient">
          <!--Demo of using a setting value in valueImplementation.-->
          <settingValue settingName="defaultInt"/>
        </valueImplementation>
      </service>

      <service type="System.Collections.Generic.IReadOnlyList[System.Int32]">
        <valueImplementation scope="singleton">
          <collection>
            <!--Example of using setting value in collection element-->
            <settingValue settingName="defaultInt"/>
            <settingValue settingName="app1"/>
            <int32 value="78"/>
          </collection>
        </valueImplementation>
      </service>

      <service type="IoC.Configuration.Tests.SettingValue.Services.IAppInfo" >
        <implementation type="IoC.Configuration.Tests.SettingValue.Services.AppInfo" scope="transient">
          <parameters>
            <!--Demo of using settingValue to inject value into an implementation constructor.-->
            <settingValue name="appId" settingName="defaultAppId"/>
          </parameters>
          <injectedProperties>
            <!--Demo of using settingValue to inject value into an implementation property.-->
            <settingValue name="AppDescription" settingName="defaultAppDescr"/>
          </injectedProperties>
        </implementation>
      </service>

      <service type="System.Collections.Generic.IReadOnlyList[IoC.Configuration.Tests.SettingValue.Services.IAppInfo]">
        <valueImplementation scope="singleton">
          <collection>
            <constructedValue type="IoC.Configuration.Tests.SettingValue.Services.AppInfo">
              <parameters>
                <!--Demo of using settingValue to inject a constructor parameter value in constructedValue element.-->
                <settingValue name="appId" settingName="defaultAppId"/>
              </parameters>
              <injectedProperties>
                <!--Demo of using settingValue to inject a property parameter value in constructedValue element.-->
                <settingValue name="AppDescription" settingName="defaultAppDescr"/>
              </injectedProperties>
            </constructedValue>
          </collection>
        </valueImplementation>
      </service>

    </services>

    <autoGeneratedServices>
      <!--The scope for autoService implementations is always singleton -->
      <autoService interface="IoC.Configuration.Tests.SettingValue.Services.IAppIds">

        <autoMethod name="GetDefaultAppId" returnType="System.Int32">
          <default>
            <settingValue settingName="defaultAppId"/>
          </default>
        </autoMethod>

        <autoMethod name="GetAppIds" returnType="System.Collections.Generic.IReadOnlyList[System.Int32]">
          <methodSignature>
            <string paramName="platformType"/>
          </methodSignature>
          <!--Demo of using the value of setting named "android" in if condition in autoMethod-->
          <if parameter1="_settings:android">
            <collection>
              <!--Demo of setting value used as one of returned values in autoMethod if element.-->
              <settingValue settingName="defaultAppId"/>
              <settingValue settingName="app1"/>
              <int32 value="9"/>
            </collection>
          </if>

          <default>
            <collection>
              <!--Demo of setting value used as one of returned values in autoMethod default element.-->
              <settingValue settingName="defaultAppId"/>
              <int32 value="8"/>
            </collection>
          </default>
        </autoMethod>

        <autoProperty name="MainAppId" returnType="System.Int32">
          <!--Demo of setting value used as return value of autoProperty element.-->
          <settingValue settingName="defaultAppId"/>
        </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>

        <!--This setting with string type is also defined in non-plugin section.
          Since we re-defined the setting, any the references in plugin section to setting with name defaultColor,
          will be referencing the setting redefined here.
        -->
        <int32 name="defaultColor" value="4997399" />

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

      <dependencyInjection>
        <modules>
        </modules>

        <services>
          <service type="TestPluginAssembly1.Interfaces.IDoor">
            <implementation type="TestPluginAssembly1.Implementations.Door" scope="transient">
              <parameters>
                <settingValue name="color" settingName="defaultColor"/>
                <int32 name="height" value="80"/>
              </parameters>
            </implementation>

          </service>
        </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>