forked from MiniProfiler/dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSqlServerCeStorage.cs
More file actions
332 lines (310 loc) · 13.2 KB
/
SqlServerCeStorage.cs
File metadata and controls
332 lines (310 loc) · 13.2 KB
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
using System;
using System.Collections.Generic;
using System.Data.Common;
using System.Data.SqlServerCe;
using System.Linq;
using System.Text;
using Dapper;
using StackExchange.Profiling.Helpers;
// TODO: More code sharing between providers...not sure on the cleanest approach here.
namespace StackExchange.Profiling.Storage
{
/// <summary>
/// Understands how to store a <see cref="MiniProfiler"/> to a MSSQL database.
/// </summary>
public class SqlServerCeStorage : DatabaseStorageBase
{
/// <summary>
/// Load the SQL statements (using Dapper Multiple Results)
/// </summary>
protected string SqlStatements = @"
SELECT * FROM MiniProfilers WHERE Id = @id;
SELECT * FROM MiniProfilerTimings WHERE MiniProfilerId = @id ORDER BY StartMilliseconds;
SELECT * FROM MiniProfilerClientTimings WHERE MiniProfilerId = @id ORDER BY Start;";
/// <summary>
/// Initializes a new instance of the <see cref="SqlServerCeStorage"/> class with the specified connection string.
/// </summary>
/// <param name="connectionString">
/// The connection string to use.
/// </param>
public SqlServerCeStorage(string connectionString) : base(connectionString) { }
/// <summary>
/// Stores to <c>dbo.MiniProfilers</c> under its <see cref="MiniProfiler.Id"/>;
/// </summary>
/// <param name="profiler">The Mini Profiler</param>
public override void Save(MiniProfiler profiler)
{
const string sql =
@"insert into MiniProfilers
(Id,
RootTimingId,
Name,
Started,
DurationMilliseconds,
[User],
HasUserViewed,
MachineName,
CustomLinksJson,
ClientTimingsRedirectCount)
select @Id,
@RootTimingId,
@Name,
@Started,
@DurationMilliseconds,
@User,
@HasUserViewed,
@MachineName,
@CustomLinksJson,
@ClientTimingsRedirectCount
where not exists (select 1 from MiniProfilers where Id = @Id)"; // this syntax works on both mssql and sqlite
using (var conn = GetConnection())
{
conn.Execute(sql, new
{
profiler.Id,
profiler.Started,
User = profiler.User.Truncate(100),
Name = profiler.Name.Truncate(200),
RootTimingId = profiler.Root != null ? profiler.Root.Id : (Guid?)null,
profiler.DurationMilliseconds,
profiler.HasUserViewed,
MachineName = profiler.MachineName.Truncate(100),
profiler.CustomLinksJson,
ClientTimingsRedirectCount = profiler.ClientTimings != null ? profiler.ClientTimings.RedirectCount : (int?)null
});
var timings = new List<Timing>();
if (profiler.Root != null)
{
profiler.Root.MiniProfilerId = profiler.Id;
FlattenTimings(profiler.Root, timings);
}
SaveTimings(timings, conn);
var clientTimings = profiler.ClientTimings?.Timings;
if (clientTimings != null && clientTimings.Any())
{
// set the profilerId (isn't needed unless we are storing it)
foreach (var x in clientTimings)
{
x.MiniProfilerId = profiler.Id;
x.Id = Guid.NewGuid();
}
SaveClientTimings(clientTimings, conn);
}
}
}
private void SaveTimings(List<Timing> timings, DbConnection conn)
{
const string sql = @"
INSERT INTO MiniProfilerTimings
(Id,
MiniProfilerId,
ParentTimingId,
Name,
DurationMilliseconds,
StartMilliseconds,
IsRoot,
Depth,
CustomTimingsJson)
SELECT @Id,
@MiniProfilerId,
@ParentTimingId,
@Name,
@DurationMilliseconds,
@StartMilliseconds,
@IsRoot,
@Depth,
@CustomTimingsJson
WHERE NOT EXISTS (SELECT 1 FROM MiniProfilerTimings WHERE Id = @Id)";
foreach (var timing in timings)
{
conn.Execute(sql, new
{
timing.Id,
timing.MiniProfilerId,
timing.ParentTimingId,
Name = timing.Name.Truncate(200),
timing.DurationMilliseconds,
timing.StartMilliseconds,
timing.IsRoot,
timing.Depth,
timing.CustomTimingsJson
});
}
}
private void SaveClientTimings(IReadOnlyList<ClientTiming> timings, DbConnection conn)
{
const string sql = @"
INSERT INTO MiniProfilerClientTimings
(Id,
MiniProfilerId,
Name,
Start,
Duration)
SELECT @Id,
@MiniProfilerId,
@Name,
@Start,
@Duration
WHERE NOT EXISTS (SELECT 1 FROM MiniProfilerClientTimings WHERE Id = @Id)";
foreach (var timing in timings)
{
conn.Execute(sql, new
{
timing.Id,
timing.MiniProfilerId,
Name = timing.Name.Truncate(200),
timing.Start,
timing.Duration
});
}
}
/// <summary>
/// Loads the <c>MiniProfiler</c> identified by 'id' from the database.
/// </summary>
/// <param name="id">The id.</param>
/// <returns>the mini profiler.</returns>
public override MiniProfiler Load(Guid id)
{
MiniProfiler result;
using (var conn = GetConnection())
{
// SQL CE can't do a multi-query
var param = new { id };
result = conn.QuerySingleOrDefault<MiniProfiler>("SELECT * FROM MiniProfilers WHERE Id = @id", param);
var timings = conn.Query<Timing>("SELECT * FROM MiniProfilerTimings WHERE MiniProfilerId = @id ORDER BY StartMilliseconds", param).AsList();
var clientTimings = conn.Query<ClientTiming>("SELECT * FROM MiniProfilerClientTimings WHERE MiniProfilerId = @id ORDER BY Start", param).AsList();
ConnectTimings(result, timings, clientTimings);
}
if (result != null)
{
// HACK: stored dates are utc, but are pulled out as local time
result.Started = DateTime.SpecifyKind(result.Started, DateTimeKind.Utc);
}
return result;
}
/// <summary>
/// Sets the session to un-viewed
/// </summary>
/// <param name="user">The user.</param>
/// <param name="id">The id.</param>
public override void SetUnviewed(string user, Guid id) => ToggleViewed(user, id, false);
/// <summary>
/// sets the session to viewed
/// </summary>
/// <param name="user">The user.</param>
/// <param name="id">The id.</param>
public override void SetViewed(string user, Guid id) => ToggleViewed(user, id, true);
private void ToggleViewed(string user, Guid id, bool hasUserVeiwed)
{
using (var conn = GetConnection())
{
conn.Execute(@"
Update MiniProfilers
Set HasUserViewed = @hasUserVeiwed
Where Id = @id
And [User] = @user", new { id, user, hasUserVeiwed });
}
}
/// <summary>
/// Returns a list of <see cref="MiniProfiler.Id"/>s that haven't been seen by <paramref name="user"/>.
/// </summary>
/// <param name="user">User identified by the current UserProvider"/>.</param>
/// <returns>the list of keys.</returns>
public override List<Guid> GetUnviewedIds(string user)
{
using (var conn = GetConnection())
{
return conn.Query<Guid>(@"
Select Id
From MiniProfilers
Where [User] = @user
And HasUserViewed = 0
Order By Started", new { user }).ToList();
}
}
/// <summary>
/// List the Results.
/// </summary>
/// <param name="maxResults">The max results.</param>
/// <param name="start">The start.</param>
/// <param name="finish">The finish.</param>
/// <param name="orderBy">order by.</param>
/// <returns>the list of key values.</returns>
public override IEnumerable<Guid> List(int maxResults, DateTime? start = null, DateTime? finish = null, ListResultsOrder orderBy = ListResultsOrder.Descending)
{
var sb = new StringBuilder(@"
Select Top {=maxResults} Id
From MiniProfilers
");
if (finish != null)
{
sb.AppendLine("Where Started < @finish");
}
if (start != null)
{
sb.AppendLine(finish != null
? " And Started > @start"
: "Where Started > @start");
}
sb.Append("Order By ").Append(orderBy == ListResultsOrder.Descending ? "Started Desc" : "Started Asc");
using (var conn = GetConnection())
{
return conn.Query<Guid>(sb.ToString(), new { start, finish }).ToList();
}
}
/// <summary>
/// Returns a connection to Sql Server.
/// </summary>
protected override DbConnection GetConnection() => new SqlCeConnection(ConnectionString);
/// <summary>
/// Creates needed tables. Run this once on your database.
/// </summary>
/// <remarks>
/// Works in SQL server and <c>sqlite</c> (with documented removals).
/// </remarks>
public static readonly string[] TableCreationScripts = new[] {
@"create table MiniProfilers
(
RowId integer not null identity,
Id uniqueidentifier not null,
RootTimingId uniqueidentifier null,
Name nvarchar(200) not null,
Started datetime not null,
DurationMilliseconds decimal(7, 1) not null,
[User] nvarchar(100) null,
HasUserViewed bit not null,
MachineName nvarchar(100) null,
CustomLinksJson ntext,
ClientTimingsRedirectCount int null
);",
@"create unique nonclustered index IX_MiniProfilers_Id on MiniProfilers (Id);",
@"create nonclustered index IX_MiniProfilers_User_HasUserViewed on MiniProfilers ([User], HasUserViewed);",
@"create table MiniProfilerTimings
(
RowId integer not null identity,
Id uniqueidentifier not null,
MiniProfilerId uniqueidentifier not null,
ParentTimingId uniqueidentifier null,
Name nvarchar(200) not null,
DurationMilliseconds decimal(9, 3) not null,
StartMilliseconds decimal(9, 3) not null,
IsRoot bit not null,
Depth smallint not null,
CustomTimingsJson ntext null
);",
@"create unique nonclustered index IX_MiniProfilerTimings_Id on MiniProfilerTimings (Id);",
@"create nonclustered index IX_MiniProfilerTimings_MiniProfilerId on MiniProfilerTimings (MiniProfilerId);",
@"create table MiniProfilerClientTimings
(
RowId integer not null identity,
Id uniqueidentifier not null,
MiniProfilerId uniqueidentifier not null,
Name nvarchar(200) not null,
Start decimal(9, 3) not null,
Duration decimal(9, 3) not null
);",
@"create unique nonclustered index IX_MiniProfilerClientTimings_Id on MiniProfilerClientTimings (Id);",
@"create nonclustered index IX_MiniProfilerClientTimings_MiniProfilerId on MiniProfilerClientTimings (MiniProfilerId);"
};
}
}