// <auto-generated/>

#nullable enable annotations
#nullable disable warnings

// Suppress warnings about [Obsolete] member usage in generated code.
#pragma warning disable CS0612, CS0618

namespace System.Runtime.CompilerServices
{
    using System;
    using System.CodeDom.Compiler;

    [GeneratedCode("Microsoft.Extensions.Configuration.Binder.SourceGeneration", "42.42.42.42")]
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
    file sealed class InterceptsLocationAttribute : Attribute
    {
        public InterceptsLocationAttribute(int version, string data)
        {
        }
    }
}

namespace Microsoft.Extensions.Configuration.Binder.SourceGeneration
{
    using Microsoft.Extensions.Configuration;
    using System;
    using System.CodeDom.Compiler;
    using System.Collections.Generic;
    using System.Globalization;
    using System.Runtime.CompilerServices;

    [GeneratedCode("Microsoft.Extensions.Configuration.Binder.SourceGeneration", "42.42.42.42")]
    file static class BindingExtensions
    {
        #region IConfiguration extensions.
        /// <summary>Attempts to bind the given object instance to configuration values by matching property names against configuration keys recursively.</summary>
        [InterceptsLocation(1, "NfQsvTvxsxzujBWqpTrJJGIBAABzcmMtMC5jcw==")] // src-0.cs(13,16)
        public static void Bind_ProgramClassWhereParametersHaveDefaultValue(this IConfiguration configuration, object? instance)
        {
            ArgumentNullException.ThrowIfNull(configuration);

            if (instance is null)
            {
                return;
            }

            var typedObj = (global::Program.ClassWhereParametersHaveDefaultValue)instance;
            BindCore(configuration, ref typedObj, defaultValueIfNotFound: false, binderOptions: null);
        }
        #endregion IConfiguration extensions.

        #region Core binding extensions.
        private readonly static Lazy<HashSet<string>> s_configKeys_ProgramClassWhereParametersHaveDefaultValue = new(() => new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "Name", "Address", "Age", "F", "D", "M", "SC", "C", "NAge", "NF", "ND", "NM", "NSC", "NC" });

        public static void BindCore(IConfiguration configuration, ref global::Program.ClassWhereParametersHaveDefaultValue instance, bool defaultValueIfNotFound, BinderOptions? binderOptions)
        {
            ValidateConfigurationKeys(typeof(global::Program.ClassWhereParametersHaveDefaultValue), s_configKeys_ProgramClassWhereParametersHaveDefaultValue, configuration, binderOptions);
        }

        public static global::Program.ClassWhereParametersHaveDefaultValue InitializeProgramClassWhereParametersHaveDefaultValue(IConfiguration configuration, BinderOptions? binderOptions)
        {
            string name = "John Doe"!;
            if (configuration["Name"] is string value0)
            {
                name = value0;
            }

            string address = "1 Microsoft Way"!;
            if (configuration["Address"] is string value1)
            {
                address = value1;
            }

            int age = (int)(42);
            if (configuration["Age"] is string value2 && !string.IsNullOrEmpty(value2))
            {
                age = ParseInt(value2, configuration.GetSection("Age").Path);
            }

            float f = 42F;
            if (configuration["F"] is string value3 && !string.IsNullOrEmpty(value3))
            {
                f = ParseFloat(value3, configuration.GetSection("F").Path);
            }

            double d = 3.1415899999999999D;
            if (configuration["D"] is string value4 && !string.IsNullOrEmpty(value4))
            {
                d = ParseDouble(value4, configuration.GetSection("D").Path);
            }

            decimal m = 3.1415926535897932384626433M;
            if (configuration["M"] is string value5 && !string.IsNullOrEmpty(value5))
            {
                m = ParseDecimal(value5, configuration.GetSection("M").Path);
            }

            global::System.StringComparison sc = (global::System.StringComparison)(4);
            if (configuration["SC"] is string value6 && !string.IsNullOrEmpty(value6))
            {
                sc = ParseEnum<global::System.StringComparison>(value6, configuration.GetSection("SC").Path);
            }

            char c = 'q';
            if (configuration["C"] is string value7 && !string.IsNullOrEmpty(value7))
            {
                c = ParseChar(value7, configuration.GetSection("C").Path);
            }

            int? nage = (int?)(42);
            if (configuration["NAge"] is string value8 && !string.IsNullOrEmpty(value8))
            {
                nage = ParseInt(value8, configuration.GetSection("NAge").Path);
            }

            float? nf = 42F;
            if (configuration["NF"] is string value9 && !string.IsNullOrEmpty(value9))
            {
                nf = ParseFloat(value9, configuration.GetSection("NF").Path);
            }

            double? nd = 3.1415899999999999D;
            if (configuration["ND"] is string value10 && !string.IsNullOrEmpty(value10))
            {
                nd = ParseDouble(value10, configuration.GetSection("ND").Path);
            }

            decimal? nm = 3.1415926535897932384626433M;
            if (configuration["NM"] is string value11 && !string.IsNullOrEmpty(value11))
            {
                nm = ParseDecimal(value11, configuration.GetSection("NM").Path);
            }

            global::System.StringComparison? nsc = (global::System.StringComparison?)(4);
            if (configuration["NSC"] is string value12 && !string.IsNullOrEmpty(value12))
            {
                nsc = ParseEnum<global::System.StringComparison>(value12, configuration.GetSection("NSC").Path);
            }

            char? nc = 'q';
            if (configuration["NC"] is string value13 && !string.IsNullOrEmpty(value13))
            {
                nc = ParseChar(value13, configuration.GetSection("NC").Path);
            }

            return new global::Program.ClassWhereParametersHaveDefaultValue(name, address, age, f, d, m, sc, c, nage, nf, nd, nm, nsc, nc);
        }


