aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ThirdParty/SmartThreadPool/STPPerformanceCounter.cs
blob: bd684996689a4c93a4b9b924c3b0bafdf82435e9 (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
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
using System;
using System.Diagnostics;
using System.Threading;

namespace Amib.Threading
{
    public interface ISTPPerformanceCountersReader
    {
        long InUseThreads { get; }
        long ActiveThreads { get; }
        long WorkItemsQueued { get; }
        long WorkItemsProcessed { get; }
    }
}

namespace Amib.Threading.Internal
{
    internal interface ISTPInstancePerformanceCounters : IDisposable
    {
        void Close();
        void SampleThreads(long activeThreads, long inUseThreads);
        void SampleWorkItems(long workItemsQueued, long workItemsProcessed);
        void SampleWorkItemsWaitTime(TimeSpan workItemWaitTime);
        void SampleWorkItemsProcessTime(TimeSpan workItemProcessTime);
    }
#if !(_WINDOWS_CE) && !(_SILVERLIGHT) && !(WINDOWS_PHONE)

    internal enum STPPerformanceCounterType
    {
        // Fields
        ActiveThreads				= 0,
        InUseThreads				= 1,
        OverheadThreads				= 2,
        OverheadThreadsPercent		= 3,
        OverheadThreadsPercentBase	= 4,

        WorkItems					= 5,
        WorkItemsInQueue			= 6,
        WorkItemsProcessed			= 7,

        WorkItemsQueuedPerSecond	= 8,
        WorkItemsProcessedPerSecond	= 9,

        AvgWorkItemWaitTime			= 10,
        AvgWorkItemWaitTimeBase		= 11,

        AvgWorkItemProcessTime		= 12,
        AvgWorkItemProcessTimeBase	= 13,

        WorkItemsGroups				= 14,

        LastCounter					= 14,
    }


    /// <summary>
    /// Summary description for STPPerformanceCounter.
    /// </summary>
    internal class STPPerformanceCounter
    {
        // Fields
        private readonly PerformanceCounterType _pcType;
        protected string _counterHelp;
        protected string _counterName;

        // Methods
        public STPPerformanceCounter(
            string counterName,
            string counterHelp,
            PerformanceCounterType pcType)
        {
            _counterName = counterName;
            _counterHelp = counterHelp;
            _pcType = pcType;
        }

        public void AddCounterToCollection(CounterCreationDataCollection counterData)
        {
            CounterCreationData counterCreationData = new CounterCreationData(
                _counterName,
                _counterHelp,
                _pcType);

            counterData.Add(counterCreationData);
        }

        // Properties
        public string Name
        {
            get
            {
                return _counterName;
            }
        }
    }

    internal class STPPerformanceCounters
    {
        // Fields
        internal STPPerformanceCounter[] _stpPerformanceCounters;
        private static readonly STPPerformanceCounters _instance;
        internal const string _stpCategoryHelp = "SmartThreadPool performance counters";
        internal const string _stpCategoryName = "SmartThreadPool";

        // Methods
        static STPPerformanceCounters()
        {
            _instance = new STPPerformanceCounters();
        }

        private STPPerformanceCounters()
        {
            STPPerformanceCounter[] stpPerformanceCounters = new STPPerformanceCounter[]
                {
                    new STPPerformanceCounter("Active threads", "The current number of available in the thread pool.", PerformanceCounterType.NumberOfItems32),
                    new STPPerformanceCounter("In use threads", "The current number of threads that execute a work item.", PerformanceCounterType.NumberOfItems32),
                    new STPPerformanceCounter("Overhead threads", "The current number of threads that are active, but are not in use.", PerformanceCounterType.NumberOfItems32),
                    new STPPerformanceCounter("% overhead threads", "The current number of threads that are active, but are not in use in percents.", PerformanceCounterType.RawFraction),
                    new STPPerformanceCounter("% overhead threads base", "The current number of threads that are active, but are not in use in percents.", PerformanceCounterType.RawBase),

                    new STPPerformanceCounter("Work Items", "The number of work items in the Smart Thread Pool. Both queued and processed.", PerformanceCounterType.NumberOfItems32),
                    new STPPerformanceCounter("Work Items in queue", "The current number of work items in the queue", PerformanceCounterType.NumberOfItems32),
                    new STPPerformanceCounter("Work Items processed", "The number of work items already processed", PerformanceCounterType.NumberOfItems32),

                    new STPPerformanceCounter("Work Items queued/sec", "The number of work items queued per second", PerformanceCounterType.RateOfCountsPerSecond32),
                    new STPPerformanceCounter("Work Items processed/sec", "The number of work items processed per second", PerformanceCounterType.RateOfCountsPerSecond32),

                    new STPPerformanceCounter("Avg. Work Item wait time/sec", "The average time a work item supends in the queue waiting for its turn to execute.", PerformanceCounterType.AverageCount64),
                    new STPPerformanceCounter("Avg. Work Item wait time base", "The average time a work item supends in the queue waiting for its turn to execute.", PerformanceCounterType.AverageBase),

                    new STPPerformanceCounter("Avg. Work Item process time/sec", "The average time it takes to process a work item.", PerformanceCounterType.AverageCount64),
                    new STPPerformanceCounter("Avg. Work Item process time base", "The average time it takes to process a work item.", PerformanceCounterType.AverageBase),

                    new STPPerformanceCounter("Work Items Groups", "The current number of work item groups associated with the Smart Thread Pool.", PerformanceCounterType.NumberOfItems32),
                };

            _stpPerformanceCounters = stpPerformanceCounters;
            SetupCategory();
        }

        private void SetupCategory()
        {
            if (!PerformanceCounterCategory.Exists(_stpCategoryName))
            {
                CounterCreationDataCollection counters = new CounterCreationDataCollection();

                for (int i = 0; i < _stpPerformanceCounters.Length; i++)
                {
                    _stpPerformanceCounters[i].AddCounterToCollection(counters);
                }

                PerformanceCounterCategory.Create(
                    _stpCategoryName,
                    _stpCategoryHelp,
                    PerformanceCounterCategoryType.MultiInstance,
                    counters);

            }
        }

        // Properties
        public static STPPerformanceCounters Instance
        {
            get
            {
                return _instance;
            }
        }
     }

    internal class STPInstancePerformanceCounter : IDisposable
    {
        // Fields
        private bool _isDisposed;
        private PerformanceCounter _pcs;

        // Methods
        protected STPInstancePerformanceCounter()
        {
            _isDisposed = false;
        }

        public STPInstancePerformanceCounter(
            string instance,
            STPPerformanceCounterType spcType) : this()
        {
            STPPerformanceCounters counters = STPPerformanceCounters.Instance;
            _pcs = new PerformanceCounter(
                STPPerformanceCounters._stpCategoryName,
                counters._stpPerformanceCounters[(int) spcType].Name,
                instance,
                false);
            _pcs.RawValue = _pcs.RawValue;
        }


        public void Close()
        {
            if (_pcs != null)
            {
                _pcs.RemoveInstance();
                _pcs.Close();
                _pcs = null;
            }
        }

        public void Dispose()
        {
            Dispose(true);
        }

        public virtual void Dispose(bool disposing)
        {
            if (!_isDisposed)
            {
                if (disposing)
                {
                    Close();
                }
            }
            _isDisposed = true;
        }

        public virtual void Increment()
        {
            _pcs.Increment();
        }

        public virtual void IncrementBy(long val)
        {
            _pcs.IncrementBy(val);
        }

        public virtual void Set(long val)
        {
            _pcs.RawValue = val;
        }
    }

    internal class STPInstanceNullPerformanceCounter : STPInstancePerformanceCounter
    {
        // Methods
        public override void Increment() {}
        public override void IncrementBy(long value) {}
        public override void Set(long val) {}
    }



    internal class STPInstancePerformanceCounters : ISTPInstancePerformanceCounters
    {
        private bool _isDisposed;
        // Fields
        private STPInstancePerformanceCounter[] _pcs;
        private static readonly STPInstancePerformanceCounter _stpInstanceNullPerformanceCounter;

        // Methods
        static STPInstancePerformanceCounters()
        {
            _stpInstanceNullPerformanceCounter = new STPInstanceNullPerformanceCounter();
        }

        public STPInstancePerformanceCounters(string instance)
        {
            _isDisposed = false;
            _pcs = new STPInstancePerformanceCounter[(int)STPPerformanceCounterType.LastCounter];

            // Call the STPPerformanceCounters.Instance so the static constructor will
            // intialize the STPPerformanceCounters singleton.
            STPPerformanceCounters.Instance.GetHashCode();

            for (int i = 0; i < _pcs.Length; i++)
            {
                if (instance != null)
                {
                    _pcs[i] = new STPInstancePerformanceCounter(
                        instance,
                        (STPPerformanceCounterType) i);
                }
                else
                {
                    _pcs[i] = _stpInstanceNullPerformanceCounter;
                }
            }
        }


        public void Close()
        {
            if (null != _pcs)
            {
                for (int i = 0; i < _pcs.Length; i++)
                {
                    if (null != _pcs[i])
                    {
                        _pcs[i].Dispose();
                    }
                }
                _pcs = null;
            }
        }

        public void Dispose()
        {
            Dispose(true);
        }

        public virtual void Dispose(bool disposing)
        {
            if (!_isDisposed)
            {
                if (disposing)
                {
                    Close();
                }
            }
            _isDisposed = true;
        }

        private STPInstancePerformanceCounter GetCounter(STPPerformanceCounterType spcType)
        {
            return _pcs[(int) spcType];
        }

        public void SampleThreads(long activeThreads, long inUseThreads)
        {
            GetCounter(STPPerformanceCounterType.ActiveThreads).Set(activeThreads);
            GetCounter(STPPerformanceCounterType.InUseThreads).Set(inUseThreads);
            GetCounter(STPPerformanceCounterType.OverheadThreads).Set(activeThreads-inUseThreads);

            GetCounter(STPPerformanceCounterType.OverheadThreadsPercentBase).Set(activeThreads-inUseThreads);
            GetCounter(STPPerformanceCounterType.OverheadThreadsPercent).Set(inUseThreads);
        }

        public void SampleWorkItems(long workItemsQueued, long workItemsProcessed)
        {
            GetCounter(STPPerformanceCounterType.WorkItems).Set(workItemsQueued+workItemsProcessed);
            GetCounter(STPPerformanceCounterType.WorkItemsInQueue).Set(workItemsQueued);
            GetCounter(STPPerformanceCounterType.WorkItemsProcessed).Set(workItemsProcessed);

            GetCounter(STPPerformanceCounterType.WorkItemsQueuedPerSecond).Set(workItemsQueued);
            GetCounter(STPPerformanceCounterType.WorkItemsProcessedPerSecond).Set(workItemsProcessed);
        }

        public void SampleWorkItemsWaitTime(TimeSpan workItemWaitTime)
        {
            GetCounter(STPPerformanceCounterType.AvgWorkItemWaitTime).IncrementBy((long)workItemWaitTime.TotalMilliseconds);
            GetCounter(STPPerformanceCounterType.AvgWorkItemWaitTimeBase).Increment();
        }

        public void SampleWorkItemsProcessTime(TimeSpan workItemProcessTime)
        {
            GetCounter(STPPerformanceCounterType.AvgWorkItemProcessTime).IncrementBy((long)workItemProcessTime.TotalMilliseconds);
            GetCounter(STPPerformanceCounterType.AvgWorkItemProcessTimeBase).Increment();
        }
    }
#endif

    internal class NullSTPInstancePerformanceCounters : ISTPInstancePerformanceCounters, ISTPPerformanceCountersReader
    {
        private static readonly NullSTPInstancePerformanceCounters _instance = new NullSTPInstancePerformanceCounters();

        public static NullSTPInstancePerformanceCounters Instance
        {
            get { return _instance; }
        }

         public void Close() {}
        public void Dispose() {}

        public void SampleThreads(long activeThreads, long inUseThreads) {}
        public void SampleWorkItems(long workItemsQueued, long workItemsProcessed) {}
        public void SampleWorkItemsWaitTime(TimeSpan workItemWaitTime) {}
        public void SampleWorkItemsProcessTime(TimeSpan workItemProcessTime) {}
        public long InUseThreads
        {
            get { return 0; }
        }

        public long ActiveThreads
        {
            get { return 0; }
        }

        public long WorkItemsQueued
        {
            get { return 0; }
        }

        public long WorkItemsProcessed
        {
            get { return 0; }
        }
    }

    internal class LocalSTPInstancePerformanceCounters : ISTPInstancePerformanceCounters, ISTPPerformanceCountersReader
    {
        public void Close() { }
        public void Dispose() { }

        private long _activeThreads;
        private long _inUseThreads;
        private long _workItemsQueued;
        private long _workItemsProcessed;

        public long InUseThreads
        {
            get { return _inUseThreads; }
        }

        public long ActiveThreads
        {
            get { return _activeThreads; }
        }

        public long WorkItemsQueued
        {
            get { return _workItemsQueued; }
        }

        public long WorkItemsProcessed
        {
            get { return _workItemsProcessed; }
        }

        public void SampleThreads(long activeThreads, long inUseThreads)
        {
            _activeThreads = activeThreads;
            _inUseThreads = inUseThreads;
        }

        public void SampleWorkItems(long workItemsQueued, long workItemsProcessed)
        {
            _workItemsQueued = workItemsQueued;
            _workItemsProcessed = workItemsProcessed;
        }

        public void SampleWorkItemsWaitTime(TimeSpan workItemWaitTime)
        {
            // Not supported
        }

        public void SampleWorkItemsProcessTime(TimeSpan workItemProcessTime)
        {
            // Not supported
        }
    }
}