jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
#region Apache License
//
// Licensed to the Apache Software Foundation (ASF) under one or more 
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership. 
// The ASF licenses this file to you under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with 
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#endregion
 
using System;
 
#if !NETCF_1_0
using System.Collections;
#endif
 
using log4net.Core;
 
namespace log4net.Util
{
    /// <summary>
    /// Implementation of Stack for the <see cref="log4net.ThreadContext"/>
    /// </summary>
    /// <remarks>
    /// <para>
    /// Implementation of Stack for the <see cref="log4net.ThreadContext"/>
    /// </para>
    /// </remarks>
    /// <author>Nicko Cadell</author>
    public sealed class ThreadContextStack : IFixingRequired
    {
        #region Private Static Fields
 
        /// <summary>
        /// The stack store.
        /// </summary>
        private Stack m_stack = new Stack();
 
        #endregion Private Static Fields
 
        #region Public Instance Constructors
 
        /// <summary>
        /// Internal constructor
        /// </summary>
        /// <remarks>
        /// <para>
        /// Initializes a new instance of the <see cref="ThreadContextStack" /> class. 
        /// </para>
        /// </remarks>
        internal ThreadContextStack()
        {
        }
 
        #endregion Public Instance Constructors
 
        #region Public Properties
 
        /// <summary>
        /// The number of messages in the stack
        /// </summary>
        /// <value>
        /// The current number of messages in the stack
        /// </value>
        /// <remarks>
        /// <para>
        /// The current number of messages in the stack. That is
        /// the number of times <see cref="Push"/> has been called
        /// minus the number of times <see cref="Pop"/> has been called.
        /// </para>
        /// </remarks>
        public int Count
        {
            get { return m_stack.Count; }
        }
 
        #endregion // Public Properties
 
        #region Public Methods
 
        /// <summary>
        /// Clears all the contextual information held in this stack.
        /// </summary>
        /// <remarks>
        /// <para>
        /// Clears all the contextual information held in this stack.
        /// Only call this if you think that this tread is being reused after
        /// a previous call execution which may not have completed correctly.
        /// You do not need to use this method if you always guarantee to call
        /// the <see cref="IDisposable.Dispose"/> method of the <see cref="IDisposable"/>
        /// returned from <see cref="Push"/> even in exceptional circumstances,
        /// for example by using the <c>using(log4net.ThreadContext.Stacks["NDC"].Push("Stack_Message"))</c> 
        /// syntax.
        /// </para>
        /// </remarks>
        public void Clear() 
        {
            m_stack.Clear();
        }
 
        /// <summary>
        /// Removes the top context from this stack.
        /// </summary>
        /// <returns>The message in the context that was removed from the top of this stack.</returns>
        /// <remarks>
        /// <para>
        /// Remove the top context from this stack, and return
        /// it to the caller. If this stack is empty then an
        /// empty string (not <see langword="null"/>) is returned.
        /// </para>
        /// </remarks>
        public string Pop() 
        {
            Stack stack = m_stack;
            if (stack.Count > 0)
            {
                return ((StackFrame)(stack.Pop())).Message;
            }
            return "";
        }
 
        /// <summary>
        /// Pushes a new context message into this stack.
        /// </summary>
        /// <param name="message">The new context message.</param>
        /// <returns>
        /// An <see cref="IDisposable"/> that can be used to clean up the context stack.
        /// </returns>
        /// <remarks>
        /// <para>
        /// Pushes a new context onto this stack. An <see cref="IDisposable"/>
        /// is returned that can be used to clean up this stack. This
        /// can be easily combined with the <c>using</c> keyword to scope the
        /// context.
        /// </para>
        /// </remarks>
        /// <example>Simple example of using the <c>Push</c> method with the <c>using</c> keyword.
        /// <code lang="C#">
        /// using(log4net.ThreadContext.Stacks["NDC"].Push("Stack_Message"))
        /// {
        ///        log.Warn("This should have an ThreadContext Stack message");
        ///    }
        /// </code>
        /// </example>
        public IDisposable Push(string message) 
        {
            Stack stack = m_stack;
            stack.Push(new StackFrame(message, (stack.Count>0) ? (StackFrame)stack.Peek() : null));
 
            return new AutoPopStackFrame(stack, stack.Count - 1);
        }
 
        #endregion Public Methods
 
        #region Internal Methods
 
        /// <summary>
        /// Gets the current context information for this stack.
        /// </summary>
        /// <returns>The current context information.</returns>
        internal string GetFullMessage() 
        {
            Stack stack = m_stack;
            if (stack.Count > 0)
            {
                return ((StackFrame)(stack.Peek())).FullMessage;
            }
            return null;
        }
 
        /// <summary>
        /// Gets and sets the internal stack used by this <see cref="ThreadContextStack"/>
        /// </summary>
        /// <value>The internal storage stack</value>
        /// <remarks>
        /// <para>
        /// This property is provided only to support backward compatability 
        /// of the <see cref="NDC"/>. Tytpically the internal stack should not
        /// be modified.
        /// </para>
        /// </remarks>
        internal Stack InternalStack
        {
            get { return m_stack; }
            set { m_stack = value; }
        }
  
        #endregion Internal Methods
 
        /// <summary>
        /// Gets the current context information for this stack.
        /// </summary>
        /// <returns>Gets the current context information</returns>
        /// <remarks>
        /// <para>
        /// Gets the current context information for this stack.
        /// </para>
        /// </remarks>
        public override string ToString()
        {
            return GetFullMessage();
        }
 
