2023-06-13 11:03:49 +00:00
|
|
|
using System.Collections;
|
|
|
|
using InnovEnergy.Lib.Units.Power;
|
|
|
|
using InnovEnergy.Lib.Utils;
|
|
|
|
using static System.Reflection.BindingFlags;
|
|
|
|
|
2023-02-26 09:38:28 +00:00
|
|
|
namespace InnovEnergy.Lib.Units;
|
|
|
|
|
|
|
|
public static class Units
|
|
|
|
{
|
2023-03-02 16:15:10 +00:00
|
|
|
public static Byte DisplaySignificantDigits { get; set; } = 3;
|
|
|
|
public static Byte JsonSignificantDigits { get; set; } = 3;
|
|
|
|
|
2023-04-25 09:27:57 +00:00
|
|
|
public static Current A (this Double value) => value;
|
|
|
|
public static Voltage V (this Double value) => value;
|
2023-05-24 10:04:01 +00:00
|
|
|
public static ActivePower W (this Double value) => value;
|
2023-04-25 09:27:57 +00:00
|
|
|
public static ReactivePower Var (this Double value) => value;
|
|
|
|
public static ApparentPower Va (this Double value) => value;
|
|
|
|
public static Resistance Ohm (this Double value) => value;
|
|
|
|
public static Frequency Hz (this Double value) => value;
|
|
|
|
public static Angle Rad (this Double value) => value;
|
|
|
|
public static Temperature Celsius(this Double value) => value;
|
2023-06-27 11:14:17 +00:00
|
|
|
public static Energy KWh (this Double value) => value * 1000;
|
|
|
|
public static Energy Wh (this Double value) => value;
|
2023-07-10 08:07:00 +00:00
|
|
|
public static Percent Percent(this Double value) => value;
|
2023-05-24 10:04:01 +00:00
|
|
|
|
2023-08-16 13:12:23 +00:00
|
|
|
public static Current A (this Int32 value) => value;
|
|
|
|
public static Voltage V (this Int32 value) => value;
|
|
|
|
public static ActivePower W (this Int32 value) => value;
|
|
|
|
public static ReactivePower Var (this Int32 value) => value;
|
|
|
|
public static ApparentPower Va (this Int32 value) => value;
|
|
|
|
public static Resistance Ohm (this Int32 value) => value;
|
|
|
|
public static Frequency Hz (this Int32 value) => value;
|
|
|
|
public static Angle Rad (this Int32 value) => value;
|
|
|
|
public static Temperature Celsius(this Int32 value) => value;
|
|
|
|
public static Energy KWh (this Int32 value) => value * 1000;
|
|
|
|
public static Energy Wh (this Int32 value) => value;
|
|
|
|
public static Percent Percent(this Int32 value) => value;
|
|
|
|
|
2023-06-13 11:03:49 +00:00
|
|
|
public static String ToCsv(this Object thing)
|
2023-05-24 10:04:01 +00:00
|
|
|
{
|
2023-06-13 11:03:49 +00:00
|
|
|
var csvLines = new List<String>();
|
|
|
|
var visited = new HashSet<Object>();
|
2023-05-24 10:04:01 +00:00
|
|
|
|
2023-06-13 11:03:49 +00:00
|
|
|
GetCsv(thing);
|
2023-05-24 10:04:01 +00:00
|
|
|
|
2023-06-13 11:03:49 +00:00
|
|
|
return csvLines.JoinLines();
|
|
|
|
|
|
|
|
void GetCsv(Object? parent, String path = "")
|
|
|
|
{
|
|
|
|
if (parent == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var type = parent.GetType();
|
|
|
|
|
|
|
|
if (parent is Unit u)
|
|
|
|
{
|
|
|
|
csvLines.Add($"{path};{u.Value};{u.Symbol}"); // leaf: unit
|
|
|
|
}
|
|
|
|
else if (parent is String s)
|
|
|
|
{
|
2023-08-24 08:03:20 +00:00
|
|
|
csvLines.Add($"{path};{s};"); // leaf: String
|
2023-06-13 11:03:49 +00:00
|
|
|
}
|
|
|
|
else if(type.IsEnum || (type.IsValueType && !type.IsNested))
|
|
|
|
{
|
|
|
|
csvLines.Add($"{path};{parent};"); // leaf: value type
|
|
|
|
}
|
|
|
|
else if (parent is IEnumerable enumerable)
|
|
|
|
{
|
|
|
|
var enumerableType = enumerable.GetType();
|
|
|
|
|
|
|
|
var elementType = enumerableType.GetGenericArguments().SingleOrDefault() ??
|
|
|
|
enumerableType.GetElementType(); // for arrays
|
|
|
|
|
|
|
|
if (elementType is null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (elementType.IsValueType || elementType == typeof(String))
|
|
|
|
{
|
|
|
|
var value = enumerable.Cast<Object>().JoinWith(",");
|
|
|
|
csvLines.Add($"{path};{value};");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var i = 1;
|
|
|
|
foreach (var o in enumerable)
|
|
|
|
GetCsv(o, $"{path}/{i++}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-10-23 08:37:18 +00:00
|
|
|
//if (!visited.Add(parent))
|
|
|
|
// return;
|
2023-06-13 11:03:49 +00:00
|
|
|
|
|
|
|
foreach (var p in type.GetProperties(Instance | Public))
|
|
|
|
{
|
|
|
|
var name = p.Name;
|
|
|
|
var value = p.GetValue(parent);
|
|
|
|
GetCsv(value, $"{path}/{name}");
|
|
|
|
}
|
|
|
|
}
|
2023-05-24 10:04:01 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-04 08:23:29 +00:00
|
|
|
}
|
|
|
|
|