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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Dtf.WindowsInstaller.Linq
{
using System;
using System.IO;
using System.Text;
using System.Globalization;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
/// <summary>
/// Generic record entity for queryable databases,
/// and base for strongly-typed entity subclasses.
/// </summary>
/// <remarks>
/// Several predefined specialized subclasses are provided for common
/// standard tables. Subclasses for additional standard tables
/// or custom tables are not necessary, but they are easy to create
/// and make the coding experience much nicer.
/// <para>When creating subclasses, the following attributes may be
/// useful: <see cref="DatabaseTableAttribute"/>,
/// <see cref="DatabaseColumnAttribute"/></para>
/// </remarks>
public class QRecord
{
/// <summary>
/// Do not call. Use QTable.NewRecord() instead.
/// </summary>
/// <remarks>
/// Subclasses must also provide a public parameterless constructor.
/// <para>QRecord constructors are only public due to implementation
/// reasons (to satisfy the new() constraint on the QTable generic
/// class). They are not intended to be called by user code other than
/// a subclass constructor. If the constructor is invoked directly,
/// the record instance will not be properly initialized (associated
/// with a database table) and calls to methods on the instance
/// will throw a NullReferenceException.</para>
/// </remarks>
/// <seealso cref="QTable<TRecord>.NewRecord()"/>
public QRecord()
{
}
internal QDatabase Database { get; set; }
internal TableInfo TableInfo { get; set; }
internal IList<string> Values { get; set; }
internal bool Exists { get; set; }
/// <summary>
/// Gets the number of fields in the record.
/// </summary>
public int FieldCount
{
get
{
return this.Values.Count;
}
}
/// <summary>
/// Gets or sets a record field.
/// </summary>
/// <param name="field">column name of the field</param>
/// <remarks>
/// Setting a field value will automatically update the database.
/// </remarks>
public string this[string field]
{
get
{
if (field == null)
{
throw new ArgumentNullException("field");
}
int index = this.TableInfo.Columns.IndexOf(field);
if (index < 0)
{
throw new ArgumentOutOfRangeException("field");
}
return this[index];
}
set
{
if (field == null)
{
throw new ArgumentNullException("field");
}
this.Update(new string[] { field }, new string[] { value });
}
}
/// <summary>
/// Gets or sets a record field.
/// </summary>
/// <param name="index">zero-based column index of the field</param>
/// <remarks>
/// Setting a field value will automatically update the database.
/// </remarks>
public string this[int index]
{
get
{
if (index < 0 || index >= this.FieldCount)
{
throw new ArgumentOutOfRangeException("index");
}
return this.Values[index];
}
set
{
if (index < 0 || index >= this.FieldCount)
{
throw new ArgumentOutOfRangeException("index");
}
this.Update(new int[] { index }, new string[] { value });
}
}
/// <summary>
/// Used by subclasses to get a field as an integer.
/// </summary>
/// <param name="index">zero-based column index of the field</param>
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "I")]
protected int I(int index)
{
string value = this[index];
return value.Length > 0 ?
Int32.Parse(value, CultureInfo.InvariantCulture) : 0;
}
/// <summary>
/// Used by subclasses to get a field as a nullable integer.
/// </summary>
/// <param name="index">zero-based column index of the field</param>
protected int? NI(int index)
{
string value = this[index];
return value.Length > 0 ?
new int?(Int32.Parse(value, CultureInfo.InvariantCulture)) : null;
}
/// <summary>
/// Dumps all record fields to a string.
/// </summary>
public override string ToString()
{
StringBuilder buf = new StringBuilder(this.GetType().Name);
buf.Append(" {");
for (int i = 0; i < this.FieldCount; i++)
{
buf.AppendFormat("{0} {1} = {2}",
(i > 0 ? "," : String.Empty),
this.TableInfo.Columns[i].Name,
this[i]);
}
buf.Append(" }");
return buf.ToString();
}
/// <summary>
/// Update multiple fields in the record (and the database).
/// </summary>
/// <param name="fields">column names of fields to update</param>
/// <param name="values">new values for each field being updated</param>
public void Update(IList<string> fields, IList<string> values)
{
if (fields == null)
{
throw new ArgumentNullException("fields");
}
if (values == null)
{
throw new ArgumentNullException("values");
}
if (fields.Count == 0 || values.Count == 0 ||
fields.Count > this.FieldCount ||
values.Count != fields.Count)
{
throw new ArgumentOutOfRangeException("fields");
}
int[] indexes = new int[fields.Count];
for (int i = 0; i < indexes.Length; i++)
{
if (fields[i] == null)
{
throw new ArgumentNullException("fields[" + i + "]");
}
indexes[i] = this.TableInfo.Columns.IndexOf(fields[i]);
if (indexes[i] < 0)
{
throw new ArgumentOutOfRangeException("fields[" + i + "]");
}
}
this.Update(indexes, values);
}
/// <summary>
/// Update multiple fields in the record (and the database).
/// </summary>
/// <param name="indexes">column indexes of fields to update</param>
/// <param name="values">new values for each field being updated</param>
/// <remarks>
/// The record (primary keys) must already exist in the table.
/// <para>Updating primary key fields is not yet implemented; use Delete()
/// and Insert() instead.</para>
/// </remarks>
public void Update(IList<int> indexes, IList<string> values)
{
if (indexes == null)
{
throw new ArgumentNullException("indexes");
}
if (values == null)
{
throw new ArgumentNullException("values");
}
if (indexes.Count == 0 || values.Count == 0 ||
indexes.Count > this.FieldCount ||
values.Count != indexes.Count)
{
throw new ArgumentOutOfRangeException("indexes");
}
bool primaryKeyChanged = false;
for (int i = 0; i < indexes.Count; i++)
{
int index = indexes[i];
if (index < 0 || index >= this.FieldCount)
{
throw new ArgumentOutOfRangeException("index[" + i + "]");
}
ColumnInfo col = this.TableInfo.Columns[index];
if (this.TableInfo.PrimaryKeys.Contains(col.Name))
{
if (values[i] == null)
{
throw new ArgumentNullException("values[" + i + "]");
}
primaryKeyChanged = true;
}
else if (values[i] == null)
{
if (col.IsRequired)
{
throw new ArgumentNullException("values[" + i + "]");
}
}
this.Values[index] = values[i];
}
if (this.Exists)
{
if (!primaryKeyChanged)
{
int updateRecSize = indexes.Count + this.TableInfo.PrimaryKeys.Count;
using (Record updateRec = this.Database.CreateRecord(updateRecSize))
{
StringBuilder s = new StringBuilder("UPDATE `");
s.Append(this.TableInfo.Name);
s.Append("` SET");
for (int i = 0; i < indexes.Count; i++)
{
ColumnInfo col = this.TableInfo.Columns[indexes[i]];
if (col.Type == typeof(Stream))
{
throw new NotSupportedException(
"Cannot update stream columns via QRecord.");
}
int index = indexes[i];
s.AppendFormat("{0} `{1}` = ?",
(i > 0 ? "," : String.Empty),
col.Name);
if (values[i] != null)
{
updateRec[i + 1] = values[i];
}
}
for (int i = 0; i < this.TableInfo.PrimaryKeys.Count; i++)
{
string key = this.TableInfo.PrimaryKeys[i];
s.AppendFormat(" {0} `{1}` = ?", (i == 0 ? "WHERE" : "AND"), key);
int index = this.TableInfo.Columns.IndexOf(key);
updateRec[indexes.Count + i + 1] = this.Values[index];
}
string updateSql = s.ToString();
TextWriter log = this.Database.Log;
if (log != null)
{
log.WriteLine();
log.WriteLine(updateSql);
for (int field = 1; field <= updateRecSize; field++)
{
log.WriteLine(" ? = " + updateRec.GetString(field));
}
}
this.Database.Execute(updateSql, updateRec);
}
}
else
{
throw new NotImplementedException(
"Update() cannot handle changed primary keys yet.");
// TODO:
// query using old values
// update values
// View.Replace
}
}
}
/// <summary>
/// Inserts the record in the database.
/// </summary>
/// <remarks>
/// The record (primary keys) may not already exist in the table.
/// <para>Use <see cref="QTable<TRecord>.NewRecord()"/> to get a new
/// record. Prmary keys and all required fields
/// must be filled in before insertion.</para>
/// </remarks>
public void Insert()
{
this.Insert(false);
}
/// <summary>
/// Inserts the record into the table.
/// </summary>
/// <param name="temporary">true if the record is temporarily
/// inserted, to be visible only as long as the database is open</param>
/// <remarks>
/// The record (primary keys) may not already exist in the table.
/// <para>Use <see cref="QTable<TRecord>.NewRecord()"/> to get a new
/// record. Prmary keys and all required fields
/// must be filled in before insertion.</para>
/// </remarks>
public void Insert(bool temporary)
{
using (Record updateRec = this.Database.CreateRecord(this.FieldCount))
{
string insertSql = this.TableInfo.SqlInsertString;
if (temporary)
{
insertSql += " TEMPORARY";
}
TextWriter log = this.Database.Log;
if (log != null)
{
log.WriteLine();
log.WriteLine(insertSql);
}
for (int index = 0; index < this.FieldCount; index++)
{
ColumnInfo col = this.TableInfo.Columns[index];
if (col.Type == typeof(Stream))
{
throw new NotSupportedException(
"Cannot insert stream columns via QRecord.");
}
if (this.Values[index] != null)
{
updateRec[index + 1] = this.Values[index];
}
if (log != null)
{
log.WriteLine(" ? = " + this.Values[index]);
}
}
this.Database.Execute(insertSql, updateRec);
this.Exists = true;
}
}
/// <summary>
/// Deletes the record from the table if it exists.
/// </summary>
public void Delete()
{
using (Record keyRec = this.Database.CreateRecord(this.TableInfo.PrimaryKeys.Count))
{
StringBuilder s = new StringBuilder("DELETE FROM `");
s.Append(this.TableInfo.Name);
s.Append("`");
for (int i = 0; i < this.TableInfo.PrimaryKeys.Count; i++)
{
string key = this.TableInfo.PrimaryKeys[i];
s.AppendFormat(" {0} `{1}` = ?", (i == 0 ? "WHERE" : "AND"), key);
int index = this.TableInfo.Columns.IndexOf(key);
keyRec[i + 1] = this.Values[index];
}
string deleteSql = s.ToString();
TextWriter log = this.Database.Log;
if (log != null)
{
log.WriteLine();
log.WriteLine(deleteSql);
for (int i = 0; i < this.TableInfo.PrimaryKeys.Count; i++)
{
log.WriteLine(" ? = " + keyRec.GetString(i + 1));
}
}
this.Database.Execute(deleteSql, keyRec);
this.Exists = false;
}
}
/// <summary>
/// Not yet implemented.
/// </summary>
public void Refresh()
{
throw new NotImplementedException();
}
/// <summary>
/// Not yet implemented.
/// </summary>
public void Assign()
{
throw new NotImplementedException();
}
/// <summary>
/// Not yet implemented.
/// </summary>
public bool Merge()
{
throw new NotImplementedException();
}
/// <summary>
/// Not yet implemented.
/// </summary>
public ICollection<ValidationErrorInfo> Validate()
{
throw new NotImplementedException();
}
/// <summary>
/// Not yet implemented.
/// </summary>
[SuppressMessage("Microsoft.Naming", "CA1711:IdentifiersShouldNotHaveIncorrectSuffix")]
public ICollection<ValidationErrorInfo> ValidateNew()
{
throw new NotImplementedException();
}
/// <summary>
/// Not yet implemented.
/// </summary>
public ICollection<ValidationErrorInfo> ValidateFields()
{
throw new NotImplementedException();
}
/// <summary>
/// Not yet implemented.
/// </summary>
public ICollection<ValidationErrorInfo> ValidateDelete()
{
throw new NotImplementedException();
}
}
}
|