        /// <summary>
        /// Get a portable version of this object
        /// </summary>
        /// <returns>the portable instance of this object</returns>
        /// <remarks>
        /// <para>
        /// Get a cross thread portable version of this object
        /// </para>
        /// </remarks>
        object IFixingRequired.GetFixedObject()
        {
            return GetFullMessage();
        }
 
        /// <summary>
        /// Inner class used to represent a single context frame in the stack.
        /// </summary>
        /// <remarks>
        /// <para>
        /// Inner class used to represent a single context frame in the stack.
        /// </para>
        /// </remarks>
        private sealed class StackFrame 
        {
            #region Private Instance Fields
 
            private readonly string m_message;
            private readonly StackFrame m_parent;
            private string m_fullMessage = null;
    
            #endregion
 
            #region Internal Instance Constructors
 
            /// <summary>
            /// Constructor
            /// </summary>
            /// <param name="message">The message for this context.</param>
            /// <param name="parent">The parent context in the chain.</param>
            /// <remarks>
            /// <para>
            /// Initializes a new instance of the <see cref="StackFrame" /> class
            /// with the specified message and parent context.
            /// </para>
            /// </remarks>
            internal StackFrame(string message, StackFrame parent) 
            {
                m_message = message;
                m_parent = parent;
 
                if (parent == null) 
                {
                    m_fullMessage = message;
                } 
            }
 
            #endregion Internal Instance Constructors
 
            #region Internal Instance Properties
 
            /// <summary>
            /// Get the message.
            /// </summary>
            /// <value>The message.</value>
            /// <remarks>
            /// <para>
            /// Get the message.
            /// </para>
            /// </remarks>
            internal string Message
            {
                get { return m_message; }
            }
 
            /// <summary>
            /// Gets the full text of the context down to the root level.
            /// </summary>
            /// <value>
            /// The full text of the context down to the root level.
            /// </value>
            /// <remarks>
            /// <para>
            /// Gets the full text of the context down to the root level.
            /// </para>
            /// </remarks>
            internal string FullMessage
            {
                get 
                {
                    if (m_fullMessage == null && m_parent != null)
                    {
                        m_fullMessage = string.Concat(m_parent.FullMessage, " ", m_message);
                    }
                    return m_fullMessage; 
                }
            }
 
            #endregion Internal Instance Properties
        }
 
        /// <summary>
        /// Struct returned from the <see cref="ThreadContextStack.Push"/> method.
        /// </summary>
        /// <remarks>
        /// <para>
        /// This struct implements the <see cref="IDisposable"/> and is designed to be used
        /// with the <see langword="using"/> pattern to remove the stack frame at the end of the scope.
        /// </para>
        /// </remarks>
        private struct AutoPopStackFrame : IDisposable
        {
            #region Private Instance Fields
 
            /// <summary>
            /// The ThreadContextStack internal stack
            /// </summary>
            private Stack m_frameStack;
 
            /// <summary>
            /// The depth to trim the stack to when this instance is disposed
            /// </summary>
            private int m_frameDepth;
 
            #endregion Private Instance Fields
 
            #region Internal Instance Constructors
 
            /// <summary>
            /// Constructor
            /// </summary>
            /// <param name="frameStack">The internal stack used by the ThreadContextStack.</param>
            /// <param name="frameDepth">The depth to return the stack to when this object is disposed.</param>
            /// <remarks>
            /// <para>
            /// Initializes a new instance of the <see cref="AutoPopStackFrame" /> class with
            /// the specified stack and return depth.
            /// </para>
            /// </remarks>
            internal AutoPopStackFrame(Stack frameStack, int frameDepth)
            {
                m_frameStack = frameStack;
                m_frameDepth = frameDepth;
            }
 
            #endregion Internal Instance Constructors
 
            #region Implementation of IDisposable
 
            /// <summary>
            /// Returns the stack to the correct depth.
            /// </summary>
            /// <remarks>
            /// <para>
            /// Returns the stack to the correct depth.
            /// </para>
            /// </remarks>
            public void Dispose()
            {
                if (m_frameDepth >= 0 && m_frameStack != null)
                {
                    while(m_frameStack.Count > m_frameDepth)
                    {
                        m_frameStack.Pop();
                    }
                }
            }
 
            #endregion Implementation of IDisposable
        }
 
#if NETCF_1_0
        /// <summary>
        /// Subclass of <see cref="System.Collections.Stack"/> to
        /// provide missing methods.
        /// </summary>
        /// <remarks>
        /// <para>
        /// The Compact Framework version of the <see cref="System.Collections.Stack"/>
        /// class is missing the <c>Clear</c> and <c>Clone</c> methods.
        /// This subclass adds implementations of those missing methods.
        /// </para>
        /// </remarks>
        public class Stack : System.Collections.Stack
        {
            /// <summary>
            /// Clears the stack of all elements.
            /// </summary>
            /// <remarks>
            /// <para>
            /// Clears the stack of all elements.
            /// </para>
            /// </remarks>
            public void Clear()
            {
                while(Count > 0)
                {
                    Pop();
                }
            }
 
            /// <summary>
            /// Makes a shallow copy of the stack's elements.
            /// </summary>
            /// <returns>A new stack that has a shallow copy of the stack's elements.</returns>
            /// <remarks>
            /// <para>
            /// Makes a shallow copy of the stack's elements.
            /// </para>
            /// </remarks>
            public Stack Clone()
            {
                Stack res = new Stack();
                object[] items = ToArray();
                foreach(object item in items)
                {
                    res.Push(item);
                }
                return res;
            }
        }
#endif
    }
}