forked from tenor/Npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsqlTypeConvNativeToBackend.cs
More file actions
689 lines (607 loc) · 31 KB
/
NpgsqlTypeConvNativeToBackend.cs
File metadata and controls
689 lines (607 loc) · 31 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
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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
// NpgsqlTypes.NpgsqlTypeConvNativeToBackend.cs
//
// Author:
// Glen Parker <glenebob@gmail.com>
//
// Copyright (C) 2004 The Npgsql Development Team
// npgsql-general@gborg.postgresql.org
// http://gborg.postgresql.org/project/npgsql/projdisplay.php
//
// Permission to use, copy, modify, and distribute this software and its
// documentation for any purpose, without fee, and without a written
// agreement is hereby granted, provided that the above copyright notice
// and this paragraph and the following two paragraphs appear in all copies.
//
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
//
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
// This file provides data type converters between PostgreSQL representations
// and .NET objects.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using Npgsql;
namespace NpgsqlTypes
{
/// <summary>
/// Provide event handlers to convert the basic native supported data types from
/// native form to backend representation.
/// </summary>
internal abstract class BasicNativeToBackendTypeConverter
{
// Encapulate the three escapable characters in plan text strings, and their
// escape sequence.
private struct StringEncodingInfo
{
internal readonly byte Quote;
internal readonly string SingleQuoteEscape;
internal readonly string DoubleQuoteEscape;
internal readonly string BackSlashEscape;
internal readonly bool UseConformantStrings;
internal readonly bool UseEPrefix;
internal readonly byte[] ByteaEscape;
internal StringEncodingInfo(byte Quote, string SingleQuoteEscape, string DoubleQuoteEscape, string BackSlashEscape, bool UseConformantStrings, bool UseEPrefix, byte[] ByteaEscape)
{
this.Quote = Quote;
this.SingleQuoteEscape = SingleQuoteEscape;
this.DoubleQuoteEscape = DoubleQuoteEscape;
this.BackSlashEscape = BackSlashEscape;
this.UseConformantStrings = UseConformantStrings;
this.UseEPrefix = UseEPrefix;
this.ByteaEscape = ByteaEscape;
}
}
private static readonly byte[] backslashSingle = BackendEncoding.UTF8Encoding.GetBytes(@"\");
private static readonly byte[] backslashDouble = BackendEncoding.UTF8Encoding.GetBytes(@"\\");
private static readonly byte[] backslashQuad = BackendEncoding.UTF8Encoding.GetBytes(@"\\\\");
private static readonly byte[] escapeEncodingByteMap = BackendEncoding.UTF8Encoding.GetBytes("01234567");
private static readonly byte[] hexEncodingByteMap = BackendEncoding.UTF8Encoding.GetBytes("0123456789ABCDEF");
// There are five possible string escape schemes for the eight possible combinations of the booleans
// extended query, conformant strings, and array value.
// Make them efficiently available using a hash table, avoiding the need for a
// long, nested, cpnfusing if/then construct.
private static readonly StringEncodingInfo[] stringEncodingInfoTable;
static BasicNativeToBackendTypeConverter()
{
stringEncodingInfoTable = new StringEncodingInfo[16];
// Hash value args: forExtendedQuery, UseConformantStrings, Supports_E_StringPrefix, arrayElement
// Note that a combination of UseConformantStrings == true and Supports_E_StringPrefix == false is not possible,
// so those combinations are left out of the table.
stringEncodingInfoTable[StringEncodingInfoHash(true, true, true, false)] = new StringEncodingInfo(0, "", "", "", true, false, backslashSingle);
stringEncodingInfoTable[StringEncodingInfoHash(true, true, true, true)] = new StringEncodingInfo((byte)ASCIIBytes.DoubleQuote, "", @"\", @"\", true, false, backslashDouble);
stringEncodingInfoTable[StringEncodingInfoHash(true, false, false, false)] = new StringEncodingInfo(0, "", "", "", false, false, backslashSingle);
stringEncodingInfoTable[StringEncodingInfoHash(true, false, false, true)] = new StringEncodingInfo((byte)ASCIIBytes.DoubleQuote, "", @"\", @"\", false, false, backslashDouble);
stringEncodingInfoTable[StringEncodingInfoHash(true, false, true, false)] = new StringEncodingInfo(0, "", "", "", false, false, backslashSingle);
stringEncodingInfoTable[StringEncodingInfoHash(true, false, true, true)] = new StringEncodingInfo((byte)ASCIIBytes.DoubleQuote, "", @"\", @"\", false, false, backslashDouble);
stringEncodingInfoTable[StringEncodingInfoHash(false, true, true, false)] = new StringEncodingInfo((byte)ASCIIBytes.SingleQuote, "'", "", "", true, false, backslashSingle);
stringEncodingInfoTable[StringEncodingInfoHash(false, true, true, true)] = new StringEncodingInfo((byte)ASCIIBytes.DoubleQuote, "'", @"\", @"\", true, false, backslashDouble);
stringEncodingInfoTable[StringEncodingInfoHash(false, false, false, false)] = new StringEncodingInfo((byte)ASCIIBytes.SingleQuote, "'", "", @"\", false, false, backslashDouble);
stringEncodingInfoTable[StringEncodingInfoHash(false, false, false, true)] = new StringEncodingInfo((byte)ASCIIBytes.DoubleQuote, "'", @"\\", @"\\\", false, false, backslashQuad);
stringEncodingInfoTable[StringEncodingInfoHash(false, false, true, false)] = new StringEncodingInfo((byte)ASCIIBytes.SingleQuote, "'", "", @"\", false, true, backslashDouble);
stringEncodingInfoTable[StringEncodingInfoHash(false, false, true, true)] = new StringEncodingInfo((byte)ASCIIBytes.DoubleQuote, "'", @"\\", @"\\\", false, false, backslashQuad);
}
private static int StringEncodingInfoHash(bool forExtendedQuery, bool useConformantStrings, bool supports_E_StringPrefix, bool arrayElement)
{
// Default hash indicating simple query, conformant strings, supports e string prefix, and non-array-element.
// This should be the most common combination with current PG backend.
int hashValue = 6; // 0110
if (forExtendedQuery)
{
// Shouldn't happen in the real world because binary encoding will be used.
hashValue |= 1 << 3;
}
if (! useConformantStrings)
{
hashValue ^= 1 << 2;
if (! supports_E_StringPrefix)
{
hashValue ^= 1 << 1;
}
}
if (arrayElement)
{
hashValue |= 1;
}
return hashValue;
}
/// <summary>
/// Convert a string to UTF8 encoded text, escaped and quoted as required.
/// </summary>
internal static byte[] StringToTextText(NpgsqlNativeTypeInfo TypeInfo, Object oNativeData, bool forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
string NativeData = oNativeData.ToString();
StringEncodingInfo encodingInfo;
// Using a four bit hash key derived from the options at hand,
// find the correct string encoding info object.
encodingInfo = stringEncodingInfoTable[
StringEncodingInfoHash(
forExtendedQuery,
options.UseConformantStrings,
options.Supports_E_StringPrefix,
arrayElement
)
];
if (encodingInfo.Quote == 0)
{
// No quoting or escaping needed.
return BackendEncoding.UTF8Encoding.GetBytes(NativeData);
}
// Give the output string builder enough room to start for the string, quotes, E-prefix,
// and 1 in 10 characters needing to be escaped; a WAG.
StringBuilder retQuotedEscaped = new StringBuilder(NativeData.Length + 3 + NativeData.Length / 10);
if (encodingInfo.UseEPrefix)
{
retQuotedEscaped.Append('E');
}
retQuotedEscaped.Append((char)encodingInfo.Quote);
// Escape the string using the escape characters from the lookup.
foreach (char ch in NativeData)
{
switch (ch)
{
case '\'' :
retQuotedEscaped.Append(encodingInfo.SingleQuoteEscape);
break;
case '\"' :
retQuotedEscaped.Append(encodingInfo.DoubleQuoteEscape);
break;
case '\\' :
retQuotedEscaped.Append(encodingInfo.BackSlashEscape);
break;
}
retQuotedEscaped.Append(ch);
}
retQuotedEscaped.Append((char)encodingInfo.Quote);
return BackendEncoding.UTF8Encoding.GetBytes(retQuotedEscaped.ToString());
}
/// <summary>
/// Convert a string to UTF8 encoded text.
/// </summary>
internal static byte[] StringToTextBinary(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, NativeToBackendTypeConverterOptions options)
{
return BackendEncoding.UTF8Encoding.GetBytes(NativeData.ToString());
}
/// <summary>
/// Binary data, escaped and quoted as required.
/// </summary>
internal static byte[] ByteArrayToByteaText(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, bool forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
StringEncodingInfo encodingInfo;
// Using a four bit hash key derived from the options at hand,
// find the correct string encoding info object.
encodingInfo = stringEncodingInfoTable[
StringEncodingInfoHash(
forExtendedQuery,
options.UseConformantStrings,
options.Supports_E_StringPrefix,
arrayElement
)
];
if (! options.SupportsHexByteFormat)
{
return ByteArrayToByteaTextEscaped((byte[])NativeData, encodingInfo);
}
else
{
return ByteArrayToByteaTextHexFormat((byte[])NativeData, encodingInfo);
}
}
/// <summary>
/// Binary data with possible older style octal escapes, quoted.
/// </summary>
private static byte[] ByteArrayToByteaTextEscaped(byte[] nativeData, StringEncodingInfo encodingInfo)
{
// Minimum length for output is input bytes + e-prefix + two quotes.
MemoryStream ret = new MemoryStream(nativeData.Length + (encodingInfo.UseEPrefix ? 1 : 0) + (encodingInfo.Quote != 0 ? 2 : 0));
if (encodingInfo.Quote != 0)
{
if (encodingInfo.UseEPrefix)
{
ret.WriteByte((byte)ASCIIBytes.E);
}
ret.WriteByte(encodingInfo.Quote);
}
foreach (byte b in nativeData)
{
if (b >= 0x20 && b < 0x7F && b != 0x22 && b != 0x27 && b != 0x5C)
{
ret.WriteByte(b);
}
else
{
ret
.WriteBytes(encodingInfo.ByteaEscape)
.WriteBytes(escapeEncodingByteMap[7 & (b >> 6)])
.WriteBytes(escapeEncodingByteMap[7 & (b >> 3)])
.WriteBytes(escapeEncodingByteMap[7 & b]);
}
}
if (encodingInfo.Quote != 0)
{
ret.WriteByte(encodingInfo.Quote);
}
return ret.ToArray();
}
/// <summary>
/// Binary data in the new hex format (>= 9.0), quoted.
/// </summary>
private static byte[] ByteArrayToByteaTextHexFormat(byte[] nativeData, StringEncodingInfo encodingInfo)
{
int i = 0;
byte[] ret = new byte[
(encodingInfo.UseEPrefix ? 1 : 0) + // E prefix
(encodingInfo.Quote != 0 ? 2 : 0) + // quotes
encodingInfo.ByteaEscape.Length + // backslash[es]
1 + // x
(nativeData.Length * 2) // data
];
if (encodingInfo.Quote != 0)
{
if (encodingInfo.UseEPrefix)
{
ret[i++] = (byte)ASCIIBytes.E;
}
ret[i++] = encodingInfo.Quote;
}
foreach (byte bs in encodingInfo.ByteaEscape)
{
ret[i++] = bs;
}
ret[i++] = (byte)ASCIIBytes.x;
foreach (byte b in nativeData)
{
ret[i++] = hexEncodingByteMap[(b >> 4) & 0x0F];
ret[i++] = hexEncodingByteMap[b & 0x0F];
}
if (encodingInfo.Quote != 0)
{
ret[i++] = encodingInfo.Quote;
}
return ret;
}
/// <summary>
/// Binary data, raw.
/// </summary>
internal static byte[] ByteArrayToByteaBinary(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, NativeToBackendTypeConverterOptions options)
{
return (byte[])NativeData;
}
/// <summary>
/// Convert to a postgresql boolean text format.
/// </summary>
internal static byte[] BooleanToBooleanText(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
return ((bool)NativeData) ? ASCIIByteArrays.TRUE : ASCIIByteArrays.FALSE;
}
/// <summary>
/// Convert to a postgresql boolean binary format.
/// </summary>
internal static byte[] BooleanToBooleanBinary(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, NativeToBackendTypeConverterOptions options)
{
return ((bool)NativeData) ? ASCIIByteArrays.Byte_1 : ASCIIByteArrays.Byte_0;
}
/// <summary>
/// Convert to a postgresql binary int2.
/// </summary>
internal static byte[] Int16ToInt2Binary(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, NativeToBackendTypeConverterOptions options)
{
return BitConverter.GetBytes(IPAddress.HostToNetworkOrder(Convert.ToInt16(NativeData)));
}
/// <summary>
/// Convert to a postgresql binary int4.
/// </summary>
internal static byte[] Int32ToInt4Binary(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, NativeToBackendTypeConverterOptions options)
{
return BitConverter.GetBytes(IPAddress.HostToNetworkOrder(Convert.ToInt32(NativeData)));
}
/// <summary>
/// Convert to a postgresql binary int8.
/// </summary>
internal static byte[] Int64ToInt8Binary(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, NativeToBackendTypeConverterOptions options)
{
return BitConverter.GetBytes(IPAddress.HostToNetworkOrder(Convert.ToInt64(NativeData)));
}
/// <summary>
/// Convert to a postgresql bit.
/// </summary>
internal static byte[] ToBit(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (NativeData is bool)
return ((bool)NativeData) ? ASCIIByteArrays.AsciiDigit_1 : ASCIIByteArrays.AsciiDigit_0;
// It may seem more sensible to just convert an integer to a BitString here and pass it on.
// However behaviour varies in terms of how this is interpretted if being passed to a bitstring
// value smaller than the int.
// Prior to Postgres 8.0, the behaviour would be the same either way. E.g. if 10 were passed to
// a bit(1) then the bits (1010) would be extracted from the left, so resulting in the bitstring B'1'.
// From 8.0 onwards though, if we cast 10 straight to a bit(1) then the right-most bit is taken,
// resulting in B'0'. If we cast it to the "natural" bitstring for it's size first (which is what would
// happen if we did that work here) then it would become B'1010' which would then be cast to bit(1) by
// taking the left-most bit resulting in B'1' (the behaviour one would expect from Postgres 7.x).
//
// Since we don't know what implicit casts (say by inserting into a table with a bitstring field of
// set size) may happen, we don't know how to ensure expected behaviour. While passing a bitstring
// literal would work as expected with Postgres before 8.0, it can fail with 8.0 and later.
else if (NativeData is int)
return BackendEncoding.UTF8Encoding.GetBytes(NativeData.ToString());
else
return BackendEncoding.UTF8Encoding.GetBytes(((BitString)NativeData).ToString("E"));
}
/// <summary>
/// Convert to a postgresql timestamp.
/// </summary>
internal static byte[] ToDateTime(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (!(NativeData is DateTime))
{
return ExtendedNativeToBackendTypeConverter.ToTimeStamp(TypeInfo, NativeData, forExtendedQuery, options, arrayElement);
}
if (DateTime.MaxValue.Equals(NativeData))
{
return ASCIIByteArrays.INFINITY;
}
if (DateTime.MinValue.Equals(NativeData))
{
return ASCIIByteArrays.NEG_INFINITY;
}
return BackendEncoding.UTF8Encoding.GetBytes((((DateTime)NativeData).ToString("yyyy-MM-dd HH:mm:ss.ffffff", DateTimeFormatInfo.InvariantInfo)));
}
/// <summary>
/// Convert to a postgresql date.
/// </summary>
internal static byte[] ToDate(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (!(NativeData is DateTime))
{
return ExtendedNativeToBackendTypeConverter.ToDate(TypeInfo, NativeData, forExtendedQuery, options, arrayElement);
}
return BackendEncoding.UTF8Encoding.GetBytes(((DateTime)NativeData).ToString("yyyy-MM-dd", DateTimeFormatInfo.InvariantInfo));
}
/// <summary>
/// Convert to a postgresql time.
/// </summary>
internal static byte[] ToTime(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (!(NativeData is DateTime))
{
return ExtendedNativeToBackendTypeConverter.ToTime(TypeInfo, NativeData, forExtendedQuery, options, arrayElement);
}
else
{
return BackendEncoding.UTF8Encoding.GetBytes(((DateTime)NativeData).ToString("HH:mm:ss.ffffff", DateTimeFormatInfo.InvariantInfo));
}
}
/// <summary>
/// Convert to a postgres money.
/// </summary>
internal static byte[] ToMoney(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
//Formats accepted vary according to locale, but it always accepts a plain number (no currency or
//grouping symbols) passed as a string (with the appropriate cast appended, as UseCast will cause
//to happen.
return BackendEncoding.UTF8Encoding.GetBytes(((IFormattable)NativeData).ToString(null, CultureInfo.InvariantCulture.NumberFormat));
}
internal static byte[] ToBasicType<T>(NpgsqlNativeTypeInfo TypeInfo, object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
// This double cast is needed in order to get the enum type handled correctly (IConvertible)
// and the decimal separator always as "." regardless of culture (IFormattable)
return BackendEncoding.UTF8Encoding.GetBytes((((IFormattable)((IConvertible)NativeData).ToType(typeof(T), null)).ToString(null, CultureInfo.InvariantCulture.NumberFormat)));
}
/// <summary>
/// Convert to a postgres double with maximum precision.
/// </summary>
internal static byte[] SingleDoubleToFloat4Float8Text(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
//Formats accepted vary according to locale, but it always accepts a plain number (no currency or
//grouping symbols) passed as a string (with the appropriate cast appended, as UseCast will cause
//to happen.
return BackendEncoding.UTF8Encoding.GetBytes(((IFormattable)NativeData).ToString("R", CultureInfo.InvariantCulture.NumberFormat));
}
/// <summary>
/// Convert a System.Float to a postgres float4.
/// </summary>
internal static byte[] SingleToFloat4Binary(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, NativeToBackendTypeConverterOptions options)
{
return PGUtil.HostNetworkByteOrderSwap(BitConverter.GetBytes(Convert.ToSingle(NativeData)));
}
/// <summary>
/// Convert a System.Double to a postgres float8.
/// </summary>
internal static byte[] DoubleToFloat8Binary(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, NativeToBackendTypeConverterOptions options)
{
return PGUtil.HostNetworkByteOrderSwap(BitConverter.GetBytes(Convert.ToDouble(NativeData)));
}
}
/// <summary>
/// Provide event handlers to convert extended native supported data types from
/// native form to backend representation.
/// </summary>
internal abstract class ExtendedNativeToBackendTypeConverter
{
/// <summary>
/// Point.
/// </summary>
internal static byte[] ToPoint(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (NativeData is NpgsqlPoint)
{
NpgsqlPoint P = (NpgsqlPoint)NativeData;
return BackendEncoding.UTF8Encoding.GetBytes(String.Format(CultureInfo.InvariantCulture, "({0},{1})", P.X, P.Y));
}
else
{
throw new InvalidCastException("Unable to cast data to NpgsqlPoint type");
}
}
/// <summary>
/// Box.
/// </summary>
internal static byte[] ToBox(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
/*if (NativeData.GetType() == typeof(Rectangle)) {
Rectangle R = (Rectangle)NativeData;
return String.Format(CultureInfo.InvariantCulture, "({0},{1}),({2},{3})", R.Left, R.Top, R.Left + R.Width, R.Top + R.Height);
} else if (NativeData.GetType() == typeof(RectangleF)) {
RectangleF R = (RectangleF)NativeData;
return String.Format(CultureInfo.InvariantCulture, "({0},{1}),({2},{3})", R.Left, R.Top, R.Left + R.Width, R.Top + R.Height);*/
if (NativeData is NpgsqlBox)
{
NpgsqlBox box = (NpgsqlBox)NativeData;
return
BackendEncoding.UTF8Encoding.GetBytes(String.Format(CultureInfo.InvariantCulture, "({0},{1}),({2},{3})", box.LowerLeft.X, box.LowerLeft.Y,
box.UpperRight.X, box.UpperRight.Y));
}
else
{
throw new InvalidCastException("Unable to cast data to Rectangle type");
}
}
/// <summary>
/// LSeg.
/// </summary>
internal static byte[] ToLSeg(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
NpgsqlLSeg S = (NpgsqlLSeg)NativeData;
return BackendEncoding.UTF8Encoding.GetBytes(String.Format(CultureInfo.InvariantCulture, "{0},{1},{2},{3}", S.Start.X, S.Start.Y, S.End.X, S.End.Y));
}
/// <summary>
/// Open path.
/// </summary>
internal static byte[] ToPath(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
StringBuilder B = null;
try
{
B = new StringBuilder();
foreach (NpgsqlPoint P in ((NpgsqlPath)NativeData))
{
B.AppendFormat(CultureInfo.InvariantCulture, "{0}({1},{2})", (B.Length > 0 ? "," : ""), P.X, P.Y);
}
return BackendEncoding.UTF8Encoding.GetBytes(String.Format("[{0}]", B));
}
finally
{
B = null;
}
}
/// <summary>
/// Polygon.
/// </summary>
internal static byte[] ToPolygon(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
StringBuilder B = new StringBuilder();
foreach (NpgsqlPoint P in ((NpgsqlPolygon)NativeData))
{
B.AppendFormat(CultureInfo.InvariantCulture, "{0}({1},{2})", (B.Length > 0 ? "," : ""), P.X, P.Y);
}
return BackendEncoding.UTF8Encoding.GetBytes(String.Format("({0})", B));
}
/// <summary>
/// Convert to a postgres MAC Address.
/// </summary>
internal static byte[] ToMacAddress(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (NativeData is NpgsqlMacAddress)
{
return BackendEncoding.UTF8Encoding.GetBytes(((NpgsqlMacAddress)NativeData).ToString());
}
return BackendEncoding.UTF8Encoding.GetBytes(NativeData.ToString());
}
/// <summary>
/// Circle.
/// </summary>
internal static byte[] ToCircle(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
NpgsqlCircle C = (NpgsqlCircle)NativeData;
return BackendEncoding.UTF8Encoding.GetBytes(String.Format(CultureInfo.InvariantCulture, "{0},{1},{2}", C.Center.X, C.Center.Y, C.Radius));
}
/// <summary>
/// Convert to a postgres inet.
/// </summary>
internal static byte[] ToIPAddress(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (NativeData is NpgsqlInet)
{
return BackendEncoding.UTF8Encoding.GetBytes(((NpgsqlInet)NativeData).ToString());
}
return BackendEncoding.UTF8Encoding.GetBytes(NativeData.ToString());
}
/// <summary>
/// Convert to a postgres interval
/// </summary>
internal static byte[] ToInterval(NpgsqlNativeTypeInfo TypeInfo, Object NativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
return
BackendEncoding.UTF8Encoding.GetBytes(((NativeData is TimeSpan)
? ((NpgsqlInterval)(TimeSpan)NativeData).ToString()
: ((NpgsqlInterval)NativeData).ToString()));
}
internal static byte[] ToTime(NpgsqlNativeTypeInfo typeInfo, object nativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (nativeData is DateTime)
{
return BasicNativeToBackendTypeConverter.ToTime(typeInfo, nativeData, forExtendedQuery, options, arrayElement);
}
NpgsqlTime time;
if (nativeData is TimeSpan)
{
time = (NpgsqlTime)(TimeSpan)nativeData;
}
else
{
time = (NpgsqlTime)nativeData;
}
return BackendEncoding.UTF8Encoding.GetBytes(time.ToString());
}
internal static byte[] ToTimeTZ(NpgsqlNativeTypeInfo typeInfo, object nativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (nativeData is DateTime)
{
return BasicNativeToBackendTypeConverter.ToTime(typeInfo, nativeData, forExtendedQuery, options, arrayElement);
}
NpgsqlTimeTZ time;
if (nativeData is TimeSpan)
{
time = (NpgsqlTimeTZ)(TimeSpan)nativeData;
}
else
{
time = (NpgsqlTimeTZ)nativeData;
}
return BackendEncoding.UTF8Encoding.GetBytes(time.ToString());
}
internal static byte[] ToDate(NpgsqlNativeTypeInfo typeInfo, object nativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (nativeData is DateTime)
{
return BasicNativeToBackendTypeConverter.ToDate(typeInfo, nativeData, forExtendedQuery, options, arrayElement);
}
else
{
return BackendEncoding.UTF8Encoding.GetBytes(nativeData.ToString());
}
}
internal static byte[] ToTimeStamp(NpgsqlNativeTypeInfo typeInfo, object nativeData, Boolean forExtendedQuery, NativeToBackendTypeConverterOptions options, bool arrayElement)
{
if (nativeData is DateTime)
{
return BasicNativeToBackendTypeConverter.ToDateTime(typeInfo, nativeData, forExtendedQuery, options, arrayElement);
}
else
{
return BackendEncoding.UTF8Encoding.GetBytes(nativeData.ToString());
}
}
}
}