ParallelTestHelper.cs 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #if NET_4_0
  2. // TestHelper.cs
  3. //
  4. // Copyright (c) 2008 Jérémie "Garuma" Laval
  5. //
  6. // Permission is hereby granted, free of charge, to any person obtaining a copy
  7. // of this software and associated documentation files (the "Software"), to deal
  8. // in the Software without restriction, including without limitation the rights
  9. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. // copies of the Software, and to permit persons to whom the Software is
  11. // furnished to do so, subject to the following conditions:
  12. //
  13. // The above copyright notice and this permission notice shall be included in
  14. // all copies or substantial portions of the Software.
  15. //
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. // THE SOFTWARE.
  23. //
  24. //
  25. using System;
  26. using System.Threading;
  27. using System.Collections.Concurrent;
  28. namespace MonoTests.System.Threading.Tasks
  29. {
  30. static class ParallelTestHelper
  31. {
  32. const int NumRun = 100;
  33. public static void Repeat (Action action)
  34. {
  35. Repeat (action, NumRun);
  36. }
  37. public static void Repeat (Action action, int numRun)
  38. {
  39. for (int i = 0; i < numRun; i++) {
  40. action ();
  41. }
  42. }
  43. public static void ParallelStressTest<TSource>(TSource obj, Action<TSource> action)
  44. {
  45. ParallelStressTest(obj, action, Environment.ProcessorCount + 2);
  46. }
  47. public static void ParallelStressTest<TSource>(TSource obj, Action<TSource> action, int numThread)
  48. {
  49. Thread[] threads = new Thread[numThread];
  50. for (int i = 0; i < numThread; i++) {
  51. threads[i] = new Thread(new ThreadStart(delegate { action(obj); }));
  52. threads[i].Start();
  53. }
  54. // Wait for the completion
  55. for (int i = 0; i < numThread; i++)
  56. threads[i].Join();
  57. }
  58. public static void ParallelAdder(IProducerConsumerCollection<int> collection, int numThread)
  59. {
  60. int startIndex = -10;
  61. ParallelTestHelper.ParallelStressTest(collection, delegate (IProducerConsumerCollection<int> c) {
  62. int start = Interlocked.Add(ref startIndex, 10);
  63. for (int i = start; i < start + 10; i++) {
  64. c.TryAdd(i);
  65. }
  66. }, numThread);
  67. }
  68. public static void ParallelRemover(IProducerConsumerCollection<int> collection, int numThread, int times)
  69. {
  70. int t = -1;
  71. ParallelTestHelper.ParallelStressTest(collection, delegate (IProducerConsumerCollection<int> c) {
  72. int num = Interlocked.Increment(ref t);
  73. int value;
  74. if (num < times)
  75. c.TryTake (out value);
  76. }, numThread);
  77. }
  78. }
  79. }
  80. #endif