|
| 1 | +// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. |
| 2 | +// SPDX-License-Identifier: Apache-2.0 |
| 3 | + |
| 4 | +using System.Text.Json; |
| 5 | + |
| 6 | +namespace AWS.Messaging.Serialization.Helpers; |
| 7 | + |
| 8 | +/// <summary> |
| 9 | +/// Provides helper methods for safely extracting values from JsonElement and Dictionary objects. |
| 10 | +/// </summary> |
| 11 | +internal static class JsonPropertyHelper |
| 12 | +{ |
| 13 | + /// <summary> |
| 14 | + /// Safely extracts a value from a JsonElement using the provided conversion function. |
| 15 | + /// </summary> |
| 16 | + /// <typeparam name="T">The type to convert the property value to.</typeparam> |
| 17 | + /// <param name="root">The root JsonElement containing the property.</param> |
| 18 | + /// <param name="propertyName">The name of the property to extract.</param> |
| 19 | + /// <param name="getValue">The function to convert the property value to type T.</param> |
| 20 | + /// <returns>The converted value or default if the property doesn't exist.</returns> |
| 21 | + public static T? GetPropertyValue<T>(JsonElement root, string propertyName, Func<JsonElement, T> getValue) |
| 22 | + { |
| 23 | + if (getValue == null) |
| 24 | + { |
| 25 | + throw new ArgumentNullException(nameof(getValue)); |
| 26 | + } |
| 27 | + |
| 28 | + |
| 29 | + return root.TryGetProperty(propertyName, out var property) ? getValue(property) : default; |
| 30 | + } |
| 31 | + |
| 32 | + /// <summary> |
| 33 | + /// Extracts a required value from a JsonElement using the provided conversion function. |
| 34 | + /// </summary> |
| 35 | + /// <typeparam name="T">The type to convert the property value to.</typeparam> |
| 36 | + /// <param name="root">The root JsonElement containing the property.</param> |
| 37 | + /// <param name="propertyName">The name of the property to extract.</param> |
| 38 | + /// <param name="getValue">The function to convert the property value to type T.</param> |
| 39 | + /// <returns>The converted value.</returns> |
| 40 | + /// <exception cref="InvalidDataException">Thrown when the property is missing or conversion fails.</exception> |
| 41 | + public static T GetRequiredProperty<T>(JsonElement root, string propertyName, Func<JsonElement, T> getValue) |
| 42 | + { |
| 43 | + if (root.TryGetProperty(propertyName, out var property)) |
| 44 | + { |
| 45 | + try |
| 46 | + { |
| 47 | + return getValue(property); |
| 48 | + } |
| 49 | + catch (Exception ex) |
| 50 | + { |
| 51 | + throw new InvalidDataException($"Failed to get or convert property '{propertyName}'", ex); |
| 52 | + } |
| 53 | + } |
| 54 | + throw new InvalidDataException($"Required property '{propertyName}' is missing"); |
| 55 | + } |
| 56 | + |
| 57 | + /// <summary> |
| 58 | + /// Safely extracts a string value from a JsonElement. |
| 59 | + /// </summary> |
| 60 | + /// <param name="root">The root JsonElement containing the property.</param> |
| 61 | + /// <param name="propertyName">The name of the property to extract.</param> |
| 62 | + /// <returns>The string value or null if the property doesn't exist.</returns> |
| 63 | + public static string? GetStringProperty(JsonElement root, string propertyName) |
| 64 | + => GetPropertyValue(root, propertyName, element => element.GetString()); |
| 65 | + |
| 66 | + /// <summary> |
| 67 | + /// Safely extracts a DateTimeOffset value from a JsonElement. |
| 68 | + /// </summary> |
| 69 | + /// <param name="root">The root JsonElement containing the property.</param> |
| 70 | + /// <param name="propertyName">The name of the property to extract.</param> |
| 71 | + /// <returns>The DateTimeOffset value or null if the property doesn't exist.</returns> |
| 72 | + public static DateTimeOffset? GetDateTimeOffsetProperty(JsonElement root, string propertyName) |
| 73 | + => GetPropertyValue(root, propertyName, element => element.GetDateTimeOffset()); |
| 74 | + |
| 75 | + /// <summary> |
| 76 | + /// Safely extracts a Uri value from a JsonElement. |
| 77 | + /// </summary> |
| 78 | + /// <param name="root">The root JsonElement containing the property.</param> |
| 79 | + /// <param name="propertyName">The name of the property to extract.</param> |
| 80 | + /// <returns>The Uri value or null if the property doesn't exist.</returns> |
| 81 | + public static Uri? GetUriProperty(JsonElement root, string propertyName) |
| 82 | + => GetPropertyValue(root, propertyName, element => new Uri(element.GetString()!, UriKind.RelativeOrAbsolute)); |
| 83 | + |
| 84 | + /// <summary> |
| 85 | + /// Safely extracts a value from a dictionary. |
| 86 | + /// </summary> |
| 87 | + /// <param name="attributes">The dictionary containing the value.</param> |
| 88 | + /// <param name="key">The key of the value to extract.</param> |
| 89 | + /// <returns>The value or null if the key doesn't exist.</returns> |
| 90 | + public static string? GetAttributeValue(Dictionary<string, string> attributes, string key) |
| 91 | + { |
| 92 | + return attributes.TryGetValue(key, out var value) ? value : null; |
| 93 | + } |
| 94 | +} |
0 commit comments