A
download Configuration.cs
Language: C#
LOC: 399
Project Info
ncindy - NCindy is a .NET port of the Cind...work.(ncindy)
Server: Google
Type: svn
...indy\trunk\src\NCindy\Util\
   AbstractDisposable.cs
   AysncCallWrapper.cs
   Configuration.cs
   ElapsedTime.cs
   LangHelper.cs
   LockHelper.cs
   SocketFactory.cs
   ValueTypeWrapper.cs
   WinSock2Wrapper.cs

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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;

namespace NCindy.Util
{
    internal sealed class NCindyConfigurationSectionGroup : ConfigurationSectionGroup
    {

    }


    internal sealed class BufferPoolTrunkConfiguration
    {

    }

    internal sealed class BufferPoolConfigurationSection : ConfigurationSection
    {
        [ConfigurationProperty("", IsDefaultCollection = true)]
        internal BufferPoolConfigurationCollection BufferPool
        {
            get
            {
                return (BufferPoolConfigurationCollection)this[""];
            }
        }


        [ConfigurationProperty("class", IsRequired = true)]
        public string Class
        {
            get
            {
                return (string)this["class"];
            }
        }
    }



    internal sealed class NCindyConfigurationSection : ConfigurationSection
    {
        [ConfigurationProperty("", IsDefaultCollection = true)]
        internal NCindyConfigurationCollection NCindy
        {
            get
            {
                return (NCindyConfigurationCollection)this[""];
            }
        }
    }


