Exemplo n.º 1
0
        public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
        {
            if (iniContext.TypeDetailsInformation.UnderlyingKeyTypeInformation.TypeCode == TypeCode.ComplexObject ||
                iniContext.TypeDetailsInformation.UnderlyingTypeInformation.TypeCode == TypeCode.ComplexObject)
            {
                throw new CollectionOfComplexTypeException($"Collection of complex type not supported for {iniContext}");
            }

            if (!(objectToFormat is IDictionary dictionary))
            {
                throw new InvalidOperationException();
            }

            var dictionaryEnumerator = dictionary.GetEnumerator();

            while (dictionaryEnumerator.MoveNext())
            {
                if (dictionaryEnumerator.Key == null || dictionaryEnumerator.Value == null)
                {
                    continue;
                }

                var value = _underlyingTypeIniConverter.FormatToWrite(dictionaryEnumerator.Value, iniContext)?.Value;

                iniContext.IniParser.Write(iniContext.IniValue.Key,
                                           _underlyingKeyTypeIniConverter.FormatToWrite(dictionaryEnumerator.Key, iniContext)?.Value,
                                           value);
            }

            return(null);
        }
Exemplo n.º 2
0
        public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
        {
            var dateTime = (DateTime)objectToFormat;

            iniContext.IniValue.Value = dateTime.ToString("O");
            return(iniContext.IniValue);
        }
Exemplo n.º 3
0
        public object ReadValue(IMemberInfoWrapper memberInfoWrapper, object configuration, Type configurationType)
        {
            var(converter, defaultConverter, typeDetailsInformation) = _iniConverterFactory.GetConverter(memberInfoWrapper.GetMemberType(), 0, memberInfoWrapper);

            if (typeDetailsInformation.TypeCode == TypeCode.ComplexObject)
            {
                return(converter.ParseReadValue(null, typeDetailsInformation.Type, null));
            }

            var iniValue = new IniValue()
            {
                Section = _iniValueManager.GetSection(configurationType, memberInfoWrapper),
                Key     = _iniValueManager.GetKey(memberInfoWrapper)
            };

            try
            {
                var iniContext = new IniContext(memberInfoWrapper, typeDetailsInformation, iniValue, _iniParser, defaultConverter);

                var readValue = _iniParser.Read(iniValue.Section, iniValue.Key);

                return(converter.ParseReadValue(readValue, typeDetailsInformation.Type, iniContext));
            }
            catch (FormatException)
            {
                throw new IniWrongFormatException($"Wrong format in {iniValue} expected type: {memberInfoWrapper.GetMemberType()}");
            }
        }
        public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
        {
            var listType     = typeof(List <>).MakeGenericType(iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type);
            var returnedList = (IList)Activator.CreateInstance(listType);

            for (int i = 0; i < int.MaxValue; i++)
            {
                var dynamicIniOptionsAttribute = new IniOptionsAttribute()
                {
                    Section = GenerateDynamicSection(iniContext, i)
                };

                var section = iniContext.IniParser.Read(dynamicIniOptionsAttribute.Section, null);
                if (string.IsNullOrEmpty(section))
                {
                    break;
                }

                var loadedComplexType = _iniWrapperWithCustomMemberInfo.LoadConfigurationFromFileWithCustomMemberInfo(
                    iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type,
                    dynamicIniOptionsAttribute);

                returnedList.Add(loadedComplexType);
            }
            return(returnedList);
        }
Exemplo n.º 5
0
 public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
 {
     if (string.IsNullOrEmpty(readValue))
     {
         return(null);
     }
     return(Enum.Parse(destinationType, readValue));
 }
Exemplo n.º 6
0
        public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
        {
            var castedValue = (bool)objectToFormat;

            iniContext.IniValue.Value = castedValue ? TrueValue : FalseValue;

            return(iniContext.IniValue);
        }
Exemplo n.º 7
0
        public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
        {
            var castedUnderlyingType = ToUInt64(objectToFormat);

            iniContext.IniValue.Value = castedUnderlyingType.ToString();

            return(iniContext.IniValue);
        }
Exemplo n.º 8
0
        public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
        {
            if (string.IsNullOrEmpty(readValue))
            {
                return(null);
            }

            return(Convert.ChangeType(readValue, destinationType));
        }