        /// <summary>If required by the binder options, validates that there are no unknown keys in the input configuration object.</summary>
        public static void ValidateConfigurationKeys(Type type, Lazy<HashSet<string>> keys, IConfiguration configuration, BinderOptions? binderOptions)
        {
            if (binderOptions?.ErrorOnUnknownConfiguration is true)
            {
                List<string>? temp = null;
        
                foreach (IConfigurationSection section in configuration.GetChildren())
                {
                    if (!keys.Value.Contains(section.Key))
                    {
                        (temp ??= new List<string>()).Add($"'{section.Key}'");
                    }
                }
        
                if (temp is not null)
                {
                    throw new InvalidOperationException($"'ErrorOnUnknownConfiguration' was set on the provided BinderOptions, but the following properties were not found on the instance of {type}: {string.Join(", ", temp)}");
                }
            }
        }

        public static T ParseEnum<T>(string value, string? path) where T : struct
        {
            try
            {
                return Enum.Parse<T>(value, ignoreCase: true);
            }
            catch (Exception exception)
            {
                throw new InvalidOperationException($"Failed to convert configuration value at '{path}' to type '{typeof(T)}'.", exception);
            }
        }

        public static int ParseInt(string value, string? path)
        {
            try
            {
                return int.Parse(value, NumberStyles.Integer, CultureInfo.InvariantCulture);
            }
            catch (Exception exception)
            {
                throw new InvalidOperationException($"Failed to convert configuration value at '{path}' to type '{typeof(int)}'.", exception);
            }
        }

        public static float ParseFloat(string value, string? path)
        {
            try
            {
                return float.Parse(value, NumberStyles.Float, CultureInfo.InvariantCulture);
            }
            catch (Exception exception)
            {
                throw new InvalidOperationException($"Failed to convert configuration value at '{path}' to type '{typeof(float)}'.", exception);
            }
        }

        public static double ParseDouble(string value, string? path)
        {
            try
            {
                return double.Parse(value, NumberStyles.Float, CultureInfo.InvariantCulture);
            }
            catch (Exception exception)
            {
                throw new InvalidOperationException($"Failed to convert configuration value at '{path}' to type '{typeof(double)}'.", exception);
            }
        }

        public static decimal ParseDecimal(string value, string? path)
        {
            try
            {
                return decimal.Parse(value, NumberStyles.Float, CultureInfo.InvariantCulture);
            }
            catch (Exception exception)
            {
                throw new InvalidOperationException($"Failed to convert configuration value at '{path}' to type '{typeof(decimal)}'.", exception);
            }
        }

        public static char ParseChar(string value, string? path)
        {
            try
            {
                return char.Parse(value);
            }
            catch (Exception exception)
            {
                throw new InvalidOperationException($"Failed to convert configuration value at '{path}' to type '{typeof(char)}'.", exception);
            }
        }
        #endregion Core binding extensions.
    }
}