    internal sealed class BufferPoolConfigurationCollection : ConfigurationElementCollection
    {
        protected override ConfigurationElement CreateNewElement()
        {
            return new BufferPoolConfigurationElement();
        }
        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((BufferPoolConfigurationElement)element).BufferCapacity;
        }
        public override ConfigurationElementCollectionType CollectionType
        {
            get
            {
                return ConfigurationElementCollectionType.BasicMap;
            }
        }
        protected override string ElementName
        {
            get
            {
                return "trunk";
            }
        }
    }


    internal sealed class NCindyConfigurationCollection : ConfigurationElementCollection
    {
        protected override ConfigurationElement CreateNewElement()
        {
            return new NCindyConfigurationElement();
        }
        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((NCindyConfigurationElement)element).Key;
        }
        public override ConfigurationElementCollectionType CollectionType
        {
            get
            {
                return ConfigurationElementCollectionType.BasicMap;
            }
        }

        protected override string ElementName
        {
            get
            {
                return "add";
            }
        }
    }


    internal sealed class BufferPoolConfigurationElement : ConfigurationElement
    {
        [ConfigurationProperty("bufferCapacity", IsKey = true, IsRequired = true)]
        public string BufferCapacity
        {
            get
            {
                return (string)base["bufferCapacity"];
            }
            set
            {
                base["bufferCapacity"] = value;
            }
        }
        [ConfigurationProperty("maxElementsCount", IsRequired = true)]
        public string MaxElementsCount
        {
            get
            {
                return (string)base["maxElementsCount"];
            }
            set
            {
                base["maxElementsCount"] = value;
            }
        }

        [ConfigurationProperty("initialElementsCount", IsRequired = true)]
        public string InitialElementsCount
        {
            get
            {
                return (string)base["initialElementsCount"];
            }
            set
            {
                base["initialElementsCount"] = value;
            }
        }
    }


    internal sealed class NCindyConfigurationElement : ConfigurationElement
    {
        [ConfigurationProperty("key", IsKey = true, IsRequired = true)]
        public string Key
        {
            get
            {
                return (string)base["key"];
            }
            set
            {
                base["key"] = value;
            }
        }
        [ConfigurationProperty("value", IsRequired = true)]
        public string Value
        {
            get
            {
                return (string)base["value"];
            }
            set
            {
                base["value"] = value;
            }
        }
    }

    public static class Configuration
    {
        private static readonly System.Collections.Specialized.NameValueCollection properties;

        static Configuration()
        {
            properties = new System.Collections.Specialized.NameValueCollection();

            System.Configuration.Configuration config = 
                ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

            ConfigurationSectionGroup ncindyGroup = 
                config.GetSectionGroup("NCindy") as NCindyConfigurationSectionGroup;

            foreach (ConfigurationSection cs in ncindyGroup.Sections)
            {
                if (cs is NCindyConfigurationSection)
                {
                    foreach (NCindyConfigurationElement ncindyElement in
                        ((NCindyConfigurationSection)cs).NCindy)
                    {
                        properties.Add(cs.SectionInformation.Name + "." + ncindyElement.Key,
                            ncindyElement.Value);
                    }
                }
            }
        }

        #region Static Methods

        public static String Get(String key)
        {
            return properties.Get(key);
        }

        public static String Get(String key, String defaultValue)
        {
            string value = properties.Get(key);
            if (value != null)
            {
                return value;
            }

            return defaultValue;
        }

        public static int GetInt(String key, int defaultValue)
        {
            String value = Get(key);
            if (value != null)
            {
                try
                {
                    return Int32.Parse(value);
                }
                catch (FormatException)
                {
                }
            }
            return defaultValue;
        }

        public static bool GetBoolean(String key, bool defaultValue)
        {
            String value = Get(key);
            if (value != null)
            {
                try
                {
                    return bool.Parse(key);
                }
                catch (FormatException)
                {
                }
            }
            return defaultValue;
        }

        #endregion

        #region Global
        public static bool DisableInnerException
        {
            get
            {
                return GetBoolean("Global.DisableInnerException", false);
            }
        }


        public static string LoggingLevel
        {
            get
            {
                return Get("Global.LoggingLevel", "Fatal");
            }
        }
        #endregion

        #region Buffer
        public static int MaxBufferPoolSize
        {
            get
            {
                return GetInt("Buffer.MaxBufferPoolSize", 1024);
            }
        }

        public static String DefaultBufferPoolClass
        {
            get
            {
                return Get("Buffer.DefaultBufferPoolClass", "NCindy.Buffer.DefaultBufferPool");
            }
        }

        public static bool UseLinkedBuffer
        {
            get
            {
                //TODO: To use this config, add linked buffer support.
                return false;
                //return GetBoolean("Buffer.UseLinkedBuffer", false);
            }
        }
        #endregion

        #region Dispatcher
        public static String DefaultDispatcherClass
        {
            get
            {
                return Get("Dispatcher.DefaultDispatcherClass", "DefaultDispatcher");
            }
        }

        public static int DispatcherConcurrent
        {
            get
            {
                return GetInt("Dispatcher.Concurrent", 1);
            }
        }

        public static int DispatcherCapacity
        {
            get
            {
                return GetInt("Dispatcher.Capacity", 1000);
            }
        }

        public static int DispatcherKeepAliveTime
        {
            get
            {
                return GetInt("Dispatcher.KeepAliveTime", 5000);
            }
        }
        #endregion

        #region Session

        public static int SessionTimeout
        {
            get
            {
                return GetInt("Session.Timeout", 0);
            }
        }

        public static int ReceiveBufferSize
        {
            get
            {
                return GetInt("Session.ReceiveBufferSize", -1);
            }
        }

        public static int SendBufferSize
        {
            get
            {
                return GetInt("Session.SendBufferSize", -1);
            }
        }

        public static bool ReuseSessionAddress
        {
            get
            {
                return GetBoolean("Session.ReuseAddress", false);
            }
        }

        public static bool TcpNoDelay
        {
            get
            {
                return GetBoolean("Session.TcpNoDelay", true);
            }
        }

        public static int SoLinger
        {
            get
            {
                return GetInt("Session.SoLinger", -1);
            }
        }

        public static int ReadPacketSize
        {
            get
            {
                return GetInt("Session.ReadPacketSize", 8192);
            }
        }

        public static int WritePacketSize
        {
            // NIO channel do not handle WSAENOBUFS, so we can't direct write the
            // whole packet to channel.
            get
            {
                return GetInt("Session.WritePacketSize", 1024 * 1024);
            }
        }

        public static String DefaultTcpSessionClass
        {
            get
            {
                return Get("Session.DefaultTcpSessionClass", "AsyncSocketSession");
            }
        }

        public static String DefaultUdpSessionClass
        {
            get
            {
                return Get("Session.DefaultUdpSessionClass", "AsyncSocketSession");
            }
        }

        public static String DefaultPipeSessionClass
        {
            get
            {
                return Get("Session.DefaultPipeSessionClass", "PipeSession");
            }
        }

        //public static String DefaultFileSessionClass
        //{
        //    get
        //    {
        //        return Get("Session.DefaultFileSessionClass");
        //    }
        //} 
        #endregion

        #region Acceptor

        public static String DefaultTcpAcceptorClass
        {
            get
            {
                return Get("Acceptor.DefaultTcpAcceptorClass", "AsyncSocketSessionAcceptor");
            }
        }

        public static int AcceptorBacklog
        {
            get
            {
                return GetInt("Acceptor.Backlog", 100);
            }
        }

        public static bool ReuseAcceptorAddress
        {
            get
            {
                return GetBoolean("Acceptor.ReuseAddress", false);
            }
        }

        #endregion
    }
}

About Koders | Resources | Downloads | Support | Black Duck | Terms of Service | DMCA | Privacy Policy | Contact Us