Exemplo n.º 9
0
        public void ParseReadValue_ShouldParseInt(Type type, string parsingValue, object expected)
        {
            var iniContext = new IniContext(null,
                                            new TypeDetailsInformation(
                                                TypeCode.BigInteger,
                                                null,
                                                null,
                                                type), null, null, null);

            var result = _primitivesConverter.ParseReadValue(parsingValue, type, iniContext);

            result.Should().Be(expected);
        }
Exemplo n.º 10
0
        public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
        {
            readValue = iniContext.IniParser.Read(iniContext.IniValue.Key, null);

            var splitReadValues = _readSectionsParser.Parse(readValue);

            var returnedDictionary = CreateDictionary(iniContext);

            foreach (var splitReadValue in splitReadValues)
            {
                var key   = _underlyingKeyTypeIniConverter.ParseReadValue(splitReadValue.Key, iniContext.TypeDetailsInformation.UnderlyingKeyTypeInformation.Type, iniContext);
                var value = _underlyingTypeIniConverter.ParseReadValue(splitReadValue.Value, iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type, iniContext);

                returnedDictionary.Add(key, value);
            }

            return(returnedDictionary);
        }
Exemplo n.º 11
0
        /// <summary>
        /// 读取或者创建ini
        /// </summary>
        /// <param name="path">文件路径</param>
        /// <returns></returns>
        public static async Task <IniContext> ReadOrCreateAsync(string path)
        {
            FileInfo   fileInfo  = new FileInfo(path);
            IniContext iniCotext = new IniContext()
            {
                Sections = new IniContext.Content()
                {
                    Items = new List <IniContext.Section>()
                }, File = fileInfo
            };

            string[] lines = null;
            if (File.Exists(path))
            {
                lines = await File.ReadAllLinesAsync(path);
            }
            else
            {
                File.WriteAllText(path, string.Empty);
                return(iniCotext);
            }
            IniContext.Section tempSection = null;
            try
            {
                for (int i = 0; i < lines?.Length; i++)
                {
                    string item = lines[i].TrimStart();
                    //; ;为注解
                    if (item.IndexOf(';') == 0 || item.IndexOf(';') == 0 || string.IsNullOrEmpty(item))
                    {
                        continue;
                    }
NextSection:
                    if (tempSection == null)
                    {
                        int sectionStart = item.IndexOf('[');
                        int sectionEnd   = item.LastIndexOf(']');

                        if (sectionStart == 0 && sectionEnd >= 1)
                        {
                            tempSection = new IniContext.Section
                            {
                                Name = item[(sectionStart + 1)..sectionEnd],
Exemplo n.º 12
0
        public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
        {
            if (string.IsNullOrEmpty(readValue))
            {
                return(null);
            }

            var genericType = iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type;

            if (iniContext.TypeDetailsInformation.UnderlyingTypeInformation.TypeCode == TypeCode.Nullable)
            {
                genericType = typeof(Nullable <>).MakeGenericType(iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type);
            }
            var listType     = typeof(List <>).MakeGenericType(genericType);
            var returnedList = (IList)Activator.CreateInstance(listType);

            foreach (var singleEntity in readValue.Split(new[] { _iniSettings.EnumerableEntitySeparator }, StringSplitOptions.RemoveEmptyEntries))
            {
                returnedList.Add(_underlyingTypeIniConverter.ParseReadValue(singleEntity, iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type, iniContext));
            }
            return(returnedList);
        }
Exemplo n.º 13
0
        public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
        {
            var enumerable = objectToFormat as IEnumerable;

            var stringBuilder = new StringBuilder();

            foreach (var item in enumerable)
            {
                if (item == null)
                {
                    continue;
                }

                stringBuilder.Append(_underlyingTypeIniConverter.FormatToWrite(item, iniContext)?.Value);
                stringBuilder.Append(_iniSettings.EnumerableEntitySeparator);
            }

            RemoveLastSeparator(stringBuilder);

            iniContext.IniValue.Value = stringBuilder.ToString();

            return(iniContext.IniValue);
        }
Exemplo n.º 14
0
        public void SaveValue(IMemberInfoWrapper memberInfoWrapper, object configuration)
        {
            var value = memberInfoWrapper.GetValue(configuration);

            var defaultIniValue = new IniValue()
            {
                Section = _iniValueManager.GetSection(configuration.GetType(), memberInfoWrapper),
                Key     = _iniValueManager.GetKey(memberInfoWrapper),
            };

            var(converter, defaultConverter, typeDetailsInformation) = _iniConverterFactory.GetConverter(memberInfoWrapper.GetMemberType(), value, memberInfoWrapper);

            var iniContext = new IniContext(memberInfoWrapper, typeDetailsInformation, defaultIniValue, _iniParser, defaultConverter);

            var valueToSave = converter.FormatToWrite(value, iniContext);

            if (valueToSave?.Value == null)
            {
                return;
            }

            _iniParser.Write(valueToSave.Section, valueToSave.Key, valueToSave.Value);
        }
Exemplo n.º 15
0
        private static IDictionary CreateDictionary(IniContext iniContext)
        {
            var genericType = iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type;

            if (iniContext.TypeDetailsInformation.UnderlyingTypeInformation.TypeCode == TypeCode.Nullable)
            {
                genericType =
                    typeof(Nullable <>).MakeGenericType(iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type);
            }

            var genericKeyType = iniContext.TypeDetailsInformation.UnderlyingKeyTypeInformation.Type;

            if (iniContext.TypeDetailsInformation.UnderlyingKeyTypeInformation.TypeCode == TypeCode.Nullable)
            {
                genericKeyType =
                    typeof(Nullable <>).MakeGenericType(iniContext.TypeDetailsInformation.UnderlyingKeyTypeInformation.Type);
            }

            var dictionaryType     = typeof(Dictionary <,>).MakeGenericType(genericKeyType, genericType);
            var returnedDictionary = (IDictionary)Activator.CreateInstance(dictionaryType);

            return(returnedDictionary);
        }
        public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
        {
            var enumerable = objectToFormat as IEnumerable;

            var index = 0;

            foreach (var item in enumerable)
            {
                if (item == null)
                {
                    continue;
                }

                var dynamicIniOptionsAttribute = new IniOptionsAttribute()
                {
                    Section = GenerateDynamicSection(iniContext, index)
                };

                _iniWrapperWithCustomMemberInfo.SaveConfigurationWithCustomMemberInfo(item, dynamicIniOptionsAttribute);
                index++;
            }

            return(null);
        }
Exemplo n.º 17
0
 public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
 {
     return(_iniWrapper.LoadConfiguration(destinationType));
 }
Exemplo n.º 18
0
 public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 19
0
 public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
 {
     iniContext.IniValue.Value = null;
     return(iniContext.IniValue);
 }
Exemplo n.º 20
0
 public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
 {
     return(TimeSpan.Parse(readValue));
 }
Exemplo n.º 21
0
 public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
 {
     iniContext.IniValue.Value = objectToFormat.ToString();
     return(iniContext.IniValue);
 }
Exemplo n.º 22
0
 public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
 {
     return(System.Guid.Parse(readValue));
 }
Exemplo n.º 23
0
 public IniValue FormatToWrite(object objectToFormat, IniContext iniContexte)
 {
     throw new TestCustomIniHandlerException("FormatToWrite");
 }
Exemplo n.º 24
0
 public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
 {
     objectToFormat = Activator.CreateInstance(iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type);
     return(_complexTypeIniConverter.FormatToWrite(objectToFormat, iniContext));
 }
Exemplo n.º 25
0
        public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
        {
            var ignoreAttribute = _memberInfoWrapper.GetAttribute <IniIgnoreAttribute>();

            return(ignoreAttribute == null?_iniConverter.ParseReadValue(readValue, destinationType, iniContext) : null);
        }
Exemplo n.º 26
0
 public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
 {
     _iniWrapper.SaveConfiguration(objectToFormat);
     return(null);
 }
 private static string GenerateDynamicSection(IniContext iniContext, int i)
 {
     return($"{iniContext.TypeDetailsInformation.UnderlyingTypeInformation.Type.Name}_{i}");
 }
Exemplo n.º 28
0
 public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
 {
     throw new TestCustomIniHandlerException("ParseReadValue");
 }
Exemplo n.º 29
0
        public IniValue FormatToWrite(object objectToFormat, IniContext iniContext)
        {
            var ignoreAttribute = _memberInfoWrapper.GetAttribute <IniIgnoreAttribute>();

            return(ignoreAttribute == null?_iniConverter.FormatToWrite(objectToFormat, iniContext) : null);
        }
Exemplo n.º 30
0
 public object ParseReadValue(string readValue, Type destinationType, IniContext iniContext)
 {
     return(readValue == TrueValue);
 }