forked from 47-studio-org/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
131 lines (111 loc) · 3.64 KB
/
Program.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
using Microsoft.ApplicationInsights;
using Microsoft.ApplicationInsights.Extensibility;
using System;
using System.Net;
using System.Security.Cryptography;
using System.Threading;
using System.Threading.Tasks;
namespace PostSharp.Samples.Profiling
{
[Profile]
internal class Program
{
static volatile bool cancel;
private static void Main(string[] args)
{
// TODO: Add your own instrumentation key.
const string instrumentationKey = "4fe9fc01-23cc-40ee-94e1-6dc532d861b9";
var telemetryConfiguration = new TelemetryConfiguration(instrumentationKey);
var telemetryClient = new TelemetryClient(telemetryConfiguration);
if (!telemetryClient.IsEnabled())
{
Console.Write("TelemetryClient is not enabled.");
return;
}
var period = TimeSpan.FromSeconds(10);
ProfilingServices.Initialize(telemetryClient, period);
Console.WriteLine($"Sampling every {period.TotalSeconds} seconds. Press Ctrl-C to stop, then wait a few seconds for completion.");
Console.CancelKeyPress += OnCancel;
var threads = new Thread[16];
for (var i = 0; i < threads.Length; i++)
{
threads[i] = new Thread(ThreadMain);
threads[i].Start();
}
foreach (var thread in threads)
{
thread.Join();
}
telemetryClient.Flush();
Console.WriteLine("Done");
}
private static void OnCancel(object sender, ConsoleCancelEventArgs e)
{
Console.WriteLine("Cancelling. Please wait until completion, otherwise the Application Insights buffer won't be flushed.");
cancel = true;
e.Cancel = true;
}
private static void ThreadMain()
{
while (!cancel)
{
MainCore();
}
}
private static void MainCore()
{
GetRandomBytes();
SleepSync();
SleepAsync().GetAwaiter().GetResult();
ReadAndHashSync();
ReadAndHashAsync().GetAwaiter().GetResult();
}
private static void SleepSync()
{
Thread.Sleep(200);
}
private static async Task SleepAsync()
{
await Task.Delay(200);
}
private static void GetRandomBytes()
{
for (var i = 0; i < 100; i++)
{
var generator = RandomNumberGenerator.Create();
var randomBytes = new byte[32 * 1024 * 1024];
generator.GetBytes(randomBytes);
}
}
private static void ReadAndHashSync()
{
var hashAlgorithm = HashAlgorithm.Create("SHA256");
hashAlgorithm.Initialize();
var webClient = new WebClient();
var buffer = new byte[16 * 1024];
using (var stream = webClient.OpenRead("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Robida_-_Ali-baba_page1.jpg/2880px-Robida_-_Ali-baba_page1.jpg"))
{
int countRead;
while ((countRead = stream.Read(buffer, 0, buffer.Length)) != 0)
{
hashAlgorithm.ComputeHash(buffer, 0, countRead);
}
}
}
private static async Task ReadAndHashAsync()
{
var hashAlgorithm = HashAlgorithm.Create("SHA256");
hashAlgorithm.Initialize();
var webClient = new WebClient();
var buffer = new byte[16 * 1024];
using (var stream = webClient.OpenRead("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Robida_-_Ali-baba_page1.jpg/2880px-Robida_-_Ali-baba_page1.jpg"))
{
int countRead;
while ((countRead = await stream.ReadAsync(buffer, 0, buffer.Length)) != 0)
{
hashAlgorithm.ComputeHash(buffer, 0, countRead);
}
}
}
}
}