mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-12 03:22:32 +02:00
8e4995a6a5
- **UVtoolsCmd:**
- **print-properties:**
- (Change) `-b`, `--base` option to `-a`, `-all` to indicate all properties and sub-properties, now defaults to only show base properties
- (Add) `-r`, `--range` option to prints only the matching layer(s) index(es) in a range
- (Add) `-i`, `--indexes` option to prints only the matching layer(s) index(es)
- (Add) Command: `set-properties <input-file> <property=value> Set properties in a file or to it layers with new values`
- (Add) Command: `print-issues <input-file> Detect and print issues in a file`
- (Add) New option to the `run` command: `-p, --property <property=value> Set a property with a new value (Compatible with operations only)`
- (Remove) Command: `print-layers` as it has been moved to `print-properties`, use `-r :` to obtain same result as default on `print-layers`
- **Issues:**
- (Fix) Issues groups with only one issue was displaying the wrong area value
- (Fix) Volume incorrectly calculated, resulting in a high value for group of issues
- (Fix) Incorrect calculation of the bounding rectangle for a group of issues
- **Repair layers:**
- (Add) Switch to opt between "Re-detect the selected issues before repair" and "Use and repair the previous detected issues" (Default)
- (Improvement) Do not allow to run the tool if there are no detected issues when the option "Use and repair the previous detected issues" is selected
- (Improvement) Linux: Recompile libcvextern.so on a older system to be able to run on both older and newest system (#603)
- (Upgrade) .NET from 6.0.10 to 6.0.11
125 lines
4.2 KiB
C#
125 lines
4.2 KiB
C#
/*
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE
|
|
* Version 3, 19 November 2007
|
|
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
* of this license document, but changing it is not allowed.
|
|
*/
|
|
|
|
using System;
|
|
using System.Globalization;
|
|
using System.Reflection;
|
|
|
|
namespace UVtools.Core.Extensions;
|
|
|
|
public static class ReflectionExtensions
|
|
{
|
|
public static bool SetValueFromString(this PropertyInfo attribute, object obj, string value)
|
|
{
|
|
if (attribute.PropertyType == typeof(string))
|
|
{
|
|
attribute.SetValue(obj, value.Convert<string>());
|
|
return true;
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(value)) return false;
|
|
|
|
if (attribute.PropertyType.IsEnum)
|
|
{
|
|
if (Enum.TryParse(attribute.PropertyType, value, true, out var enumValue))
|
|
{
|
|
attribute.SetValue(obj, Enum.Parse(attribute.PropertyType, enumValue?.ToString() ?? string.Empty));
|
|
return true;
|
|
}
|
|
|
|
throw new ArgumentException($"The requested enum name '{value}' was not found.\nAvailable names: ({string.Join(", ", Enum.GetNames(attribute.PropertyType))}).");
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(bool))
|
|
{
|
|
//if (value == "!") attribute.SetValue(obj, !bool.Parse(attribute.GetValue(obj).ToString()));
|
|
if (value.Length == 1 && char.IsDigit(value[0])) attribute.SetValue(obj, value[0] != '0');
|
|
else attribute.SetValue(obj, value.Equals("true", StringComparison.OrdinalIgnoreCase));
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(byte))
|
|
{
|
|
if (value.Equals("true", StringComparison.OrdinalIgnoreCase)) attribute.SetValue(obj, (byte)1);
|
|
else if (value.Equals("false", StringComparison.OrdinalIgnoreCase)) attribute.SetValue(obj, byte.MinValue);
|
|
else attribute.SetValue(obj, value.Convert<byte>());
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(sbyte))
|
|
{
|
|
attribute.SetValue(obj, value.Convert<sbyte>());
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(ushort))
|
|
{
|
|
attribute.SetValue(obj, value.Convert<ushort>());
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(short))
|
|
{
|
|
attribute.SetValue(obj, value.Convert<short>());
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(uint))
|
|
{
|
|
attribute.SetValue(obj, value.Convert<uint>());
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(int))
|
|
{
|
|
attribute.SetValue(obj, value.Convert<int>());
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(ulong))
|
|
{
|
|
attribute.SetValue(obj, value.Convert<ulong>());
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(long))
|
|
{
|
|
attribute.SetValue(obj, value.Convert<long>());
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(Half))
|
|
{
|
|
attribute.SetValue(obj, Half.Parse(value, CultureInfo.InvariantCulture.NumberFormat));
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(float))
|
|
{
|
|
attribute.SetValue(obj, float.Parse(value, CultureInfo.InvariantCulture.NumberFormat));
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(double))
|
|
{
|
|
attribute.SetValue(obj, double.Parse(value, CultureInfo.InvariantCulture.NumberFormat));
|
|
return true;
|
|
}
|
|
|
|
if (attribute.PropertyType == typeof(decimal))
|
|
{
|
|
attribute.SetValue(obj, decimal.Parse(value, CultureInfo.InvariantCulture.NumberFormat));
|
|
return true;
|
|
}
|
|
|
|
throw new Exception($"Data type '{attribute.PropertyType.Name}' not recognized nor implemented.");
|
|
}
|
|
|
|
public static bool SetValueFromString(this PropertyInfo attribute, object obj, object? value) =>
|
|
attribute.SetValueFromString(obj, value?.ToString() ?? string.Empty);
|
|
} |