-
Notifications
You must be signed in to change notification settings - Fork 350
/
ODataUriConversionUtils.cs
690 lines (616 loc) · 35 KB
/
ODataUriConversionUtils.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
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
690
//---------------------------------------------------------------------
// <copyright file="ODataUriConversionUtils.cs" company="Microsoft">
// Copyright (C) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
// </copyright>
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Text;
using Microsoft.OData.Edm;
using Microsoft.OData.Evaluation;
using Microsoft.OData.JsonLight;
using Microsoft.OData.Metadata;
using ODataErrorStrings = Microsoft.OData.Strings;
namespace Microsoft.OData
{
/// <summary>
/// Utility functions for writing values for use in a URL.
/// </summary>
internal static class ODataUriConversionUtils
{
/// <summary>
/// Converts a primitive to a string for use in a Url.
/// </summary>
/// <param name="value">Value to convert.</param>
/// <param name="version">OData version to be compliant with.</param>
/// <returns>A string representation of <paramref name="value"/> to be added to a Url.</returns>
internal static string ConvertToUriPrimitiveLiteral(object value, ODataVersion version)
{
ExceptionUtils.CheckArgumentNotNull(value, "value");
// TODO: Differences between Astoria and ODL's Uri literals
/* This should have the same behavior of Astoria with these differences:
* 1) Cannot handle the System.Data.Linq.Binary type
* 2) Cannot handle the System.Data.Linq.XElement type
* 3) Astoria does not put a 'd' or 'D' on double values
*/
// for legacy backwards compatibility reasons, use the formatter which does not URL-encode the resulting string.
return LiteralFormatter.ForConstantsWithoutEncoding.Format(value);
}
/// <summary>
/// Converts an enum value to a string for use in a Url.
/// </summary>
/// <param name="value">Value to convert.</param>
/// <param name="version">OData version to be compliant with.</param>
/// <returns>A string representation of <paramref name="value"/> to be added to a Url.</returns>
internal static string ConvertToUriEnumLiteral(ODataEnumValue value, ODataVersion version)
{
ExceptionUtils.CheckArgumentNotNull(value, "value");
ExceptionUtils.CheckArgumentNotNull(value.TypeName, "value.TypeName");
ExceptionUtils.CheckArgumentNotNull(value.Value, "value.Value");
// not URL-encode the resulting string:
return string.Format(CultureInfo.InvariantCulture, "{0}'{1}'", value.TypeName, value.Value);
}
/// <summary>
/// Converts the given string <paramref name="value"/> to an ODataResourceValue and returns it.
/// </summary>
/// <remarks>Does not handle primitive values.</remarks>
/// <param name="value">Value to be deserialized.</param>
/// <param name="model">Model to use for verification.</param>
/// <param name="typeReference">Expected type reference from deserialization. If null, verification will be skipped.</param>
/// <returns>An ODataResourceValue that results from the deserialization of <paramref name="value"/>.</returns>
internal static object ConvertFromResourceValue(string value, IEdmModel model, IEdmTypeReference typeReference)
{
object result = ConvertFromResourceOrCollectionValue(value, model, typeReference);
Debug.Assert(result is ODataResourceValue, "result is ODataResourceValue");
return result;
}
/// <summary>
/// Converts the given string <paramref name="value"/> to an ODataCollectionValue and returns it.
/// Tries in both JSON light and Verbose JSON.
/// </summary>
/// <remarks>Does not handle primitive values.</remarks>
/// <param name="value">Value to be deserialized.</param>
/// <param name="model">Model to use for verification.</param>
/// <param name="typeReference">Expected type reference from deserialization. If null, verification will be skipped.</param>
/// <returns>An ODataCollectionValue that results from the deserialization of <paramref name="value"/>.</returns>
internal static object ConvertFromCollectionValue(string value, IEdmModel model, IEdmTypeReference typeReference)
{
object result = ConvertFromResourceOrCollectionValue(value, model, typeReference);
Debug.Assert(result is ODataCollectionValue, "result is ODataCollectionValue");
return result;
}
/// <summary>
/// Verifies that the given <paramref name="primitiveValue"/> is or can be coerced to <paramref name="expectedTypeReference"/>, and coerces it if necessary.
/// </summary>
/// <param name="primitiveValue">An EDM primitive value to verify.</param>
/// <param name="literalValue">The literal value that was parsed as this primitiveValue.</param>
/// <param name="model">Model to verify against.</param>
/// <param name="expectedTypeReference">Expected type reference.</param>
/// <returns>Coerced version of the <paramref name="primitiveValue"/>.</returns>
internal static object VerifyAndCoerceUriPrimitiveLiteral(
object primitiveValue,
string literalValue,
IEdmModel model,
IEdmTypeReference expectedTypeReference)
{
ExceptionUtils.CheckArgumentNotNull(primitiveValue, "primitiveValue");
ExceptionUtils.CheckArgumentNotNull(literalValue, "literalValue");
ExceptionUtils.CheckArgumentNotNull(model, "model");
ExceptionUtils.CheckArgumentNotNull(expectedTypeReference, "expectedTypeReference");
// First deal with null literal
ODataNullValue nullValue = primitiveValue as ODataNullValue;
if (nullValue != null)
{
if (!expectedTypeReference.IsNullable)
{
throw new ODataException(ODataErrorStrings.ODataUriUtils_ConvertFromUriLiteralNullOnNonNullableType(expectedTypeReference.FullName()));
}
return nullValue;
}
// Only other positive case is a numeric primitive that needs to be coerced
IEdmPrimitiveTypeReference expectedPrimitiveTypeReference = expectedTypeReference.AsPrimitiveOrNull();
if (expectedPrimitiveTypeReference == null)
{
throw new ODataException(ODataErrorStrings.ODataUriUtils_ConvertFromUriLiteralTypeVerificationFailure(expectedTypeReference.FullName(), literalValue));
}
object coercedResult = CoerceNumericType(primitiveValue, expectedPrimitiveTypeReference.PrimitiveDefinition());
if (coercedResult != null)
{
return coercedResult;
}
// if expectedTypeReference is set, need to coerce cast
coercedResult = CoerceTemporalType(primitiveValue, expectedPrimitiveTypeReference.PrimitiveDefinition());
if (coercedResult != null)
{
return coercedResult;
}
Type actualType = primitiveValue.GetType();
Type targetType = TypeUtils.GetNonNullableType(EdmLibraryExtensions.GetPrimitiveClrType(expectedPrimitiveTypeReference));
// If target type is assignable from actual type, we're OK
if (targetType.IsAssignableFrom(actualType))
{
return primitiveValue;
}
throw new ODataException(ODataErrorStrings.ODataUriUtils_ConvertFromUriLiteralTypeVerificationFailure(expectedPrimitiveTypeReference.FullName(), literalValue));
}
/// <summary>
/// Converts a <see cref="ODataResourceBase"/> to a string for use in a Url.
/// </summary>
/// <param name="resource">Instance to convert.</param>
/// <param name="model">Model to be used for validation. User model is optional. The EdmLib core model is expected as a minimum.</param>
/// <returns>A string representation of <paramref name="resource"/> to be added to a Url.</returns>
internal static string ConvertToUriEntityLiteral(ODataResourceBase resource, IEdmModel model)
{
ExceptionUtils.CheckArgumentNotNull(resource, "resource");
ExceptionUtils.CheckArgumentNotNull(model, "model");
return ConvertToJsonLightLiteral(
model,
context =>
{
ODataWriter writer = context.CreateODataUriParameterResourceWriter(null, null);
WriteStartResource(writer, resource);
writer.WriteEnd();
});
}
/// <summary>
/// Converts a list of <see cref="ODataResourceBase"/> to a string for use in a Url.
/// </summary>
/// <param name="entries">Instance to convert.</param>
/// <param name="model">Model to be used for validation. User model is optional. The EdmLib core model is expected as a minimum.</param>
/// <returns>A string representation of <paramref name="entries"/> to be added to a Url.</returns>
internal static string ConvertToUriEntitiesLiteral(IEnumerable<ODataResourceBase> entries, IEdmModel model)
{
ExceptionUtils.CheckArgumentNotNull(entries, "entries");
ExceptionUtils.CheckArgumentNotNull(model, "model");
return ConvertToJsonLightLiteral(
model,
context =>
{
ODataWriter writer = context.CreateODataUriParameterResourceSetWriter(null, null);
writer.WriteStart(new ODataResourceSet());
// TODO: Write Complex Properties in entry
foreach (var resource in entries)
{
WriteStartResource(writer, resource);
writer.WriteEnd();
}
writer.WriteEnd();
});
}
/// <summary>
/// Converts a <see cref="ODataEntityReferenceLink"/> to a string for use in a Url.
/// </summary>
/// <param name="link">Instance to convert.</param>
/// <param name="model">Model to be used for validation. User model is optional. The EdmLib core model is expected as a minimum.</param>
/// <returns>A string representation of <paramref name="link"/> to be added to a Url.</returns>
internal static string ConvertToUriEntityReferenceLiteral(ODataEntityReferenceLink link, IEdmModel model)
{
ExceptionUtils.CheckArgumentNotNull(link, "link");
ExceptionUtils.CheckArgumentNotNull(model, "model");
return ConvertToJsonLightLiteral(model, context => context.WriteEntityReferenceLink(link));
}
/// <summary>
/// Converts a <see cref="ODataEntityReferenceLinks"/> to a string for use in a Url.
/// </summary>
/// <param name="links">Instance to convert.</param>
/// <param name="model">Model to be used for validation. User model is optional. The EdmLib core model is expected as a minimum.</param>
/// <returns>A string representation of <paramref name="links"/> to be added to a Url.</returns>
internal static string ConvertToUriEntityReferencesLiteral(ODataEntityReferenceLinks links, IEdmModel model)
{
ExceptionUtils.CheckArgumentNotNull(links, "links");
ExceptionUtils.CheckArgumentNotNull(model, "model");
return ConvertToJsonLightLiteral(model, context => context.WriteEntityReferenceLinks(links));
}
/// <summary>
/// Converts a <see cref="ODataResourceValue"/> to a string.
/// </summary>
/// <param name="resourceValue">Instance to convert.</param>
/// <param name="model">Model to be used for validation. User model is optional. The EdmLib core model is expected as a minimum.</param>
/// <param name="version">Version to be compliant with.</param>
/// <returns>A string representation of <paramref name="resourceValue"/> to be added.</returns>
internal static string ConvertToResourceLiteral(ODataResourceValue resourceValue, IEdmModel model, ODataVersion version)
{
ExceptionUtils.CheckArgumentNotNull(resourceValue, "resourceValue");
ExceptionUtils.CheckArgumentNotNull(model, "model");
StringBuilder builder = new StringBuilder();
using (TextWriter textWriter = new StringWriter(builder, CultureInfo.InvariantCulture))
{
ODataMessageWriterSettings messageWriterSettings = new ODataMessageWriterSettings()
{
Version = version,
Validations = ~ValidationKinds.ThrowOnUndeclaredPropertyForNonOpenType,
// Should write instance annotations for the literal
ShouldIncludeAnnotation = ODataUtils.CreateAnnotationFilter("*")
};
WriteJsonLightLiteral(
model,
messageWriterSettings,
textWriter,
(serializer, duplicatePropertyNamesChecker) => serializer.WriteResourceValue(
resourceValue,
metadataTypeReference : null,
isOpenPropertyType : true,
duplicatePropertyNamesChecker: duplicatePropertyNamesChecker));
}
return builder.ToString();
}
/// <summary>
/// Converts a <see cref="ODataCollectionValue"/> to a string for use in a Url.
/// </summary>
/// <param name="collectionValue">Instance to convert.</param>
/// <param name="model">Model to be used for validation. User model is optional. The EdmLib core model is expected as a minimum.</param>
/// <param name="version">Version to be compliant with. Collection requires >= V3.</param>
/// <returns>A string representation of <paramref name="collectionValue"/> to be added to a Url.</returns>
internal static string ConvertToUriCollectionLiteral(ODataCollectionValue collectionValue, IEdmModel model, ODataVersion version)
{
return ConvertToUriCollectionLiteral(collectionValue, model, version, true);
}
/// <summary>
/// Converts a <see cref="ODataCollectionValue"/> to a string for use in a Url.
/// </summary>
/// <param name="collectionValue">Instance to convert.</param>
/// <param name="model">Model to be used for validation. User model is optional. The EdmLib core model is expected as a minimum.</param>
/// <param name="version">Version to be compliant with. Collection requires >= V3.</param>
/// <param name="isIeee754Compatible">true if value should be IEEE 754 compatible.</param>
/// <returns>A string representation of <paramref name="collectionValue"/> to be added to a Url.</returns>
internal static string ConvertToUriCollectionLiteral(ODataCollectionValue collectionValue, IEdmModel model, ODataVersion version, bool isIeee754Compatible)
{
ExceptionUtils.CheckArgumentNotNull(collectionValue, "collectionValue");
ExceptionUtils.CheckArgumentNotNull(model, "model");
StringBuilder builder = new StringBuilder();
using (TextWriter textWriter = new StringWriter(builder, CultureInfo.InvariantCulture))
{
ODataMessageWriterSettings messageWriterSettings = new ODataMessageWriterSettings()
{
Version = version,
Validations = ~ValidationKinds.ThrowOnUndeclaredPropertyForNonOpenType,
// TBD: Should write instance annotations for the literal???
ShouldIncludeAnnotation = ODataUtils.CreateAnnotationFilter("*"),
IsIeee754Compatible = isIeee754Compatible
};
WriteJsonLightLiteral(
model,
messageWriterSettings,
textWriter,
(serializer, duplicatePropertyNameChecker) => serializer.WriteCollectionValue(
collectionValue,
metadataTypeReference : null,
valueTypeReference : null,
isTopLevelProperty: false,
isInUri: true,
isOpenPropertyType: false),
isResourceValue: false);
}
return builder.ToString();
}
/// <summary>
/// Coerces the given <paramref name="primitiveValue"/> to the appropriate CLR type based on <paramref name="targetEdmType"/>.
/// </summary>
/// <param name="primitiveValue">Primitive value to coerce.</param>
/// <param name="targetEdmType">Edm primitive type to check against.</param>
/// <returns><paramref name="primitiveValue"/> as the corresponding CLR type indicated by <paramref name="targetEdmType"/>, or null if unable to coerce.</returns>
[SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification = "Centralized method for coercing numeric types in easiest to understand.")]
internal static object CoerceNumericType(object primitiveValue, IEdmPrimitiveType targetEdmType)
{
// This is implemented to match TypePromotionUtils and MetadataUtilsCommon.CanConvertPrimitiveTypeTo()
ExceptionUtils.CheckArgumentNotNull(primitiveValue, "primitiveValue");
ExceptionUtils.CheckArgumentNotNull(targetEdmType, "targetEdmType");
EdmPrimitiveTypeKind targetPrimitiveKind = targetEdmType.PrimitiveKind;
if (primitiveValue is SByte)
{
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.SByte:
return primitiveValue;
case EdmPrimitiveTypeKind.Int16:
return Convert.ToInt16((SByte)primitiveValue);
case EdmPrimitiveTypeKind.Int32:
return Convert.ToInt32((SByte)primitiveValue);
case EdmPrimitiveTypeKind.Int64:
return Convert.ToInt64((SByte)primitiveValue);
case EdmPrimitiveTypeKind.Single:
return Convert.ToSingle((SByte)primitiveValue);
case EdmPrimitiveTypeKind.Double:
return Convert.ToDouble((SByte)primitiveValue);
case EdmPrimitiveTypeKind.Decimal:
return Convert.ToDecimal((SByte)primitiveValue);
}
}
if (primitiveValue is Byte)
{
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.Byte:
return primitiveValue;
case EdmPrimitiveTypeKind.Int16:
return Convert.ToInt16((Byte)primitiveValue);
case EdmPrimitiveTypeKind.Int32:
return Convert.ToInt32((Byte)primitiveValue);
case EdmPrimitiveTypeKind.Int64:
return Convert.ToInt64((Byte)primitiveValue);
case EdmPrimitiveTypeKind.Single:
return Convert.ToSingle((Byte)primitiveValue);
case EdmPrimitiveTypeKind.Double:
return Convert.ToDouble((Byte)primitiveValue);
case EdmPrimitiveTypeKind.Decimal:
return Convert.ToDecimal((Byte)primitiveValue);
}
}
if (primitiveValue is Int16)
{
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.Int16:
return primitiveValue;
case EdmPrimitiveTypeKind.Int32:
return Convert.ToInt32((Int16)primitiveValue);
case EdmPrimitiveTypeKind.Int64:
return Convert.ToInt64((Int16)primitiveValue);
case EdmPrimitiveTypeKind.Single:
return Convert.ToSingle((Int16)primitiveValue);
case EdmPrimitiveTypeKind.Double:
return Convert.ToDouble((Int16)primitiveValue);
case EdmPrimitiveTypeKind.Decimal:
return Convert.ToDecimal((Int16)primitiveValue);
}
}
if (primitiveValue is Int32)
{
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.Byte: // Int32 -> byte
return ConvertToTargetType(targetEdmType, () => Convert.ToByte((Int32)primitiveValue));
case EdmPrimitiveTypeKind.SByte: // Int32 -> sbyte
return ConvertToTargetType(targetEdmType, () => Convert.ToSByte((Int32)primitiveValue));
case EdmPrimitiveTypeKind.Int16: // Int32 -> short
return ConvertToTargetType(targetEdmType, () => Convert.ToInt16((Int32)primitiveValue));
case EdmPrimitiveTypeKind.Int32:
return primitiveValue;
case EdmPrimitiveTypeKind.Int64:
return Convert.ToInt64((Int32)primitiveValue);
case EdmPrimitiveTypeKind.Single:
return Convert.ToSingle((Int32)primitiveValue);
case EdmPrimitiveTypeKind.Double:
return Convert.ToDouble((Int32)primitiveValue);
case EdmPrimitiveTypeKind.Decimal:
return Convert.ToDecimal((Int32)primitiveValue);
}
}
if (primitiveValue is Int64)
{
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.Int64:
return primitiveValue;
case EdmPrimitiveTypeKind.Single:
return Convert.ToSingle((Int64)primitiveValue);
case EdmPrimitiveTypeKind.Double:
return Convert.ToDouble((Int64)primitiveValue);
case EdmPrimitiveTypeKind.Decimal:
return Convert.ToDecimal((Int64)primitiveValue);
}
}
if (primitiveValue is Single)
{
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.Single:
return primitiveValue;
case EdmPrimitiveTypeKind.Double:
/*to string then to double, avoid losing precision like "(double)123.001f" which is 123.00099945068359, instead of 123.001d.*/
return double.Parse(((Single)primitiveValue).ToString("R", CultureInfo.InvariantCulture),
CultureInfo.InvariantCulture);
case EdmPrimitiveTypeKind.Decimal:
return Convert.ToDecimal((Single)primitiveValue);
}
}
if (primitiveValue is Double)
{
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.Double:
return primitiveValue;
case EdmPrimitiveTypeKind.Decimal:
// TODO: extract these conversion steps to an individual function
decimal doubleToDecimalR;
// To keep the full precision of the current value, which if necessary is all 17 digits of precision supported by the Double type.
if (decimal.TryParse(((Double)primitiveValue).ToString("R", CultureInfo.InvariantCulture),
out doubleToDecimalR))
{
return doubleToDecimalR;
}
return Convert.ToDecimal((Double)primitiveValue);
}
}
if (primitiveValue is Decimal)
{
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.Decimal:
return primitiveValue;
}
}
return null;
}
/// <summary>
/// Coerces the given <paramref name="primitiveValue"/> to the appropriate CLR type based on <paramref name="targetEdmType"/>.
/// </summary>
/// <param name="primitiveValue">Primitive value to coerce.</param>
/// <param name="targetEdmType">Edm primitive type to check against.</param>
/// <returns><paramref name="primitiveValue"/> as the corresponding CLR type indicated by <paramref name="targetEdmType"/>, or null if unable to coerce.</returns>
[SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity",
Justification = "Centralized method for coercing temporal types in easiest to understand.")]
internal static object CoerceTemporalType(object primitiveValue, IEdmPrimitiveType targetEdmType)
{
// This is implemented to match TypePromotionUtils and MetadataUtilsCommon.CanConvertPrimitiveTypeTo()
ExceptionUtils.CheckArgumentNotNull(primitiveValue, "primitiveValue");
ExceptionUtils.CheckArgumentNotNull(targetEdmType, "targetEdmType");
EdmPrimitiveTypeKind targetPrimitiveKind = targetEdmType.PrimitiveKind;
switch (targetPrimitiveKind)
{
case EdmPrimitiveTypeKind.DateTimeOffset:
if (primitiveValue is Date)
{
var dateValue = (Date)primitiveValue;
return new DateTimeOffset(dateValue.Year, dateValue.Month, dateValue.Day, 0, 0, 0, new TimeSpan(0));
}
break;
case EdmPrimitiveTypeKind.Date:
var stringValue = primitiveValue as string;
if (stringValue != null)
{
// Coerce to Date Type from String.
return PlatformHelper.ConvertStringToDate(stringValue);
}
break;
}
return null;
}
/// <summary>
/// Writes an <see cref="ODataResourceBase"/> as either a resource or a deleted resource.
/// </summary>
/// <param name="writer">The <see cref="ODataWriter"/> to use to write the (deleted) resource.</param>
/// <param name="resource">The resource, or deleted resource, to write.</param>
private static void WriteStartResource(ODataWriter writer, ODataResourceBase resource)
{
ODataDeletedResource deletedResource = resource as ODataDeletedResource;
if (deletedResource != null)
{
writer.WriteStart(deletedResource);
}
else
{
// will write a null resource if resource is not an ODataResource
writer.WriteStart(resource as ODataResource);
}
}
/// <summary>
/// Write a literal value in JSON Light format.
/// </summary>
/// <param name="model">EDM Model to use for validation and type lookups.</param>
/// <param name="messageWriterSettings">Settings to use when writing.</param>
/// <param name="textWriter">TextWriter to use as the output for the value.</param>
/// <param name="writeValue">Delegate to use to actually write the value.</param>
/// <param name="isResourceValue">We want to pass the <see cref="IDuplicatePropertyNameChecker"/> instance to the Action delegate when writing Resource value but not Collection value.</param>
private static void WriteJsonLightLiteral(IEdmModel model, ODataMessageWriterSettings messageWriterSettings, TextWriter textWriter, Action<ODataJsonLightValueSerializer, IDuplicatePropertyNameChecker> writeValue, bool isResourceValue = true)
{
IEnumerable<KeyValuePair<string, string>> parameters = new Dictionary<string, string>
{
{ MimeConstants.MimeIeee754CompatibleParameterName, messageWriterSettings.IsIeee754Compatible.ToString() }
};
ODataMediaType mediaType = new ODataMediaType(MimeConstants.MimeApplicationType, MimeConstants.MimeJsonSubType, parameters);
// Calling dispose since it's the right thing to do, but when created from a custom-built TextWriter
// the output context Dispose will not actually dispose anything, it will just cleanup itself.
// TODO: URI parser will also support DI container in the future but set the container to null at this moment.
ODataMessageInfo messageInfo = new ODataMessageInfo
{
Model = model,
IsAsync = false,
IsResponse = false,
MediaType = mediaType
};
using (ODataJsonLightOutputContext jsonOutputContext =
new ODataJsonLightOutputContext(textWriter, messageInfo, messageWriterSettings))
{
ODataJsonLightValueSerializer jsonLightValueSerializer = new ODataJsonLightValueSerializer(jsonOutputContext);
if (!isResourceValue)
{
writeValue(jsonLightValueSerializer, null);
}
else
{
IDuplicatePropertyNameChecker duplicatePropertyNameChecker = jsonLightValueSerializer.GetDuplicatePropertyNameChecker();
writeValue(jsonLightValueSerializer, duplicatePropertyNameChecker);
jsonLightValueSerializer.ReturnDuplicatePropertyNameChecker(duplicatePropertyNameChecker);
}
jsonLightValueSerializer.AssertRecursionDepthIsZero();
}
}
/// <summary>
/// Convert to a literal value in JSON Light format.
/// </summary>
/// <param name="model">EDM Model to use for validation and type lookups.</param>
/// <param name="writeAction">Delegate to use to actually write the value.</param>
/// <returns>The literal value string.</returns>
private static string ConvertToJsonLightLiteral(IEdmModel model, Action<ODataOutputContext> writeAction)
{
using (MemoryStream stream = new MemoryStream())
{
ODataMessageWriterSettings messageWriterSettings = new ODataMessageWriterSettings()
{
Version = ODataVersion.V4,
Validations = ~ValidationKinds.ThrowOnUndeclaredPropertyForNonOpenType,
};
ODataMediaType mediaType = new ODataMediaType(MimeConstants.MimeApplicationType, MimeConstants.MimeJsonSubType);
ODataMessageInfo messageInfo = new ODataMessageInfo
{
MessageStream = stream,
Encoding = Encoding.UTF8,
IsAsync = false,
IsResponse = false,
MediaType = mediaType,
Model = model
};
// TODO: URI parser will also support DI container in the future but set the container to null at this moment.
using (ODataJsonLightOutputContext jsonOutputContext =
new ODataJsonLightOutputContext(messageInfo, messageWriterSettings))
{
writeAction(jsonOutputContext);
stream.Position = 0;
return new StreamReader(stream).ReadToEnd();
}
}
}
private static object ConvertFromResourceOrCollectionValue(string value, IEdmModel model, IEdmTypeReference typeReference)
{
ODataMessageReaderSettings settings = new ODataMessageReaderSettings();
settings.Validations &= ~ValidationKinds.ThrowOnUndeclaredPropertyForNonOpenType;
settings.ReadUntypedAsString = false;
using (StringReader reader = new StringReader(value))
{
ODataMessageInfo messageInfo = new ODataMessageInfo
{
MediaType = new ODataMediaType(MimeConstants.MimeApplicationType, MimeConstants.MimeJsonSubType),
Model = model,
IsResponse = false,
IsAsync = false,
MessageStream = null,
};
using (ODataJsonLightInputContext context = new ODataJsonLightInputContext(reader, messageInfo, settings))
{
ODataJsonLightPropertyAndValueDeserializer deserializer = new ODataJsonLightPropertyAndValueDeserializer(context);
// TODO: The way JSON array literals look in the URI is different that response payload with an array in it.
// The fact that we have to manually setup the underlying reader shows this different in the protocol.
// There is a discussion on if we should change this or not.
deserializer.JsonReader.Read(); // Move to first thing
object rawResult = deserializer.ReadNonEntityValue(
null /*payloadTypeName*/,
typeReference,
null /*DuplicatePropertyNameChecker*/,
null /*CollectionWithoutExpectedTypeValidator*/,
true /*validateNullValue*/,
false /*isTopLevelPropertyValue*/,
false /*insideResourceValue*/,
null /*propertyName*/);
deserializer.ReadPayloadEnd(false);
return rawResult;
}
}
}
private static object ConvertToTargetType(IEdmPrimitiveType targetEdmType, Func<object> converter)
{
try
{
return converter();
}
catch (OverflowException ex)
{
throw new ODataException(ODataErrorStrings.ODataUriUtils_ConvertFromUriLiteralOverflowNumber(targetEdmType.FullName(), ex.Message));
}
}
}
}